Package au.org.intersect.samifier.runner

Examples of au.org.intersect.samifier.runner.ResultAnalyserRunner


            // / The nucleotide sequence in the 'output' SAM file is compared
            // with the amino acid sequence in the 'input' Mascot DAT or
            // mzIdentML file.
            if (DebuggingFlag.get_sbi_debug_flag() == 1) {
                File translationTableFile = new File(line.getOptionValue("t"));
                ResultAnalyserRunner analyser = new ResultAnalyserRunner(
                        searchResultsPaths, genomeFile, mapFile, outfile,
                        chromosomeDir, translationTableFile);
                if (sqlQuery == null && repId == null) {
                    analyser.run();
                } else if (sqlQuery != null
                        && (repId != null || repListFile != null)) {
                    System.err.println("Only use either reportId or sqlQuery.");
                } else if (sqlQuery != null) {
                    mainWithQuery(analyser, sqlQuery);
                } else {
                    mainWithReportId(analyser, repId, repListFile);
                }
            } else {
                ResultAnalyserRunner analyser = new ResultAnalyserRunner(
                        searchResultsPaths, genomeFile, mapFile, outfile,
                        chromosomeDir);
                if (sqlQuery == null && repId == null) {
                    analyser.run();
                } else if (sqlQuery != null
                        && (repId != null || repListFile != null)) {
                    System.err.println("Only use either reportId or sqlQuery.");
                } else if (sqlQuery != null) {
                    mainWithQuery(analyser, sqlQuery);
View Full Code Here

TOP

Related Classes of au.org.intersect.samifier.runner.ResultAnalyserRunner

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.