CSMSL.Analysis.Identification.MSSearchEngine.Search C# (CSharp) Метод

Search() публичный Метод

public Search ( IMassSpectrum massSpectrum, IEnumerable peptides, FragmentTypes fragmentTypes, Tolerance productMassTolerance ) : SortedMaxSizedContainer
massSpectrum IMassSpectrum
peptides IEnumerable
fragmentTypes FragmentTypes
productMassTolerance Tolerance
Результат SortedMaxSizedContainer
        public virtual SortedMaxSizedContainer<PeptideSpectralMatch> Search(IMassSpectrum massSpectrum, IEnumerable<Peptide> peptides, FragmentTypes fragmentTypes, Tolerance productMassTolerance)
        {
            SortedMaxSizedContainer<PeptideSpectralMatch> results = new SortedMaxSizedContainer<PeptideSpectralMatch>(MaxMatchesPerSpectrum);

            foreach (var peptide in peptides)
            {
                results.Add(Search(massSpectrum, peptide, fragmentTypes, productMassTolerance));
            }

            return results;
        }

Same methods

MSSearchEngine::Search ( IMassSpectrum massSpectrum, Peptide peptide ) : PeptideSpectralMatch
MSSearchEngine::Search ( IMassSpectrum massSpectrum, Peptide peptide, FragmentTypes fragmentTypes, Tolerance productMassTolerance ) : PeptideSpectralMatch
MSSearchEngine::Search ( IMassSpectrum massSpectrum, IEnumerable peptides ) : SortedMaxSizedContainer