Examples of ProteinStatsPerFile


Examples of com.infoclinika.mssharing.model.internal.write.sequestsearch.SequestSearchStatistic.ProteinStats.ProteinStatsPerCondition.ProteinStatsPerFile

                }
                final double coveragePercent = (coverageNumber / pd.getSequence().length()) * 100;
                if (aggregatedProtein != null) {
                    pdToStatisticsMap.put(aggregatedProtein.getId(), new ProteinStatisticsPerFileItem(aggregatedProtein, rawFile, coveragePercent));
                }
                perFileSet.add(new ProteinStatsPerFile(rawFile.getId(), coveragePercent,
                        intensitySum == 0 ? 0 : intensitySum,
                        qValueSum == 0 ? 0 : qValueSum / searchResults.size()));

            }
            return perFileSet;
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.