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

Examples of au.org.intersect.samifier.parser.mzidentml.MzidReader


        return results;
    }

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

TOP

Related Classes of au.org.intersect.samifier.parser.mzidentml.MzidReader

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.