This repository was archived by the owner on Dec 8, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-12
lines changed Expand file tree Collapse file tree 3 files changed +7
-12
lines changed Original file line number Diff line number Diff line change 3
3
Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and
4
4
[ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
5
5
6
+ ## [ 0.2.1] - 2022-07-22
7
+ + Add - Mention CodeBook data directory in notebooks
8
+ + Update - Remove directory assertion in notebooks for CodeBook deployment
9
+ + Update - Move all export functions from ` pipeline ` to ` export ` script
10
+
6
11
## [ 0.2.0] - 2022-07-08
7
12
8
13
+ Add - Adopt black formatting into code base
Original file line number Diff line number Diff line change 188
188
" \n " ,
189
189
" - `<table>()` show table contents\n " ,
190
190
" - `heading` shows attribute definitions\n " ,
191
- " - `describe()` show table defintiion with foreign key references"
191
+ " - `describe()` show table definition with foreign key references"
192
192
]
193
193
},
194
194
{
Original file line number Diff line number Diff line change 8
8
"element_lab_to_nwb_dict" ,
9
9
"subject_to_nwb" ,
10
10
"session_to_nwb" ,
11
- "ecephys_session_to_nwb" ,
12
- "write_nwb" ,
13
11
]
14
12
15
13
# Import ephys NWB export functions
16
14
if ephys_mode == "no-curation" :
17
15
from element_array_ephys .export .nwb import ecephys_session_to_nwb , write_nwb
18
16
else :
19
- missing_ephys_warning = (
17
+ print (
20
18
f"Warning: ephys export requires the no-curation ephys_mode. To use it,\n \t "
21
19
+ "try setting datajoint.config['custom']['ephys_mode'] to 'no-curation'\n \t "
22
20
+ "and restarting your kernel."
23
21
)
24
-
25
- def ecephys_session_to_nwb (* args ):
26
- return missing_ephys_warning
27
-
28
- def write_nwb (* args ):
29
- return missing_ephys_warning
30
-
31
- print (missing_ephys_warning )
You can’t perform that action at this time.
0 commit comments