epiphyte.database ¶
access_info ¶
Database connection and storage configuration for Epiphyte.
This module sets up the DataJoint connection parameters and storage settings.
The module is imported by the db_setup.py
script to connect to the local or remote database.
config ¶
Hard-coded variables for initializing the database.
This modules defines the paths and variables used to initialize the mock database.
Paths:
PATH_TO_REPO
: Path to the root of the repository.PATH_TO_DATA
: Path to the folder containing the mock data.PATH_TO_LABELS
: Path to the folder containing the movie annotations.PATH_PATIENT_ALIGNED_LABELS
: Path to the folder containing the patient-aligned annotations.PATH_TO_PATIENT_DATA
: Path to the folder containing the refractored mock patient data.PATH_TO_SESSION_DATA
: Path to the folder containing the refractored mock session data.
Variables:
PTS_MOVIE_new
: List of time points for the movie, sampled at 25 Hz (0.04s intervals).patients
: List of dictionaries, each containing information about a patient (id, age, gender, year).sessions
: List of dictionaries, each containing information about a session (patient_id, session_nr, session_type).annotators
: List of dictionaries, each containing information about an annotator (id, first_name, last_name).label_names
: List of label names used in the annotations.
db_setup ¶
DataJoint tables and population helpers for the mock database.
This module defines DataJoint schemas and tables used to represent patients, sessions, events, annotations, spikes, and derived entities used throughout the tutorials.
Methods for populating the tables are included as class methods.
Tables are populating using the mock data generated in epiphyte.data.mock_data_utils
.
Conventions
- Tables are defined according to the order of population, with the most top-level tables first, followed by tables which pull keys from those tables.
- The method of populating a table varies by table type and content. For
Imported
tables, the population function is class method. ForManual
tables, the population method is defined separately.
Patients ¶
Bases: Lookup
Table containing patient demographics.
Source code in epiphyte/database/db_setup.py
33 34 35 36 37 38 39 40 41 42 43 44 45 |
|
Sessions ¶
Bases: Lookup
Table containing recording session metadata per patient.
Source code in epiphyte/database/db_setup.py
47 48 49 50 51 52 53 54 55 56 57 58 |
|
Annotator ¶
Bases: Lookup
Table containing annotators who labeled movie content and events.
Source code in epiphyte/database/db_setup.py
60 61 62 63 64 65 66 67 68 69 70 71 |
|
LabelName ¶
Bases: Lookup
Table containing the name of labelled content.
Source code in epiphyte/database/db_setup.py
73 74 75 76 77 78 79 80 81 |
|
MovieSession ¶
Bases: Imported
Table containing the session-wise movie timing and channel metadata.
Populates from watchlogs, DAQ logs, and event files under the session directory. Stores PTS, DTS, neural recording time, and channel names.
Source code in epiphyte/database/db_setup.py
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 143 144 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 |
|
LFPData ¶
Bases: Manual
Table containing the local field potential-like signals from each channel.
Populated manually using the populate_lfp_data_table()
function.
Source code in epiphyte/database/db_setup.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
ElectrodeUnit ¶
Bases: Imported
Table containing information on the units detected per channel with type and within-channel number.
Source code in epiphyte/database/db_setup.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
MovieAnnotation ¶
Bases: Imported
Table containing the raw movie annotations (values and segments) per label and annotator.
Source code in epiphyte/database/db_setup.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
|
SpikeData ¶
Bases: Imported
Table containing the spike times and amplitudes per unit in neural recording time.
Source code in epiphyte/database/db_setup.py
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 |
|
PatientAlignedMovieAnnotation ¶
Bases: Computed
Table containing annotations aligned to individual patient PTS and neural time.
Source code in epiphyte/database/db_setup.py
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
|
make ¶
make(key)
Align indicator to PTS and derive start/stop in neural time.
Source code in epiphyte/database/db_setup.py
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
|
MovieSkips ¶
Bases: Computed
Table containing information on segments of continuous vs. non-continuous movie watching.
Source code in epiphyte/database/db_setup.py
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
|
make ¶
make(key)
Detect non-continuous segments (skips) from watchlogs and DAQ logs.
Source code in epiphyte/database/db_setup.py
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
|
MoviePauses ¶
Bases: Computed
Table containing information on pauses in movie playback detected from watchlogs and DAQ logs.
Source code in epiphyte/database/db_setup.py
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
|
populate_lfp_data_table ¶
populate_lfp_data_table()
Populate LFPData
from lfp_data
files under each session directory.
Skips already-inserted channel entries.
Source code in epiphyte/database/db_setup.py
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 |
|
helpers ¶
Helper functions used in the database
module.
This module provides small utilities for parsing filenames, sorting keys in a human-friendly way, and extracting metadata encoded in strings.
atoi ¶
atoi(text)
Convert a numeric substring to int
or return the original string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
Substring that may contain only digits. |
required |
Returns:
Type | Description |
---|---|
Union[int, str]
|
Union[int, str]: Integer value (if all digits) or the original string. |
Source code in epiphyte/database/helpers.py
16 17 18 19 20 21 22 23 24 25 26 |
|
natural_keys ¶
natural_keys(text)
Split a string into chunks for human (natural) sorting.
Use as alist.sort(key=natural_keys)
to sort filenames such as
CSC2_SU1.npy
before CSC10_SU1.npy
.
Notes
Based on Ned Batchelder's human sorting recipe.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
Input string to split into text and integer chunks. |
required |
Returns:
Type | Description |
---|---|
List[Union[int, str]]
|
List[Union[int, str]]: Alternating text and integer parts suitable as a sort key. |
Source code in epiphyte/database/helpers.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|
extract_sort_key ¶
extract_sort_key(filename)
Extract a sortable key from a spike filename.
Filenames are expected to follow CSC<nr>_<type><nr>.npy
. If the
pattern matches, returns a tuple (csc_number, unit_type, unit_nr)
.
Otherwise, returns the original filename for fallback sorting.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename
|
str
|
Filename to parse. |
required |
Returns:
Type | Description |
---|---|
Union[Tuple[int, str, int], str]
|
Union[Tuple[int, str, int], str]: Tuple for sorting or the original filename. |
Source code in epiphyte/database/helpers.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
get_channel_names ¶
get_channel_names(path_channel_names)
Read channel names (without extensions) from a text file.
The file is expected to contain lines like <name>.ncs
. The suffix is
stripped to yield bare channel identifiers.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path_channel_names
|
Union[str, Path]
|
Path to the channel names file. |
required |
Returns:
Type | Description |
---|---|
List[str]
|
List[str]: List of channel name strings. |
Source code in epiphyte/database/helpers.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
get_unit_type_and_number ¶
get_unit_type_and_number(unit_string)
Parse a unit string into unit type and number.
Example: CSC_MUA1
-> ("M", "1").
Parameters:
Name | Type | Description | Default |
---|---|---|---|
unit_string
|
str
|
Original unit string (e.g., |
required |
Returns:
Type | Description |
---|---|
Tuple[str, str]
|
Tuple[str, str]: Tuple |
Source code in epiphyte/database/helpers.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
extract_name_unit_id_from_unit_level_data_cleaning ¶
extract_name_unit_id_from_unit_level_data_cleaning(filename)
Split a unit-level cleaning filename into components.
Filenames are expected as "<name>_unit<id>_<annotator>.npy"
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename
|
str
|
Filename to parse. |
required |
Returns:
Type | Description |
---|---|
Tuple[str, str, str]
|
Tuple[str, str, str]: Tuple |
Source code in epiphyte/database/helpers.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
|
match_label_to_patient_pts_time ¶
match_label_to_patient_pts_time(default_label, patient_pts)
Align a default label indicator function to patient PTS frames.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default_label
|
ndarray
|
Indicator vector (per canonical frame) of shape |
required |
patient_pts
|
ndarray
|
Watched frame times in seconds, rounded to 2 decimals. |
required |
Returns:
Type | Description |
---|---|
List[int]
|
List[int]: Indicator value for each patient frame. |
Source code in epiphyte/database/helpers.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
get_list_of_patient_ids ¶
get_list_of_patient_ids(patient_dict)
Collect all patient IDs from an indexable sequence of dicts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
patient_dict
|
Sequence[Dict[str, Any]]
|
Sequence where each item has a |
required |
Returns:
Type | Description |
---|---|
List[int]
|
List[int]: List of integer patient identifiers. |
Source code in epiphyte/database/helpers.py
153 154 155 156 157 158 159 160 161 162 163 |
|