CSMSL.IO.PsmReader.PsmReader C# (CSharp) Method

PsmReader() protected method

protected PsmReader ( string filePath ) : System
filePath string
return System
        protected PsmReader(string filePath)
        {
            FilePath = filePath;
            _proteins = new Dictionary<string, Protein>();
            _fixedMods = new List<Modification>();
            _variableMods = new Dictionary<string, IMass>();
            _dataFiles = new Dictionary<string, MSDataFile<ISpectrum>>();
            _extraColumns = new List<string>();
        }