forked from PNNL-Comp-Mass-Spec/Thermo-Raw-File-Reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThermoReaderOptions.cs
29 lines (26 loc) · 1013 Bytes
/
ThermoReaderOptions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
namespace ThermoRawFileReader
{
/// <summary>
/// Thermo reader options
/// </summary>
public class ThermoReaderOptions
{
/// <summary>
/// MS Method Information
/// </summary>
/// <remarks>
/// Set this to false when using the ThermoRawFileReader on Linux systems;
/// CommonCore.RawFileReader raises an exception due to a null value when accessing
/// get_StorageDescriptions from get_InstrumentMethodsCount; stack trace:
/// ThermoRawFileReader.XRawFileIO.FillFileInfo
/// ThermoFisher.CommonCore.RawFileReader.RawFileAccessBase.get_InstrumentMethodsCount
/// ThermoFisher.CommonCore.RawFileReader.StructWrappers.Method.get_StorageDescriptions
/// </remarks>
public bool LoadMSMethodInfo { get; set; } = true;
/// <summary>
/// MS Tune Information
/// </summary>
public bool LoadMSTuneInfo { get; set; } = true;
}
}