Package au.org.intersect.samifier.filter

Examples of au.org.intersect.samifier.filter.PeptideSearchResultFilter


        List<SAMEntry> samEntries = new ArrayList<SAMEntry>();
        PeptideSequenceGenerator sequenceGenerator = new PeptideSequenceGeneratorImpl(
                genome, proteinToOLNMap, chromosomeDir);
        Set<String> foundProteins = new HashSet<String>();

        PeptideSearchResultFilter peptideFilter = null;
        if (confidenceScore != null) {
            peptideFilter = new ConfidenceScoreFilter(confidenceScore);
        }

        for (PeptideSearchResult result : peptideSearchResults) {
            if (peptideFilter != null && !peptideFilter.accepts(result)) {
                continue;
            }

            PeptideSequence peptide = sequenceGenerator.getPeptideSequence(result);
            if (peptide == null) {
View Full Code Here

TOP

Related Classes of au.org.intersect.samifier.filter.PeptideSearchResultFilter

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.