CSMSL.Proteomics.Protein.Protein C# (CSharp) Method

Protein() public method

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