Examples of extractBlockSequenceThisWindow()


Examples of jmotifx.preprocess.JMotifXBlockSequenceExtractor.extractBlockSequenceThisWindow()

        //Extract block sequences....
        JMotifXBlockSequenceExtractor bseqExt = new JMotifXBlockSequenceExtractor();
        int peptideWindow = Integer.parseInt(configMap.get("peptideWindow"));
        String centerResidue = configMap.get("centerResidue");
        ArrayList<String> inseqsBlock =
                bseqExt.extractBlockSequenceThisWindow(inseqs, peptideWindow, db, centerResidue); //window defaults to 13
       
        //Remove redundant Peptides
        MotifXPeptideSequenceFilter filter = new MotifXPeptideSequenceFilter();
        inputPeptideSequences = filter.removeRedundancy(inseqsBlock);
       
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.