np-workflows 1.6.89__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.
- np_workflows/__init__.py +7 -0
- np_workflows/assets/images/logo_np_hab.png +0 -0
- np_workflows/assets/images/logo_np_vis.png +0 -0
- np_workflows/experiments/__init__.py +1 -0
- np_workflows/experiments/dynamic_routing/__init__.py +2 -0
- np_workflows/experiments/dynamic_routing/main.py +117 -0
- np_workflows/experiments/dynamic_routing/widgets.py +82 -0
- np_workflows/experiments/openscope_P3/P3_workflow_widget.py +83 -0
- np_workflows/experiments/openscope_P3/__init__.py +2 -0
- np_workflows/experiments/openscope_P3/main_P3_pilot.py +217 -0
- np_workflows/experiments/openscope_barcode/__init__.py +2 -0
- np_workflows/experiments/openscope_barcode/barcode_workflow_widget.py +83 -0
- np_workflows/experiments/openscope_barcode/camstim_scripts/barcode_mapping_script.py +138 -0
- np_workflows/experiments/openscope_barcode/camstim_scripts/barcode_opto_script.py +219 -0
- np_workflows/experiments/openscope_barcode/main_barcode_pilot.py +217 -0
- np_workflows/experiments/openscope_loop/__init__.py +2 -0
- np_workflows/experiments/openscope_loop/camstim_scripts/barcode_mapping_script.py +138 -0
- np_workflows/experiments/openscope_loop/camstim_scripts/barcode_opto_script.py +219 -0
- np_workflows/experiments/openscope_loop/loop_workflow_widget.py +83 -0
- np_workflows/experiments/openscope_loop/main_loop_pilot.py +217 -0
- np_workflows/experiments/openscope_psycode/__init__.py +2 -0
- np_workflows/experiments/openscope_psycode/main_psycode_pilot.py +217 -0
- np_workflows/experiments/openscope_psycode/psycode_workflow_widget.py +83 -0
- np_workflows/experiments/openscope_v2/__init__.py +2 -0
- np_workflows/experiments/openscope_v2/main_v2_pilot.py +217 -0
- np_workflows/experiments/openscope_v2/v2_workflow_widget.py +83 -0
- np_workflows/experiments/openscope_vippo/__init__.py +2 -0
- np_workflows/experiments/openscope_vippo/main_vippo_pilot.py +217 -0
- np_workflows/experiments/openscope_vippo/vippo_workflow_widget.py +83 -0
- np_workflows/experiments/task_trained_network/__init__.py +2 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/make_tt_stims.py +23 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/oct22_tt_stim_script.py +69 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_00.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_01.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_02.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_03.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_04.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_05.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_06.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_07.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_08.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_09.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_10.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_11.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_12.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_13.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_14.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_15.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_16.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_17.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_18.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/flash_250ms.stim +20 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/gabor_20_deg_250ms.stim +30 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/old_stim.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/shuffle_reversed.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/shuffle_reversed_1st.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/stims/shuffle_reversed_2nd.stim +5 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/ttn_main_script.py +130 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/ttn_mapping_script.py +138 -0
- np_workflows/experiments/task_trained_network/camstim_scripts/ttn_opto_script.py +219 -0
- np_workflows/experiments/task_trained_network/main_ttn_pilot.py +263 -0
- np_workflows/experiments/task_trained_network/ttn_session_widget.py +83 -0
- np_workflows/experiments/task_trained_network/ttn_stim_config.py +213 -0
- np_workflows/experiments/templeton/__init__.py +2 -0
- np_workflows/experiments/templeton/main.py +105 -0
- np_workflows/experiments/templeton/widgets.py +82 -0
- np_workflows/shared/__init__.py +3 -0
- np_workflows/shared/base_experiments.py +826 -0
- np_workflows/shared/camstim_scripts/flash_250ms.stim +20 -0
- np_workflows/shared/camstim_scripts/gabor_20_deg_250ms.stim +30 -0
- np_workflows/shared/npxc.py +187 -0
- np_workflows/shared/widgets.py +705 -0
- np_workflows-1.6.89.dist-info/METADATA +85 -0
- np_workflows-1.6.89.dist-info/RECORD +76 -0
- np_workflows-1.6.89.dist-info/WHEEL +4 -0
- np_workflows-1.6.89.dist-info/entry_points.txt +4 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: np-workflows
|
|
3
|
+
Version: 1.6.89
|
|
4
|
+
Summary: Ecephys and behavior workflows for the Mindscope Neuropixels team.
|
|
5
|
+
Author-Email: Ben Hardcastle <ben.hardcastle@alleninstitute.org>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Project-URL: Repository, https://github.com/AllenInstitute/np_workflows
|
|
13
|
+
Project-URL: Issues, https://github.com/AllenInstitute/np_workflows/issues
|
|
14
|
+
Requires-Python: ==3.11.*
|
|
15
|
+
Requires-Dist: np-services>=0.1.69
|
|
16
|
+
Requires-Dist: np-session>=0.6.48
|
|
17
|
+
Requires-Dist: np-config>=0.4.33
|
|
18
|
+
Requires-Dist: ipywidgets>=7
|
|
19
|
+
Requires-Dist: pydantic>=2
|
|
20
|
+
Requires-Dist: jupyterlab>=3.6
|
|
21
|
+
Requires-Dist: ipylab>=0.6.0
|
|
22
|
+
Requires-Dist: np-tools>=0.1.24
|
|
23
|
+
Requires-Dist: np-jobs>=0.0.3
|
|
24
|
+
Requires-Dist: universal-pathlib>=0.1.0
|
|
25
|
+
Requires-Dist: s3fs>=2023.6.0
|
|
26
|
+
Requires-Dist: npc-shields>=0.1.10
|
|
27
|
+
Requires-Dist: npc-sessions>=0.0.225
|
|
28
|
+
Requires-Dist: np-codeocean[dynamic-routing-metadata]>=0.2.1
|
|
29
|
+
Requires-Dist: panel>=1.4.5
|
|
30
|
+
Requires-Dist: aind-session>=0.1.20
|
|
31
|
+
Requires-Dist: jupyter-bokeh>=4.0.5
|
|
32
|
+
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: blue>=0.9.1; extra == "dev"
|
|
34
|
+
Requires-Dist: pytest>=7.2.2; extra == "dev"
|
|
35
|
+
Requires-Dist: mypy>=1.1.1; extra == "dev"
|
|
36
|
+
Requires-Dist: coverage[toml]>=7.2.2; extra == "dev"
|
|
37
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
38
|
+
Requires-Dist: bump>=1.3.2; extra == "dev"
|
|
39
|
+
Requires-Dist: types-backports>=0.1.3; extra == "dev"
|
|
40
|
+
Requires-Dist: ruff>=0.0.260; extra == "dev"
|
|
41
|
+
Description-Content-Type: text/markdown
|
|
42
|
+
|
|
43
|
+
# np_workflows
|
|
44
|
+
|
|
45
|
+
This package contains all the Python code required to run Mindscope Neuropixels
|
|
46
|
+
experiments.
|
|
47
|
+
|
|
48
|
+
[](https://pypi.org/project/np-workflows/)
|
|
49
|
+
[](https://pypi.org/project/np-workflows/)
|
|
50
|
+
|
|
51
|
+
<!-- [](https://app.codecov.io/github/AllenInstitute/np_workflows) -->
|
|
52
|
+
[](https://github.com/alleninstitute/np_workflows/actions/workflows/publish.yml)
|
|
53
|
+
[](https://github.com/alleninstitute/np_workflows/issues)
|
|
54
|
+
|
|
55
|
+
Experiment workflows and related tasks are coordinated by Jupyter notebooks maintained here:
|
|
56
|
+
https://github.com/AllenInstitute/np_notebooks
|
|
57
|
+
|
|
58
|
+
Running the notebooks requires a Python environment with:
|
|
59
|
+
- Python >= 3.11
|
|
60
|
+
- np_workflows
|
|
61
|
+
- Jupyter / JupyterLab
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
git clone https://github.com/AllenInstitute/np_notebooks
|
|
65
|
+
conda create -n workflows python=3.11
|
|
66
|
+
pip install np_workflows
|
|
67
|
+
pip install jupyterlab
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Keep the `np_workflows` package up-to-date by running `pip install
|
|
71
|
+
np_workflows -U` before each use
|
|
72
|
+
|
|
73
|
+
To develop this package `git clone` then `pdm install`
|
|
74
|
+
|
|
75
|
+
## NP. rig setup
|
|
76
|
+
.venv is currently used, with PDM to update packages before each experiment:
|
|
77
|
+
1. install JupyterLab desktop (Win 64-bit)
|
|
78
|
+
2. clone `np_notebooks` (not `np_workflows`) `cd c:\Users\svc_neuropix\Documents\github & git clone https://github.com/AllenInstitute/np_notebooks`
|
|
79
|
+
5. find the path to python.exe 3.11.*, or install it manually
|
|
80
|
+
6. create a new venv in the `np_notebooks` dir: `cd np_notebooks & path-to-python.exe -m venv .venv`
|
|
81
|
+
7. activate venv: `.venv\scripts\activate` (terminal should now report `(np_notebooks-3.11)`)
|
|
82
|
+
8. install PDM in venv: `path-to-python.exe -m pip install pdm`
|
|
83
|
+
9. install `np_notebooks` requirements: `pdm install`
|
|
84
|
+
10. in JupyterLab, set the default to Python environment to use `c:\Users\svc_neuropix\Documents\github\np_notebooks\.venv\scripts\python.exe`
|
|
85
|
+
11. open up any workflow in the `np_notebooks` dir and check that the initial cell with imports works
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
np_workflows-1.6.89.dist-info/METADATA,sha256=2iKX7KMbWdmKZgnD5qkOmp34wx_bI--87DULrpcUHN8,3991
|
|
2
|
+
np_workflows-1.6.89.dist-info/WHEEL,sha256=tsUv_t7BDeJeRHaSrczbGeuK-TtDpGsWi_JfpzD255I,90
|
|
3
|
+
np_workflows-1.6.89.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
4
|
+
np_workflows/__init__.py,sha256=QWnSRZ3THmQPF6HO8rFC4EkcjGd5ypap7BssqKqva64,232
|
|
5
|
+
np_workflows/assets/images/logo_np_hab.png,sha256=N1skdSq4lQv0liucargHoulzfE-zeTYoud-wAePD2VY,10071
|
|
6
|
+
np_workflows/assets/images/logo_np_vis.png,sha256=yDaQ3dQcX1OXPN8Rsne9SvaevUlgvVRcw_tWs02cyTU,19349
|
|
7
|
+
np_workflows/experiments/__init__.py,sha256=voWNXF2Kl3mmB4PwqnZ4DcD5zhvBq1j2xLUHnLe6So8,39
|
|
8
|
+
np_workflows/experiments/dynamic_routing/__init__.py,sha256=M2oiBrVpy_Wrt7oC8J1wzHvKTYdA2K1UIb0-_7S6SuQ,123
|
|
9
|
+
np_workflows/experiments/dynamic_routing/main.py,sha256=bM_56PMmyyqg8wd-M2w8suUw0HoQFTZqlbKLoyjBVVw,3129
|
|
10
|
+
np_workflows/experiments/dynamic_routing/widgets.py,sha256=fOMmgiPCf-fVNkvPTI9vP7u6g0XfzMTRU6P2pRYSlFc,2965
|
|
11
|
+
np_workflows/experiments/openscope_P3/P3_workflow_widget.py,sha256=aF5mGvKFPxxbi0aoy25L3QWKkqttCpRhNhHXYdsD0ro,2609
|
|
12
|
+
np_workflows/experiments/openscope_P3/__init__.py,sha256=Lb2gTAPZjo9nd74lxqjS-oAS1QpCLZsVcyVdpMzI7g0,133
|
|
13
|
+
np_workflows/experiments/openscope_P3/main_P3_pilot.py,sha256=F_qa_d5Yu-KwAx7hUOgruLTw5R_4-yoC7pQtQZvdHFc,7304
|
|
14
|
+
np_workflows/experiments/openscope_barcode/__init__.py,sha256=GLLsVF_GWoTzgezUog8KmfD-pbXmYiDCyA6wliMKnDI,148
|
|
15
|
+
np_workflows/experiments/openscope_barcode/barcode_workflow_widget.py,sha256=r4fOECMPiaMgm8ps7WaSHTPROHUrbvPZtoLLJsh-S8o,2654
|
|
16
|
+
np_workflows/experiments/openscope_barcode/camstim_scripts/barcode_mapping_script.py,sha256=od7OGH4xe_SRz8QOipDYFYQDVGTzIcHa3IguCbQ7hp4,4401
|
|
17
|
+
np_workflows/experiments/openscope_barcode/camstim_scripts/barcode_opto_script.py,sha256=e5RIzMzFxwszdSRpHNo-pOpdm0JBlEIP8wP3ld_-6ao,6249
|
|
18
|
+
np_workflows/experiments/openscope_barcode/main_barcode_pilot.py,sha256=kA_-_RV5u2Z0JV3MyZ7BLeHdu0oK0-f84Cc1gAbfa3g,7404
|
|
19
|
+
np_workflows/experiments/openscope_loop/__init__.py,sha256=KBTJif_FzEJeAN2B8f338NsHFZA9c0IavGb_7Sv4wTE,139
|
|
20
|
+
np_workflows/experiments/openscope_loop/camstim_scripts/barcode_mapping_script.py,sha256=od7OGH4xe_SRz8QOipDYFYQDVGTzIcHa3IguCbQ7hp4,4401
|
|
21
|
+
np_workflows/experiments/openscope_loop/camstim_scripts/barcode_opto_script.py,sha256=e5RIzMzFxwszdSRpHNo-pOpdm0JBlEIP8wP3ld_-6ao,6249
|
|
22
|
+
np_workflows/experiments/openscope_loop/loop_workflow_widget.py,sha256=5aYv6d4xGotGXxLald708ukI4FsWbxPA8CgG-CT64p0,2627
|
|
23
|
+
np_workflows/experiments/openscope_loop/main_loop_pilot.py,sha256=ye9qPdZPy5_Em7fmDQxttqRNkWaM-ok0w0JhM3b9so4,7344
|
|
24
|
+
np_workflows/experiments/openscope_psycode/__init__.py,sha256=FYX6cNbpueIFqKU5g2l3IeFAgXv8Ikzuv6dC0SMpusQ,148
|
|
25
|
+
np_workflows/experiments/openscope_psycode/main_psycode_pilot.py,sha256=gpYAw4JKU71iveRIu4O_L3gAw4KodCVYcPGhW7lHrCg,7404
|
|
26
|
+
np_workflows/experiments/openscope_psycode/psycode_workflow_widget.py,sha256=LZPRfi3H0z4_zbVezmAPhVUfInpZyaKBKx0tEqkPx4I,2654
|
|
27
|
+
np_workflows/experiments/openscope_v2/__init__.py,sha256=Tmzui2YozeY_a1fiB8dYnlWZdpK_1gEV7MaVtwprP-0,133
|
|
28
|
+
np_workflows/experiments/openscope_v2/main_v2_pilot.py,sha256=O0LThYX8ahKLTgKKcW0rkaqM9bmQkXaDi6l13Wzh-t0,7304
|
|
29
|
+
np_workflows/experiments/openscope_v2/v2_workflow_widget.py,sha256=VI3gohtX5lWXG08x5Xf1a98o-QXXWV25TQpADIlVc2I,2609
|
|
30
|
+
np_workflows/experiments/openscope_vippo/__init__.py,sha256=LTrsyImW6JjUFsu6qoIjdb3aM7YTkQovyLEDHWFv2aA,142
|
|
31
|
+
np_workflows/experiments/openscope_vippo/main_vippo_pilot.py,sha256=q859hjqaFqlMUl6phmOH8PnVYg6iCyG6H67o_HAvDMA,7364
|
|
32
|
+
np_workflows/experiments/openscope_vippo/vippo_workflow_widget.py,sha256=B5kiU-kXypoA7lSonaS7OWZecV4HdmgOdPZq9INbpHE,2636
|
|
33
|
+
np_workflows/experiments/task_trained_network/__init__.py,sha256=PMqoDCmDhWULXHjIxy_weTDd-ljIpasCW-pVkAHONWc,114
|
|
34
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/make_tt_stims.py,sha256=ZEkFXfsnx9di6LjWYqE0Y3esRFJ67VYxYxvB3ukepUA,1175
|
|
35
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/oct22_tt_stim_script.py,sha256=sAj8B46tE1pllOit-AnWgPkATP4ArOEG_a-yIKZrSoM,2025
|
|
36
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_00.stim,sha256=xxuPY43pJ-gxucU4cN71N9F1ax4NjvVeD8ROdVm2dks,333
|
|
37
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_01.stim,sha256=MRdBxPPCM7VydEn0HYMuo2XEArQLlO5I6Pw-M8sLJ2E,333
|
|
38
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_02.stim,sha256=Hn80JxtIrldCLjG1p7cPlKnmZfPGCelgIcu85RWk5ZE,333
|
|
39
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_03.stim,sha256=osIDEYKmpBdzO-4d4DpMe_99kvXSFZolSGxN5lBHvZE,333
|
|
40
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_04.stim,sha256=YumL7Its_2IYKsM-rZMmQ8skjQft--ztPIuqCi5gTZk,333
|
|
41
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_05.stim,sha256=8qxVTO68vm6Y5keQVp7A9lQpHr4jF40O3hnhOe5OsrE,333
|
|
42
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_06.stim,sha256=-74XX5CeO_8FrmB46NAYY0B9sbSAbu1E9A534i7Jlks,333
|
|
43
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_07.stim,sha256=qoIUSRFCzGGnec9EklBvYYSYJPNY3ELjWo2ZoGc5uTs,333
|
|
44
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_08.stim,sha256=nfxIWOtuzg0VUAvMGsEQOhd7Zsz0WcA0gXdXsE-rBBE,333
|
|
45
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_09.stim,sha256=AFxs2nahEZ9GUCRRkFk4nv8fKOoFT7Amiqo6om--mYQ,333
|
|
46
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_10.stim,sha256=V66zazul9cyuA8FLiW81lscJjG_PWsaV49NkyiTmMCc,333
|
|
47
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_11.stim,sha256=rdEa2sN24OnFftoPw_Rn2mLSmJekDdVHdUnnltbIbvg,333
|
|
48
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_12.stim,sha256=PQDpJxNXXg02Pn-C07DYvQsby1ZVir1DYVf-DjmEIr8,333
|
|
49
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_13.stim,sha256=iZyPY55ysp36mw97yneR5Y3l32EsC5m11GLNXhl94_E,333
|
|
50
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_14.stim,sha256=vRXOC0-Ki0tQdfuVnWCtGX-kqfgFjkdHdJ9Ma9LgjNM,333
|
|
51
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_15.stim,sha256=28Vx6gMIZ-ORo-zd9w4TpEMivb6T1K1D1DXzlHIIjHg,333
|
|
52
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_16.stim,sha256=a0iksP-Jnd1XkY17NH5icuAYfuzRejV3lBSLVL-e5Ls,333
|
|
53
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_17.stim,sha256=JJliEsu29ywMY2MMCRe6TuLl-3vgBBszhJPwkdDq_kw,333
|
|
54
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/densely_annotated_18.stim,sha256=dpn8GypZqVanacMJpxZxr5MAzAhRShB4ivMmC7JTQMY,333
|
|
55
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/flash_250ms.stim,sha256=ARwNQPJRRQwEaD_k0oXR1lafdafWlf_Kvfbq6TVEkDU,408
|
|
56
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/gabor_20_deg_250ms.stim,sha256=xvuRMORZiN9IuOLWZbNTWuxmhfHefGnZtIpeYcsQXpE,718
|
|
57
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/old_stim.stim,sha256=CSOHiWxCTNh4VUgdxbzSE7BpP459o_aEUsmUGm9d4ok,336
|
|
58
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/shuffle_reversed.stim,sha256=3ofex6aAa_blc_9y0vfTljzwRTFB7Q40UailCOdEeNk,330
|
|
59
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/shuffle_reversed_1st.stim,sha256=h_hVOGWfWStVYpMRCT_tq0IvMt1tUkYA9kkvTjrCcx4,341
|
|
60
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/stims/shuffle_reversed_2nd.stim,sha256=Hbecd8QX1X6idVyeRIybhT0pSwVTq-5NC_0X-LLzWHQ,342
|
|
61
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/ttn_main_script.py,sha256=FBnLhcCBoWXbs1d62rOp98zl_9ZRwQAxxHn--NGgq74,3874
|
|
62
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/ttn_mapping_script.py,sha256=2u9pRU-fWsTw9dTt9Jd3_oZPHyIcPZ5ez1OjgoT5Cn0,4400
|
|
63
|
+
np_workflows/experiments/task_trained_network/camstim_scripts/ttn_opto_script.py,sha256=e5RIzMzFxwszdSRpHNo-pOpdm0JBlEIP8wP3ld_-6ao,6249
|
|
64
|
+
np_workflows/experiments/task_trained_network/main_ttn_pilot.py,sha256=7rA9XQxAVqM6z88X_B8LljXqWl9U3uGNSgOtzUL4Nfg,9047
|
|
65
|
+
np_workflows/experiments/task_trained_network/ttn_session_widget.py,sha256=l5ifU-9agTgvd3FfSJsKTS6xBqKMN4VvpbRxIrzFkGs,2601
|
|
66
|
+
np_workflows/experiments/task_trained_network/ttn_stim_config.py,sha256=OmRyudP2e8hCiEJ_VEd_1W-GarZTxZQ1smfwOoEmrwM,8480
|
|
67
|
+
np_workflows/experiments/templeton/__init__.py,sha256=LrTnP6DnkTSB-sdadvSOJvLZMZRXjt3ZOssk8KWIjxA,111
|
|
68
|
+
np_workflows/experiments/templeton/main.py,sha256=5JDBN4fQbBy2PfiUh6OQr0NVZo-h58la3C-mgfLsU3Y,2906
|
|
69
|
+
np_workflows/experiments/templeton/widgets.py,sha256=e0t7zhD0N-i6Q5_8EWW4lYrESuAb7hIz_BEL4NPaywo,2884
|
|
70
|
+
np_workflows/shared/__init__.py,sha256=L9h5R3dioT8m0KcwjlQV5_eoEFoneJHEzDTGaH4_ySg,131
|
|
71
|
+
np_workflows/shared/base_experiments.py,sha256=K0G4XSMkpP2s6c9XZAtxaj9niRd8GLpZQ6FVX3YDPuA,34500
|
|
72
|
+
np_workflows/shared/camstim_scripts/flash_250ms.stim,sha256=ARwNQPJRRQwEaD_k0oXR1lafdafWlf_Kvfbq6TVEkDU,408
|
|
73
|
+
np_workflows/shared/camstim_scripts/gabor_20_deg_250ms.stim,sha256=xvuRMORZiN9IuOLWZbNTWuxmhfHefGnZtIpeYcsQXpE,718
|
|
74
|
+
np_workflows/shared/npxc.py,sha256=NWi826e14EEt3vKlsLwsQ2wYcsLk9Ea_Hrb8hn2iA3Y,6689
|
|
75
|
+
np_workflows/shared/widgets.py,sha256=aehptvxluwfyRs7Sa4ZSvCMhOwGCxhUM7STBR4wFG5k,26880
|
|
76
|
+
np_workflows-1.6.89.dist-info/RECORD,,
|