-
Notifications
You must be signed in to change notification settings - Fork 597
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
VS-695. Updates to run Precision and Sensitivity on VQSR Lite #8230
Conversation
… scale of calibration_sensitivity vs. lod score. Also retrieving score from JointVcfFiltering and storing that in BQ and in the VCF. Probably don't need this long term.
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## ah_var_store #8230 +/- ##
================================================
Coverage ? 85.837%
Complexity ? 35510
================================================
Files ? 2194
Lines ? 167039
Branches ? 18004
================================================
Hits ? 143382
Misses ? 17269
Partials ? 6388 |
src/main/java/org/broadinstitute/hellbender/tools/gvs/extract/ExtractCohortLite.java
Show resolved
Hide resolved
@@ -247,6 +248,12 @@ protected String[] customCommandLineValidation() { | |||
errors.add("Parameters 'project-id', 'dataset-id', 'call-set-identifier', 'wdl-step', 'wdl-call', and 'shardIdentifier' must be set if 'cost-observability-tablename' is set."); | |||
} | |||
} | |||
if (truthSensitivitySNPThreshold < 0.0 || truthSensitivitySNPThreshold > 1.0) { | |||
errors.add("Parameter 'snps-truth-sensitivity-filter-level' MUST be between 0.0 and 1.0'"); |
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.
should we print out what the number actually is?
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.
Done
src/main/java/org/broadinstitute/hellbender/tools/gvs/filtering/CreateFilteringFiles.java
Show resolved
Hide resolved
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.
LGTM
Update GvsCalculatePrecisionAndSensitivity.wdl to allow for different scale of calibration_sensitivity vs. lod score.
Also retrieving score from JointVcfFiltering and storing that in BQ and in the VCF. (Probably don't need this long term.)