Package org.bioinfo.ngs.qc.qualimap.gui.threads

Examples of org.bioinfo.ngs.qc.qualimap.gui.threads.ExportHtmlThread


            reporter.computeChartsBuffers(bamQC.getBamStats(), bamQC.getLocator(), bamQC.isPairedData());

            AnalysisResultManager resultManager = new AnalysisResultManager(AnalysisType.BAM_QC);
            resultManager.addReporter(reporter);

            Thread exportReportThread = new ExportHtmlThread(resultManager,sampleOutdir);
            exportReportThread.run();
            loggerThread.updateProgress(100);
            loggerThread.logLine("Finished processing " + bamFilePath + "\n");
            loggerThread.logLine("BAM QC results are saved to  " + sampleOutdir + "\n");

            s.path = sampleOutdir;
View Full Code Here


            }
        }

        Thread exportReportThread = outputType.equals( Constants.REPORT_TYPE_PDF ) ?
               new ExportPdfThread(resultManager, reportFileName  ) :
               new ExportHtmlThread(resultManager, outdir);

         exportReportThread.run();
    }
View Full Code Here

 
  private void exportToHtml(String dirPath) {
        TabPageController tabController = homeFrame.getSelectedTabPageController();

        ExportHtmlThread t =
                new ExportHtmlThread(this, tabController, dirPath);

        t.start();
    }
View Full Code Here

TOP

Related Classes of org.bioinfo.ngs.qc.qualimap.gui.threads.ExportHtmlThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.