Examples of AnalysisDialogLoggerThread


Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.AnalysisDialogLoggerThread

        String homePath = settingsDlg.getHomeFrame().getQualimapFolder() + File.separator;

        MultisampleBamQcAnalysis multiBamQcAnalysis = new MultisampleBamQcAnalysis(tabProperties, homePath,
                settingsDlg.getDataItems());
        AnalysisDialogLoggerThread outputParsingThread= new AnalysisDialogLoggerThread( settingsDlg ) ;
        multiBamQcAnalysis.setOutputParsingThread(outputParsingThread);

        if (settingsDlg.runBamQcFirst()) {
            multiBamQcAnalysis.setRunBamQcFirst( settingsDlg.getBamQcConfig() );
        }
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.AnalysisDialogLoggerThread

                infoFilePath =  homePath + "species" + File.separator + settingsDlg.getSelectedSpecies();
            }
            countsAnalysis.setInfoFilePath(infoFilePath);
        }

        AnalysisDialogLoggerThread outputParsingThread= new AnalysisDialogLoggerThread( settingsDlg ) ;
        countsAnalysis.setOutputParsingThread(outputParsingThread);

        try {
            countsAnalysis.run();
        } catch (Exception e) {
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.AnalysisDialogLoggerThread

    // reporting
    bamQC.activeReporting(outputDirPath.toString());

    // setup logging
        AnalysisDialogLoggerThread loggerThread = new AnalysisDialogLoggerThread(bamDialog);
        bamQC.setLoggerThread(loggerThread);

        bamDialog.setUiEnabled(false);
        bamDialog.getProgressStream().setText("Running BAM file analysis...");
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.