Package com.infoclinika.mssharing.model.read.SequestSearchReader.ExperimentSearchStatisticsItem

Examples of com.infoclinika.mssharing.model.read.SequestSearchReader.ExperimentSearchStatisticsItem.MinMaxPairItem


    @Override
    public ExperimentSearchStatisticsItem readSearchStatistics(long experimentSearchId) {
        //todo add levels for peptide and isotope group
        final ExperimentSearch experimentSearch = experimentSearchRepository.findOne(experimentSearchId);
        final MinMaxPairItem ratioRange = new MinMaxPairItem(-2, 2);
        return new ExperimentSearchStatisticsItem(experimentSearch.getId(),
                STATISTICS_RANGE_ITEM_FUNCTION.apply(experimentSearch.getStatisticRangesPerFile()),
                STATISTICS_RANGE_ITEM_FUNCTION.apply(experimentSearch.getStatisticRangesPerCondition()),
                new StatisticsRangeItem(ratioRange, ratioRange, ratioRange, ratioRange, ratioRange));
    }
View Full Code Here

TOP

Related Classes of com.infoclinika.mssharing.model.read.SequestSearchReader.ExperimentSearchStatisticsItem.MinMaxPairItem

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.