-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH]: Introduce new onthefly
sub-module for quick transforms for analyses
#237
Conversation
Codecov Report
@@ Coverage Diff @@
## main #237 +/- ##
=======================================
Coverage 93.57% 93.57%
=======================================
Files 82 84 +2
Lines 3471 3504 +33
Branches 644 648 +4
=======================================
+ Hits 3248 3279 +31
- Misses 146 148 +2
Partials 77 77
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Should be merged after #236 . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs #236 to be merged first. There are changes related to that PR.
…nsform() unit test
b1d2efa
to
0e4782a
Compare
This PR introduces new
onthefly
sub-module for performing quick transformation of stored data, for further analyses. It intentionally doesn't store the transformed data back as it's cheap to compute and only required for downstream work. For now, it only has one functionread_transform()
to be used with other third-party libraries (bctpy
for now). The docstring ofread_transform()
provides enough information on using it and also warnings on when it can cause issues. Unit tests are included as well.