Package au.org.intersect.samifier.reporter

Examples of au.org.intersect.samifier.reporter.ReportLister


        analyser.initMemoryDb();
        analyser.runWithQuery(sqlQuery);
    }

    private static String getQueryFromFile(String repId, String repListFile) {
        ReportLister reportLister = new ReportLister(repListFile);
        return reportLister.getQueryByReportId(repId);
    }
View Full Code Here


            File resultAnalysisFile = File.createTempFile("out", "txt");
            resultAnalysisFile.deleteOnExit();

            ResultAnalyserRunner analyser = new ResultAnalyserRunner(mascotFile, genomeFile, mapFile,
                resultAnalysisFile, chromosomeDir);
            ReportLister reportLister = new ReportLister(repList);
           
            analyser.initMemoryDb();
            analyser.runWithQuery(reportLister.getQueryByReportId(repId));

            List<String> expectedLines = FileUtils.readLines(new File("test/resources/expected_results_analysis.txt"));
            List<String> gotLines = FileUtils.readLines(resultAnalysisFile);
           
            assertEquals(expectedLines.size(), gotLines.size());
View Full Code Here

TOP

Related Classes of au.org.intersect.samifier.reporter.ReportLister

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.