Skip to content

Commit

Permalink
Merge pull request datajoint#77 from CBroz1/main
Browse files Browse the repository at this point in the history
Config items to notebook 9
  • Loading branch information
kabilar authored Jul 22, 2022
2 parents d4be911 + 122c55d commit df46b76
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and

## [0.2.1] - 2022-07-22
+ Add - Mention CodeBook data directory in notebooks
+ Add - Mention of config items in notebook 09
+ Update - Remove directory assertion in notebooks for CodeBook deployment
+ Update - Move all export functions from `pipeline` to `export` script

Expand Down
30 changes: 27 additions & 3 deletions notebooks/09-NWB-export.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,30 @@
"dj.config['display.limit']=10"
]
},
{
"cell_type": "markdown",
"id": "f2161a4e",
"metadata": {},
"source": [
"CodeBook users should also set a couple additional config parameters."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "f9c423ab",
"metadata": {},
"outputs": [],
"source": [
"username_as_prefix = dj.config[\"database.user\"] + \"_\"\n",
"if not dj.config['custom']:\n",
" dj.config['custom'] = {}\n",
"dj.config['custom'].update({\n",
" \"ephys_mode\": \"no-curation\",\n",
" \"database.prefix\": username_as_prefix,\n",
" })"
]
},
{
"cell_type": "markdown",
"id": "84b2c6ae-b8cd-47b8-af38-812f65032933",
Expand Down Expand Up @@ -450,7 +474,7 @@
"formats": "ipynb,py_scripts//py"
},
"kernelspec": {
"display_name": "Python 3.10.4 64-bit ('python3p10')",
"display_name": "Python 3.9.12 ('ele')",
"language": "python",
"name": "python3"
},
Expand All @@ -464,11 +488,11 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.4"
"version": "3.9.12"
},
"vscode": {
"interpreter": {
"hash": "ff52d424e56dd643d8b2ec122f40a2e279e94970100b4e6430cb9025a65ba4cf"
"hash": "61456c693db5d9aa6731701ec9a9b08ab88a172bee0780139a3679beb166da16"
}
}
},
Expand Down
14 changes: 12 additions & 2 deletions notebooks/py_scripts/09-NWB-export.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# extension: .py
# format_name: light
# format_version: '1.5'
# jupytext_version: 1.13.7
# jupytext_version: 1.14.0
# kernelspec:
# display_name: Python 3.10.4 64-bit ('python3p10')
# display_name: Python 3.9.12 ('ele')
# language: python
# name: python3
# ---
Expand All @@ -28,6 +28,16 @@
import datajoint as dj
dj.config['display.limit']=10

# CodeBook users should also set a couple additional config parameters.

username_as_prefix = dj.config["database.user"] + "_"
if not dj.config['custom']:
dj.config['custom'] = {}
dj.config['custom'].update({
"ephys_mode": "no-curation",
"database.prefix": username_as_prefix,
})

# If you haven't already populated the `lab`, `subject`, `session`, `probe`, and `ephys` schemas, please do so now with [04-automate](./04-automate-optional.ipynb). Note: exporting `ephys` data is currently only supported on the `no_curation` schema.

from workflow_array_ephys.pipeline import lab, subject, session, probe, ephys
Expand Down

0 comments on commit df46b76

Please sign in to comment.