Пример #1
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="filePath"></param>
        public ProteoWizardReader(string filePath)
        {
            ProteoWizardReaderImplementation.AddAssemblyResolver();
            ProteoWizardReaderImplementation.ValidateLoader();

            _pwizReader = new ProteoWizardReaderImplementation(filePath);
        }
Пример #2
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="filePath"></param>
        public ProteoWizardReader(string filePath)
        {
            ProteoWizardReaderImplementation.AddAssemblyResolver();
            ProteoWizardReaderImplementation.ValidateLoader();

            _pwizReader = new ProteoWizardReaderImplementation(filePath);
        }
Пример #3
0
 /// <summary>
 /// Finds the path to the most recent 64-bit ProteoWizard install
 /// PwizPath is populated from this, but only causes a single search.
 /// Paths searched, in order: "%ProteoWizard%" environment variable data, "C:\DMS_Programs\ProteoWizard", "%ProgramFiles%\ProteoWizard\(highest sorted)"
 /// </summary>
 /// <returns></returns>
 public static string FindPwizPath()
 {
     return(ProteoWizardReaderImplementation.FindPwizPath());
 }