ingest.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 | |
ingest_subjects(subject_csv_path='./user_data/subjects.csv', skip_duplicates=True, verbose=True)
¶
Ingest subjects listed in the subject column of ./user_data/subjects.csv
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subject_csv_path |
str
|
Relative path to subject csv. Defaults to "./user_data/subjects.csv". |
'./user_data/subjects.csv'
|
skip_duplicates |
bool
|
See DataJoint |
True
|
verbose |
bool
|
Print number inserted (i.e., table length change). Defaults to True. |
True
|
Source code in workflow_miniscope/ingest.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | |
ingest_sessions(session_csv_path='./user_data/sessions.csv', skip_duplicates=False, verbose=True)
¶
Ingest session list from csv
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session_csv_path |
str
|
Relative path to CSV of sessions. Defaults to "./user_data/sessions.csv". |
'./user_data/sessions.csv'
|
skip_duplicates |
bool
|
See DataJoint |
False
|
verbose |
bool
|
Print number inserted. Defaults to True. |
True
|
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
Only software Miniscope-DAQ-V3 or V4 implemented |
FileNotFoundError
|
No .avi files found in session path |
Source code in workflow_miniscope/ingest.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
ingest_events(recording_csv_path='./user_data/behavior_recordings.csv', block_csv_path='./user_data/blocks.csv', trial_csv_path='./user_data/trials.csv', event_csv_path='./user_data/events.csv', skip_duplicates=True, verbose=True)
¶
Ingest each level of experiment hierarchy for element-trial
Ingestion hierarchy includes
recording, block (i.e., phases of trials), trials (repeated units), events (optionally 0-duration occurrences within trial).
Note: This ingestion function is duplicated across wf-array-ephys and wf-calcium-imaging
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recording_csv_path |
str
|
Relative path to recording csv. Defaults to "./user_data/behavior_recordings.csv". |
'./user_data/behavior_recordings.csv'
|
block_csv_path |
str
|
Relative path to block csv. Defaults to "./user_data/blocks.csv". |
'./user_data/blocks.csv'
|
trial_csv_path |
str
|
Relative path to trial csv. Defaults to "./user_data/trials.csv". |
'./user_data/trials.csv'
|
event_csv_path |
str
|
Relative path to event csv. Defaults to "./user_data/events.csv". |
'./user_data/events.csv'
|
skip_duplicates |
bool
|
See DataJoint |
True
|
verbose |
bool
|
Print number inserted (i.e., table length change). Defaults to True. |
True
|
Source code in workflow_miniscope/ingest.py
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | |
ingest_alignment(alignment_csv_path='./user_data/alignments.csv', skip_duplicates=True, verbose=True)
¶
Ingest event alignment data from local CSVs
Note: This is duplicated across wf-array-ephys and wf-calcium-imaging
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
alignment_csv_path |
str
|
Relative path to event alignment csv. Defaults to "./user_data/alignments.csv". |
'./user_data/alignments.csv'
|
skip_duplicates |
bool
|
See DataJoint |
True
|
verbose |
bool
|
Print number inserted (i.e., table length change). Defaults to True. |
True
|
Source code in workflow_miniscope/ingest.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | |
recursive_search(key, dictionary)
¶
Return value for key in a nested dictionary
Search through a nested dictionary for a key and returns its value. If there are more than one key with the same name at different depths, the algorithm returns the value of the least nested key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key |
str
|
Key used to search through a nested dictionary |
required |
dictionary |
dict
|
Nested dictionary |
required |
Returns:
| Name | Type | Description |
|---|---|---|
value |
any
|
value of the input argument |
Source code in workflow_miniscope/ingest.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | |