-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactor NWB * Refactor label studio * Refactor high level API * Bump version * Add basic NWB reading * Add high level NWB loading API * Use context manager for NWB append * Add roundtrip tests * Use context manager in NWB * Add conversion from numpy arrays to skeleton * Fix skeleton creation from numpy arrays * Fix labelstudio serialization * Fix loading mixed timestamp format predictions in NWB * Correctly append multiple videos to NWB * Relax coverage failure condition
- Loading branch information
Showing
12 changed files
with
518 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
coverage: | ||
status: | ||
project: # Measures overall project coverage. | ||
default: | ||
target: auto | ||
threshold: 1% | ||
informational: true # Project coverage for stats only. | ||
patch: # Only measures lines adjusted in the pull request. | ||
default: | ||
target: auto | ||
threshold: 5% | ||
informational: false # true: Patch coverage for stats only. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ install_requires = | |
pynwb | ||
ndx-pose | ||
pandas | ||
simplejson | ||
|
||
[options.extras_require] | ||
dev = | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.