Examples of computeChartsBuffers()


Examples of org.bioinfo.ngs.qc.qualimap.beans.BamQCRegionReporter.computeChartsBuffers()


            try {
                bamQc.run();
                bamQcReporter.loadReportData(bamQc.getBamStats());
                bamQcReporter.computeChartsBuffers(bamQc.getBamStats(), bamQc.getLocator(), bamQc.isPairedData());
            } catch (Exception e) {
                assertTrue("Error calculating stats. " + e.getMessage(), false);
                e.printStackTrace();
                return;
            }
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.beans.BamQCRegionReporter.computeChartsBuffers()

        reporter.writeReport(bamQC.getBamStats(),outdir);

        AnalysisResultManager resultManager = new AnalysisResultManager(AnalysisType.BAM_QC);

        reporter.loadReportData(bamQC.getBamStats());
        reporter.computeChartsBuffers(bamQC.getBamStats(), bamQC.getLocator(), bamQC.isPairedData());
        resultManager.addReporter(reporter);

        if(selectedRegionsAvailable && computeOutsideStats){

            BamQCRegionReporter outsideReporter = new BamQCRegionReporter(selectedRegionsAvailable, false);
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.beans.BamQCRegionReporter.computeChartsBuffers()

            }
            bamQC.prepareInputDescription(outsideReporter, paintChromosomeLimits);
            outsideReporter.writeReport(bamQC.getOutsideBamStats(),outdir);

            outsideReporter.loadReportData(bamQC.getOutsideBamStats());
            outsideReporter.computeChartsBuffers(bamQC.getOutsideBamStats(), bamQC.getLocator(), bamQC.isPairedData());

            resultManager.addReporter(outsideReporter);
        }

View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.beans.BamQCRegionReporter.computeChartsBuffers()

      bamDialog.getProgressStream().setText("   text report...");
      reporter.loadReportData(bamQC.getBamStats());
      bamDialog.getProgressStream().setText("OK");

      bamDialog.getProgressStream().setText("   charts...");
      reporter.computeChartsBuffers(bamQC.getBamStats(), bamQC.getLocator(), bamQC.isPairedData());
        bamDialog.getProgressStream().setText("OK");


      // Set the reporter into the created tab
      resultManager.addReporter(reporter);
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.beans.BamQCRegionReporter.computeChartsBuffers()

        outsideReporter.loadReportData(bamQC.getOutsideBamStats());
        bamDialog.getProgressStream().setText("OK");

        // save charts
        bamDialog.getProgressStream().setText("   outside charts...");
        outsideReporter.computeChartsBuffers(bamQC.getOutsideBamStats(), bamQC.getLocator(), bamQC.isPairedData());
        bamDialog.getProgressStream().setText("OK");

        // Set the reporters into the created tab
        resultManager.addReporter(outsideReporter);
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.