pychemstation 0.5.10__tar.gz → 0.5.11__tar.gz
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-0.5.10 → pychemstation-0.5.11}/PKG-INFO +2 -1
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/controllers/sequence.py +5 -6
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation.egg-info/PKG-INFO +2 -1
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation.egg-info/requires.txt +1 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/setup.py +3 -2
- {pychemstation-0.5.10 → pychemstation-0.5.11}/LICENSE +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/README.md +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/__init__.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/analysis/__init__.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/analysis/base_spectrum.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/analysis/spec_utils.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/analysis/utils.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/__init__.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/controllers/__init__.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/controllers/comm.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/controllers/method.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/controllers/table_controller.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/hplc.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/generated/__init__.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/generated/dad_method.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/generated/pump_method.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/__init__.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/chromatogram.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/macro.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/method_types.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/parsing.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/sequence_types.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/table_types.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/utils/tray_types.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation.egg-info/SOURCES.txt +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation.egg-info/dependency_links.txt +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation.egg-info/top_level.txt +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/pyproject.toml +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/setup.cfg +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/tests/__init__.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/tests/constants.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/tests/test_comb.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/tests/test_comm.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/tests/test_method.py +0 -0
- {pychemstation-0.5.10 → pychemstation-0.5.11}/tests/test_sequence.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pychemstation
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.11
|
4
4
|
Summary: Library to interact with Chemstation software, primarily used in Hein lab
|
5
5
|
Home-page: https://gitlab.com/heingroup/device-api/pychemstation
|
6
6
|
Author: Lucy Hao
|
@@ -13,6 +13,7 @@ License-File: LICENSE
|
|
13
13
|
Requires-Dist: polling
|
14
14
|
Requires-Dist: seabreeze
|
15
15
|
Requires-Dist: xsdata
|
16
|
+
Requires-Dist: result
|
16
17
|
|
17
18
|
# Agilent HPLC Macro Control
|
18
19
|
|
@@ -1,15 +1,14 @@
|
|
1
|
-
from typing import Optional
|
2
|
-
|
3
1
|
import os
|
4
2
|
import time
|
3
|
+
from typing import Optional
|
5
4
|
|
6
|
-
from ...control.controllers.table_controller import TableController
|
7
5
|
from ...control.controllers.comm import CommunicationController
|
6
|
+
from ...control.controllers.table_controller import TableController
|
8
7
|
from ...utils.chromatogram import SEQUENCE_TIME_FORMAT, AgilentChannelChromatogramData
|
9
8
|
from ...utils.macro import Command
|
10
9
|
from ...utils.sequence_types import SequenceTable, SequenceEntry, SequenceDataFiles, InjectionSource, SampleType
|
11
|
-
from ...utils.table_types import
|
12
|
-
from ...utils.tray_types import
|
10
|
+
from ...utils.table_types import RegisterFlag, Table
|
11
|
+
from ...utils.tray_types import TenVialColumn
|
13
12
|
|
14
13
|
|
15
14
|
class SequenceController(TableController):
|
@@ -118,7 +117,7 @@ class SequenceController(TableController):
|
|
118
117
|
|
119
118
|
if row.vial_location:
|
120
119
|
loc = row.vial_location
|
121
|
-
if isinstance(row.vial_location,
|
120
|
+
if isinstance(row.vial_location, TenVialColumn):
|
122
121
|
loc = row.vial_location.value
|
123
122
|
self.edit_row_num(row=row_num, col_name=RegisterFlag.VIAL_LOCATION, val=loc)
|
124
123
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pychemstation
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.11
|
4
4
|
Summary: Library to interact with Chemstation software, primarily used in Hein lab
|
5
5
|
Home-page: https://gitlab.com/heingroup/device-api/pychemstation
|
6
6
|
Author: Lucy Hao
|
@@ -13,6 +13,7 @@ License-File: LICENSE
|
|
13
13
|
Requires-Dist: polling
|
14
14
|
Requires-Dist: seabreeze
|
15
15
|
Requires-Dist: xsdata
|
16
|
+
Requires-Dist: result
|
16
17
|
|
17
18
|
# Agilent HPLC Macro Control
|
18
19
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|
5
5
|
|
6
6
|
setuptools.setup(
|
7
7
|
name="pychemstation",
|
8
|
-
version="0.5.
|
8
|
+
version="0.5.11",
|
9
9
|
author="Lucy Hao",
|
10
10
|
author_email="lhao03@student.ubc.ca",
|
11
11
|
description="Library to interact with Chemstation software, primarily used in Hein lab",
|
@@ -16,7 +16,8 @@ setuptools.setup(
|
|
16
16
|
install_requires=[
|
17
17
|
'polling',
|
18
18
|
'seabreeze',
|
19
|
-
'xsdata'
|
19
|
+
'xsdata',
|
20
|
+
'result'
|
20
21
|
],
|
21
22
|
classifiers=[
|
22
23
|
"Programming Language :: Python :: 3",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pychemstation-0.5.10 → pychemstation-0.5.11}/pychemstation/control/controllers/table_controller.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|