Package au.org.intersect.samifier.parser.mzidentml

Examples of au.org.intersect.samifier.parser.mzidentml.MzidReader.run()


    public List<PeptideSearchResult> parseMascotPeptideSearchResultsMzidentMLFormat(
            File resultsFile) throws MascotParsingException {
        MzidReader reader = new MzidReader(resultsFile);
        MzIdentMLHandler mzIdentMLHandler = new MzIdentMLHandler(reader);
        reader.pushHandler(mzIdentMLHandler);
        return reader.run();
    }

    public List<PeptideSearchResult> sortResultsByChromosome(
            List<PeptideSearchResult> searchResult,
            ProteinToOLNMap proteinToOLNMap, Genome genome) {
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.