pychemstation 0.8.0__py3-none-any.whl → 0.8.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pychemstation/control/controllers/tables/table.py +6 -4
- {pychemstation-0.8.0.dist-info → pychemstation-0.8.1.dist-info}/METADATA +1 -1
- {pychemstation-0.8.0.dist-info → pychemstation-0.8.1.dist-info}/RECORD +5 -5
- {pychemstation-0.8.0.dist-info → pychemstation-0.8.1.dist-info}/WHEEL +0 -0
- {pychemstation-0.8.0.dist-info → pychemstation-0.8.1.dist-info}/licenses/LICENSE +0 -0
@@ -262,10 +262,12 @@ class TableController(abc.ABC):
|
|
262
262
|
|
263
263
|
def get_uv_spectrum(self, path: str):
|
264
264
|
data_uv = rb.agilent.chemstation.parse_file(os.path.join(path, "DAD1.UV"))
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
265
|
+
times = data_uv.xlabels
|
266
|
+
wavelengthes = data_uv.ylabels
|
267
|
+
data = data_uv.data.transpose()
|
268
|
+
for (i, w) in enumerate(wavelengthes):
|
269
|
+
self.uv[w] = AgilentHPLCChromatogram()
|
270
|
+
self.uv[w].attach_spectrum(times, data[i])
|
269
271
|
|
270
272
|
def get_report_details(self, path: str,
|
271
273
|
report_type: ReportType = ReportType.TXT) -> AgilentReport:
|
@@ -19,7 +19,7 @@ pychemstation/control/controllers/tables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
19
19
|
pychemstation/control/controllers/tables/method.py,sha256=UMLwzsMYsZx53PMgmKIe6LcK4JjAUpuK41x9VMJObNw,17709
|
20
20
|
pychemstation/control/controllers/tables/ms.py,sha256=JFD-tOhu8uRyKdl-E3-neRssii8MNqVRIlsrnFhNY_M,682
|
21
21
|
pychemstation/control/controllers/tables/sequence.py,sha256=UT0KUDnn8A-19V24ZgW3KduSulvtbdvsJF9NJBUrz9M,13109
|
22
|
-
pychemstation/control/controllers/tables/table.py,sha256=
|
22
|
+
pychemstation/control/controllers/tables/table.py,sha256=Adis9584LJqP4yjLj5XrIxqq1jzdBiDieOG4vc90EIU,12327
|
23
23
|
pychemstation/generated/__init__.py,sha256=GAoZFAYbPVEJDkcOw3e1rgOqd7TCW0HyKNPM8OMehMg,1005
|
24
24
|
pychemstation/generated/dad_method.py,sha256=zfS9op450CRSGPKkUr9qUyPBbND06b9N8SUU9j4cosM,8408
|
25
25
|
pychemstation/generated/pump_method.py,sha256=c_FB14rgODZyH5eDb3kxZAI77xRj1HMpQkE2R6MypNA,12180
|
@@ -33,7 +33,7 @@ pychemstation/utils/pump_types.py,sha256=HWQHxscGn19NTrfYBwQRCO2VcYfwyko7YfBO5uD
|
|
33
33
|
pychemstation/utils/sequence_types.py,sha256=x2EClcq6ROdzeLZg63XcXXTknwl2aZ48Vuyru0xZjgA,1086
|
34
34
|
pychemstation/utils/table_types.py,sha256=7txqW_oNpkh4venSkGEtreVe6UV9dzNB1DTrIeTkQHA,3217
|
35
35
|
pychemstation/utils/tray_types.py,sha256=eOO-muUjadyvCM8JnYAZVyxJeyYBlENP1zXiFskAFbs,5049
|
36
|
-
pychemstation-0.8.
|
37
|
-
pychemstation-0.8.
|
38
|
-
pychemstation-0.8.
|
39
|
-
pychemstation-0.8.
|
36
|
+
pychemstation-0.8.1.dist-info/METADATA,sha256=pHxLXmz_fR2U_A416pLuVXVGXU0bPzG0y6WYWh6I024,4491
|
37
|
+
pychemstation-0.8.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
38
|
+
pychemstation-0.8.1.dist-info/licenses/LICENSE,sha256=9bdF75gIf1MecZ7oymqWgJREVz7McXPG-mjqrTmzzD8,18658
|
39
|
+
pychemstation-0.8.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|