Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Commit c9190e6

Browse files
committed
Merge branch 'qc' of JaerongA/workflow-array-ephys
2 parents 1fe0f1e + 45fc278 commit c9190e6

File tree

10 files changed

+462
-413
lines changed

10 files changed

+462
-413
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@ RUN \
2525
# dircolors -b >> /home/vscode/.bashrc && \ # somehow fix colors
2626
apt-get clean
2727
COPY ./requirements.txt /tmp/
28+
COPY ./requirements_dev.txt /tmp/
2829
RUN \
2930
# workflow dependencies
3031
apt-get install gcc ffmpeg libsm6 libxext6 -y && \
3132
pip install --no-cache-dir -r /tmp/requirements.txt && \
33+
pip install --no-cache-dir -r /tmp/requirements_dev.txt && \
3234
rm /tmp/requirements.txt && \
35+
rm /tmp/requirements_dev.txt && \
3336
apt-get clean
3437

3538
ENV DJ_HOST fakeservices.datajoint.io

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// For format details, see https://aka.ms/devcontainer.json.
22
{
3-
"name": "Remote Demo",
3+
"name": "Demo with remote data",
44
"dockerComposeFile": "docker-compose.yaml",
55
"service": "app",
66
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",

.devcontainer/local/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// For format details, see https://aka.ms/devcontainer.json.
22
{
3-
"name": "Local Demo",
3+
"name": "Demo with local data",
44
"dockerComposeFile": "docker-compose.yaml",
55
"service": "app",
66
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,5 @@ docker-compose.yml
109109
# temporary figures
110110
temp_ephys_figures/
111111

112-
example_data
112+
example_data
113+
*.code-workspace

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

6+
## [0.3.2] - 2023-04-14
7+
8+
+ Add - `quality_metrics.ipynb` for visualizing quality metrics.
9+
+ Add - Documentation for attributes in `ephys.QualityMetrics.Waveform`.
10+
+ Update - pytest for `ephys.QualityMetrics.populate`.
11+
612
## [0.3.1] - 2023-04-12
713

814
+ Add - pytest for new `QCmetric` tables.
@@ -87,6 +93,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
8793

8894
+ Add - Version
8995

96+
[0.3.2]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.2
9097
[0.3.1]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.1
9198
[0.3.0]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.0
9299
[0.2.6]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.2.6

notebooks/demo_prepare.ipynb

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
" insertion_number=1,\n",
141141
" paramset_idx=1,\n",
142142
" task_mode='load', # load or trigger\n",
143-
" clustering_output_dir=\"subject5/session1/probe_1/ks2.1_01\"\n",
143+
" clustering_output_dir=\"subject5/session1/probe_1/kilosort2-5_1\"\n",
144144
" )\n",
145145
")\n",
146146
"\n",
@@ -204,13 +204,6 @@
204204
"\n",
205205
"# drop_databases(databases=['analysis', 'trial', 'event', 'ephys_report', 'ephys', 'probe', 'session', 'subject', 'project', 'lab'])\n"
206206
]
207-
},
208-
{
209-
"cell_type": "code",
210-
"execution_count": null,
211-
"metadata": {},
212-
"outputs": [],
213-
"source": []
214207
}
215208
],
216209
"metadata": {
@@ -229,7 +222,7 @@
229222
"name": "python",
230223
"nbconvert_exporter": "python",
231224
"pygments_lexer": "ipython3",
232-
"version": "3.9.2"
225+
"version": "3.9.16"
233226
},
234227
"orig_nbformat": 4,
235228
"vscode": {

0 commit comments

Comments
 (0)