CSMSL.Proteomics.Protease.Load C# (CSharp) Method

Load() public static method

Load the default modification file If the default modification is missing or corrupted, it will auto generate it
public static Load ( ) : void
return void
        public static void Load()
        {
            // Create file if it doesn't exist
            if (!File.Exists(UserProteasePath))
            {
                RestoreDefaults();
            }

            Load(UserProteasePath);
        }

Same methods

Protease::Load ( string filePath ) : void