Skip to content

Commit 9b36103

Browse files
committed
git extend API
1 parent f667c43 commit 9b36103

3 files changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
from ... import TraceType
2+
3+
class GenericDataTypes:
4+
pass
5+
6+
class ChromatogramTraceSettings:
7+
def __init__(self, trace_type=1):
8+
self.trace_type = trace_type
9+
10+
class ChromatogramSignal:
11+
pass
12+
13+
class SpectrumPacketType:
14+
pass
15+
16+
class Scan:
17+
pass
18+
19+
class Range:
20+
def __init__(self, low=0.0, high=0.0):
21+
self.low = low
22+
self.high = high
23+
24+
class SampleType:
25+
Unknown = 0
26+
Sample = 1
27+
Blank = 2
28+
Standard = 3
29+
# ...
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from ... import MSOrder as MsOrderType
2+
from ... import MassAnalyzer as MassAnalyzerType
3+
4+
class PolarityType:
5+
Positive = 1
6+
Negative = 2
7+
Both = 3
8+
9+
class IonizationModeType:
10+
Unknown = 0
11+
ESI = 1
12+
APCI = 2
13+
# ...
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
from .. import RawFile as RawFileReaderAdapter
2+
from .. import RawFile as RawFileAccess

0 commit comments

Comments
 (0)