CSMSL.Proteomics.Protein.Protein C# (CSharp) 메소드

Protein() 공개 메소드

public Protein ( string sequence, string description = "", bool isDecoy = false ) : System.Collections.Generic
sequence string
description string
isDecoy bool
리턴 System.Collections.Generic
        public Protein(string sequence, string description = "", bool isDecoy = false)
            : base(sequence)
        {
            Description = description;
            IsDecoy = isDecoy;
        }