-
Notifications
You must be signed in to change notification settings - Fork 596
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
ExtractFeatures supports -XL exclusion and follows intervals, other optimizations #7184
Conversation
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.
Looks awesome, just minor comments. Also, would be great to run this against the tieout set and make sure nothing blows up (ie the 37 samples)
src/main/java/org/broadinstitute/hellbender/tools/variantdb/nextgen/ExtractFeaturesEngine.java
Outdated
Show resolved
Hide resolved
src/main/java/org/broadinstitute/hellbender/tools/variantdb/nextgen/ExtractFeaturesRecord.java
Outdated
Show resolved
Hide resolved
src/main/java/org/broadinstitute/hellbender/tools/variantdb/nextgen/ExtractFeaturesRecord.java
Show resolved
Hide resolved
this.start = SchemaUtils.decodePosition(location); | ||
this.end = start; | ||
|
||
this.ref = Objects.toString(genericRecord.get("ref"), null); |
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.
@kcibul should I add all these strings to SchemaUtils instead?
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 going with "not in this PR"
6ce62b9
to
009f9ce
Compare
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.
❤️
.dockstore.yml
Outdated
@@ -96,6 +96,7 @@ workflows: | |||
branches: | |||
- master | |||
- ah_var_store | |||
- mmt_extract_features_records |
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.
remove before merging
addresses specops issues:
similar changes as the PR for ExtractCohort:
ExtractFeaturesRecord
that implementsLocatable
Locatable
s, can useOverlapDetector
to filter locations down to only desired intervals (including excluded sites)also: