np-services 0.1.44__tar.gz → 0.1.45__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.
- {np_services-0.1.44 → np_services-0.1.45}/PKG-INFO +1 -1
- {np_services-0.1.44 → np_services-0.1.45}/pyproject.toml +1 -1
- {np_services-0.1.44 → np_services-0.1.45}/setup.py +1 -1
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/open_ephys.py +2 -0
- {np_services-0.1.44 → np_services-0.1.45}/README.md +0 -0
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/__init__.py +0 -0
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/mvr.py +0 -0
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/protocols.py +0 -0
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/proxies.py +0 -0
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/sync.py +0 -0
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/utils.py +0 -0
- {np_services-0.1.44 → np_services-0.1.45}/src/np_services/zro.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: np-services
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.45
|
|
4
4
|
Summary: Tools for interfacing with devices and services used in Mindscope Neuropixels experiments at the Allen Institute.
|
|
5
5
|
Author: bjhardcastle
|
|
6
6
|
Author-email: ben.hardcastle@alleninstitute.org
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "np-services"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.45"
|
|
4
4
|
description = "Tools for interfacing with devices and services used in Mindscope Neuropixels experiments at the Allen Institute."
|
|
5
5
|
authors = ["bjhardcastle <ben.hardcastle@alleninstitute.org>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -24,7 +24,7 @@ install_requires = \
|
|
|
24
24
|
|
|
25
25
|
setup_kwargs = {
|
|
26
26
|
'name': 'np-services',
|
|
27
|
-
'version': '0.1.
|
|
27
|
+
'version': '0.1.45',
|
|
28
28
|
'description': 'Tools for interfacing with devices and services used in Mindscope Neuropixels experiments at the Allen Institute.',
|
|
29
29
|
'long_description': '# service usage\n',
|
|
30
30
|
'author': 'bjhardcastle',
|
|
@@ -131,6 +131,7 @@ def initialize() -> None:
|
|
|
131
131
|
data_files = []
|
|
132
132
|
global initialized
|
|
133
133
|
initialized = time.time()
|
|
134
|
+
global folder
|
|
134
135
|
set_folder(folder)
|
|
135
136
|
|
|
136
137
|
|
|
@@ -272,6 +273,7 @@ def unlock_previous_recording():
|
|
|
272
273
|
time.sleep(0.5)
|
|
273
274
|
stop()
|
|
274
275
|
time.sleep(0.5)
|
|
276
|
+
global folder
|
|
275
277
|
set_folder(folder)
|
|
276
278
|
|
|
277
279
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|