-
Notifications
You must be signed in to change notification settings - Fork 82
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
bug fix: avoid mixing up linear and quadratic in genot #517
Conversation
…in genot prepare_data()
@soerenab could you please fix the failing tests?
|
Afterwards, LGTM and can merge, the failing |
… order of args in utils.match_quadratic()
The above mentioned tests now pass. Overall, this PR makes the following changes:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #517 +/- ##
==========================================
+ Coverage 90.62% 90.92% +0.30%
==========================================
Files 68 68
Lines 7047 7044 -3
Branches 685 998 +313
==========================================
+ Hits 6386 6405 +19
+ Misses 501 485 -16
+ Partials 160 154 -6
|
* bug fix: avoid mixing up linear and quadratic part by returning Dict in genot prepare_data() * fix data_match_fn() setup in genot tests * prepare_data() in GENOT now returns a tuple instead of a dict; change order of args in utils.match_quadratic() * Update docs * Fix typo --------- Co-authored-by: Michal Klein <[email protected]>
This fixes #514.
prepare_data()
now returns a dict with the right keys for the linear or quadratic matching function.