Examples of GffOutputterGenerator


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

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

    }

    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
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.