Examples of ProteinStatsPerCondition


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

                    conditionCoverage += perFile.coverage;
                    specifySumIntensityRange(statisticsPerFile.getIntensityRaw(), perFile.intensity);
                    specifyAverageScoreRange(statisticsPerFile.getQvalue(), perFile.qvalue);
                }
                final int filesLength = perFileSet.size();
                perConditionSet.add(new ProteinStatsPerCondition(c.getId(),
                        (conditionCoverage == 0) ? 0 : conditionCoverage / filesLength,
                        (conditionIntensitySum == 0) ? 0 : conditionIntensitySum / filesLength,
                        (conditionQvalue == 0) ? 0 : conditionQvalue / filesLength, perFileSet));
            }
            for (ProteinStatsPerCondition perCondition : perConditionSet) {
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.