Package au.org.intersect.samifier.domain

Examples of au.org.intersect.samifier.domain.GffOutputterGenerator


        VirtualProteinMascotLocationGenerator locationGenerator = new VirtualProteinMascotLocationGenerator(
                searchResultsPaths, translationTableFile, genomeFile,
                chromosomeDir, confidenceScore);
        List<ProteinLocation> locations = locationGenerator.generateLocations();
        Collections.sort(locations);
        GffOutputterGenerator outputterGenerator = new GffOutputterGenerator(genomeFile.getName());
        ProteinLocationFileGenerator.generateFile(locations, outputFile, outputterGenerator, "##gff-version 3");
    }
View Full Code Here


    }

    private void generateGffFile(List<ProteinLocation> locations)
            throws IOException {
        String genomeFileName = genomeFile.getName();
        GffOutputterGenerator outputterGenerator = new GffOutputterGenerator(genomeFileName);
        ProteinLocationFileGenerator.generateFile(locations, gffWriter,
                outputterGenerator, "##gff-version 3");
    }
View Full Code Here

TOP

Related Classes of au.org.intersect.samifier.domain.GffOutputterGenerator

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.