Package au.org.intersect.samifier.domain

Examples of au.org.intersect.samifier.domain.BedLineOutputter


            int peptideStart = peptide.getStartIndex()
                    + peptide.getGeneInfo().getStart();

            if (bedWriter != null && !foundProteins.contains(proteinName)) {
                foundProteins.add(proteinName);
                BedLineOutputter bedLineOutputter = new BedLineOutputter(
                        peptide, proteinName);
                bedWriter.write(bedLineOutputter.toString());
            }

            if (DebuggingFlag.get_use_mascot_score_flag() == 1) {
                int mapq = result.getConfidenceScore()
                        .round(new MathContext(0)).intValue();
View Full Code Here

TOP

Related Classes of au.org.intersect.samifier.domain.BedLineOutputter

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.