Package org.bioinfo.ngs.qc.qualimap.process

Examples of org.bioinfo.ngs.qc.qualimap.process.BamStatsAnalysisConfig


        return activateBamQcMode.isSelected();
    }

    public BamStatsAnalysisConfig getBamQcConfig() {

        BamStatsAnalysisConfig cfg = new BamStatsAnalysisConfig();
        if (analyzeRegionsCheckBox.isSelected()) {
            cfg.gffFile = pathGffFile.getText();
        }

        cfg.drawChromosomeLimits = drawChromosomeLimits.isSelected();
View Full Code Here


            throw new ParseException("input data description file (--data) " + inputFile + " is not found");
        }

        runBamQCFirst = commandLine.hasOption("r");
        if (runBamQCFirst) {
            bamQcCfg = new BamStatsAnalysisConfig();

            if(commandLine.hasOption(Constants.BAMQC_OPTION_GFF_FILE)) {
                bamQcCfg.gffFile = commandLine.getOptionValue(Constants.BAMQC_OPTION_GFF_FILE);
                if(!exists(bamQcCfg.gffFile)) {
                    throw new ParseException("input region gff file not found");
View Full Code Here

TOP

Related Classes of org.bioinfo.ngs.qc.qualimap.process.BamStatsAnalysisConfig

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.