pipeline.py
get_miniscope_root_data_dir()
¶
Return root directory for miniscope from 'miniscope_root_data_dir' config as list
Returns:
| Name | Type | Description |
|---|---|---|
path |
any
|
List of path(s) if available or None |
Source code in workflow_miniscope/paths.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
Device
¶
Bases: dj.Lookup
Table for managing lab Devices.
Attributes:
| Name | Type | Description |
|---|---|---|
device |
varchar(32)
|
Device short name. |
modality |
varchar(64)
|
Modality for which this device is used. |
description |
varchar(256)
|
Optional. Description of device. |
Source code in workflow_miniscope/reference.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | |
get_session_directory(session_key)
¶
Return relative path from SessionDirectory table given key
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session_key |
dict
|
Key uniquely identifying a session |
required |
Returns:
| Name | Type | Description |
|---|---|---|
path |
str
|
Relative path of session directory |
Source code in workflow_miniscope/paths.py
23 24 25 26 27 28 29 30 31 32 33 34 35 | |
AnatomicalLocation
¶
Bases: dj.Manual
Lookup table for anatomical location
Attributes:
| Name | Type | Description |
|---|---|---|
recording_location_id |
( varchar(16)
|
Lookup id for location |
anatomical_description |
varchar(256)
|
Location full description |
Source code in workflow_miniscope/reference.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |