pychemstation 0.5.13.dev4__py3-none-any.whl → 0.5.13.dev6__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/method.py +3 -3
- pychemstation/control/controllers/tables/sequence.py +3 -2
- {pychemstation-0.5.13.dev4.dist-info → pychemstation-0.5.13.dev6.dist-info}/METADATA +1 -1
- {pychemstation-0.5.13.dev4.dist-info → pychemstation-0.5.13.dev6.dist-info}/RECORD +7 -7
- {pychemstation-0.5.13.dev4.dist-info → pychemstation-0.5.13.dev6.dist-info}/LICENSE +0 -0
- {pychemstation-0.5.13.dev4.dist-info → pychemstation-0.5.13.dev6.dist-info}/WHEEL +0 -0
- {pychemstation-0.5.13.dev4.dist-info → pychemstation-0.5.13.dev6.dist-info}/top_level.txt +0 -0
@@ -17,8 +17,8 @@ class MethodController(TableController):
|
|
17
17
|
Class containing method related logic
|
18
18
|
"""
|
19
19
|
|
20
|
-
def __init__(self, controller: CommunicationController, src: str, data_dir: str, table: Table):
|
21
|
-
super().__init__(controller, src, data_dir, table)
|
20
|
+
def __init__(self, controller: CommunicationController, src: str, data_dir: str, table: Table, offline: bool):
|
21
|
+
super().__init__(controller, src, data_dir, table, offline=offline)
|
22
22
|
|
23
23
|
def check(self) -> str:
|
24
24
|
time.sleep(2)
|
@@ -325,7 +325,7 @@ class MethodController(TableController):
|
|
325
325
|
hplc_is_running = self.check_hplc_is_running()
|
326
326
|
tries += 1
|
327
327
|
|
328
|
-
if hplc_is_running:
|
328
|
+
if not hplc_is_running:
|
329
329
|
raise RuntimeError
|
330
330
|
|
331
331
|
self.data_files.append(os.path.join(self.data_dir, folder_name))
|
@@ -16,9 +16,10 @@ class SequenceController(TableController):
|
|
16
16
|
Class containing sequence related logic
|
17
17
|
"""
|
18
18
|
|
19
|
-
def __init__(self, controller: CommunicationController, src: str, data_dir: str, table: Table, method_dir: str
|
19
|
+
def __init__(self, controller: CommunicationController, src: str, data_dir: str, table: Table, method_dir: str,
|
20
|
+
offline: bool):
|
20
21
|
self.method_dir = method_dir
|
21
|
-
super().__init__(controller, src, data_dir, table)
|
22
|
+
super().__init__(controller, src, data_dir, table, offline=offline)
|
22
23
|
|
23
24
|
def load(self) -> SequenceTable:
|
24
25
|
rows = self.get_num_rows()
|
@@ -16,8 +16,8 @@ pychemstation/control/controllers/devices/column.py,sha256=SCpCnVFZFUM9LM51MbWkV
|
|
16
16
|
pychemstation/control/controllers/devices/device.py,sha256=SF1JK93FjmACnYrlKvldX3gEeA21qnXZegeNhc9QJGQ,738
|
17
17
|
pychemstation/control/controllers/devices/pump.py,sha256=DJQh4lNXEraeC1CWrsKmsITOjuYlRI3tih_XRB3F1hg,1404
|
18
18
|
pychemstation/control/controllers/tables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
-
pychemstation/control/controllers/tables/method.py,sha256=
|
20
|
-
pychemstation/control/controllers/tables/sequence.py,sha256=
|
19
|
+
pychemstation/control/controllers/tables/method.py,sha256=3frStFOtD8EsicHjmMmh2RNEA_LdU9i15jZ66SS7W50,16162
|
20
|
+
pychemstation/control/controllers/tables/sequence.py,sha256=vqwJeV38YWdFnaDXvZVOGYl-UCV9lmMbh8Fj5kQ3mqY,8815
|
21
21
|
pychemstation/control/controllers/tables/table.py,sha256=56kvNb_U8ka_m1r4sk-6yzRiXTT3CuszP7aoX6-TIlE,11886
|
22
22
|
pychemstation/control/table/__init__.py,sha256=RgMN4uIWHdNUHpGRBWdzmzAbk7XEKl6Y-qtqWCxzSZU,124
|
23
23
|
pychemstation/control/table/method.py,sha256=THVoGomSXff_CTU3eAYme0BYwkPzab5UgZKsiZ29QSk,12196
|
@@ -43,8 +43,8 @@ tests/test_comm.py,sha256=EYOpVXzEMQLGhhKYDPO-KaLcJdPSMPTD9Y4jSI0yVQY,2516
|
|
43
43
|
tests/test_inj.py,sha256=yaPGZoHiOC3ZSgsmrtiqp8QtSo2bMxB9FJhaFlOpad0,1412
|
44
44
|
tests/test_method.py,sha256=r1Q1irqiVzs31QuTYLX3u_A0FpX8rIAQ1L4WOk9tLbk,2473
|
45
45
|
tests/test_sequence.py,sha256=Nz2iqp1cJgw6kcQvnwSkfBmhxpOH62PoEu6o_5rO-PY,4929
|
46
|
-
pychemstation-0.5.13.
|
47
|
-
pychemstation-0.5.13.
|
48
|
-
pychemstation-0.5.13.
|
49
|
-
pychemstation-0.5.13.
|
50
|
-
pychemstation-0.5.13.
|
46
|
+
pychemstation-0.5.13.dev6.dist-info/LICENSE,sha256=9bdF75gIf1MecZ7oymqWgJREVz7McXPG-mjqrTmzzD8,18658
|
47
|
+
pychemstation-0.5.13.dev6.dist-info/METADATA,sha256=qVNAYFxasTUKdxN0SuTL2nP9-X8xlKMXmaj-UqeDl2M,4376
|
48
|
+
pychemstation-0.5.13.dev6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
49
|
+
pychemstation-0.5.13.dev6.dist-info/top_level.txt,sha256=zXfKu_4nYWwPHo3OsuhshMNC3SPkcoTGCyODjURaghY,20
|
50
|
+
pychemstation-0.5.13.dev6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|