-
Notifications
You must be signed in to change notification settings - Fork 2
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
Minor fixes #985
Minor fixes #985
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #985 +/- ##
=======================================
Coverage 81.54% 81.54%
=======================================
Files 184 184
Lines 15965 15965
=======================================
Hits 13018 13018
Misses 2947 2947 ☔ View full report in Codecov by Sentry. |
@@ -24,10 +23,10 @@ def get_sg_ids(vds: str) -> list[str]: | |||
Returns: | |||
list[str]: A list of sequencing group IDs. | |||
""" | |||
return read_vds(to_path(vds)).variant_data.s.collect() | |||
return read_vds(dataset_path(vds)).variant_data.s.collect() |
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.
I'm personally more a fan of passing the full path to the analysis we want to register on the CLI, instead of this helper method taking half a path as an argument.
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.
Fair enough, I can change that back.
Minor fixes to the combiner script, use better config settings to get the dataset name.