Package au.org.intersect.samifier.runner

Examples of au.org.intersect.samifier.runner.ProteinGeneratorRunner.run()


            }
            ProteinGeneratorRunner runner = new ProteinGeneratorRunner(
                    glimmerFilePath, genomeFile, interval, databaseName,
                    outputWriter, translationTableFile, gffWriter,
                    accessionWriter);
            runner.run();
        } catch (ParseException pe) {
            System.err.println("Version = " + VERSION);
            HelpFormatter formatter = new HelpFormatter();
            formatter.printHelp("protein_generator", options, true);
        } catch (Exception e) {
View Full Code Here


            StringWriter out = new StringWriter();
            StringWriter gff = new StringWriter();
            StringWriter accession = new StringWriter();

            ProteinGeneratorRunner runner = new ProteinGeneratorRunner(glimmerFile, genomeFile, null, "testdb", out, tableFile, gff, accession);
            runner.run();
            verifyExpectedOutput(out,  "test/resources/protein_generator/expected_contig_file.fa");
            verifyExpectedOutput(gff,  "test/resources/protein_generator/expected_gff_contig_glimmer.gff");
            verifyExpectedOutput(accession, "test/resources/protein_generator/expected_accession_file_contig_glimmer.txt");
        }
       
View Full Code Here

            StringWriter out = new StringWriter();
            StringWriter gff = new StringWriter();
            StringWriter accession = new StringWriter();
           
            ProteinGeneratorRunner runner = new ProteinGeneratorRunner(null, genomeFile, "100", "testdb", out, tableFile, gff, accession);
            runner.run();
            verifyExpectedOutput(out,  "test/resources/protein_generator/expected_contig_interval.fa");
            verifyExpectedOutput(gff,  "test/resources/protein_generator/expected_gff_contig_interval.gff");
            verifyExpectedOutput(accession, "test/resources/protein_generator/expected_accession_file_contig_interval.txt");
           
        }
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.