Beispiel #1
0
        public virtual double GetMassErrorPpm()
        {
            MsmsHit h = GetBestMsmsHit();

            if (h == null)
            {
                return(double.NaN);
            }
            return(h.MassErrorPpm);
        }
Beispiel #2
0
        public double GetPtmDelta()
        {
            MsmsHit h = GetBestMsmsHit();

            if (h == null)
            {
                return(double.NaN);
            }
            return(h.PtmDelta);
        }
Beispiel #3
0
        public long GetPtmCombinatorics()
        {
            MsmsHit h = GetBestMsmsHit();

            if (h == null)
            {
                return(0);
            }
            return(h.PtmCombinatorics);
        }
Beispiel #4
0
        public double GetPtmScore()
        {
            MsmsHit h = GetBestMsmsHit();

            if (h == null)
            {
                return(double.NaN);
            }
            return(h.PtmScore);
        }
Beispiel #5
0
        public double GetMascotDeltaScoreDifferentPep()
        {
            MsmsHit h = GetBestMsmsHit();

            if (h == null)
            {
                return(double.NaN);
            }
            return(h.DeltaScoreDifferentPep);
        }
Beispiel #6
0
        public double GetMascotDeltaScoreAll()
        {
            MsmsHit h = GetBestMsmsHit();

            if (h == null)
            {
                return(double.NaN);
            }
            return(h.DeltaScoreAll);
        }
Beispiel #7
0
        public double GetMascotScore(int silacIndex)
        {
            MsmsHit h = GetBestMsmsHit(silacIndex);

            if (h == null)
            {
                return(0);
            }
            return(h.Score);
        }
Beispiel #8
0
 public void AddMsmsHit(MsmsHit msmsHit)
 {
     msmsHits.Add(msmsHit);
 }