Package au.org.intersect.samifier.generator

Examples of au.org.intersect.samifier.generator.LocationGenerator


        this.accessionWriter = accessionWriter;
        this.fastaParser = new FastaParserImpl(genomeFile);
    }

    public void run() throws Exception {
        LocationGenerator locationGenerator = createLocationGenerator();
        List<ProteinLocation> locations = locationGenerator.generateLocations();
        generateProteinsFile(locations,
                CodonTranslationTable.parseTableFile(translationTableFile));
        generateGffFile(locations);
        generateAccessionFile(locations);
    }
View Full Code Here


        generateGffFile(locations);
        generateAccessionFile(locations);
    }

    private LocationGenerator createLocationGenerator() {
        LocationGenerator locationGenerator;
        if (glimmerFilePath != null) {
            locationGenerator = new GlimmerFileLocationGenerator(
                    glimmerFilePath);
        } else {
            locationGenerator = new CodonsPerIntervalLocationGenerator(
View Full Code Here

TOP

Related Classes of au.org.intersect.samifier.generator.LocationGenerator

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.