Examples of VirtualProteinMascotLocationGenerator


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

        this.outputFile = outputFile;
        this.confidenceScore = confidenceScore;
    }

    public void run() throws Exception {
        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
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.