-
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
VS-694 - Extract Callset for VQSR Lite #8182
Conversation
Minor changes to GvsCreateFilterSet.wdl and friends Create new ExtractCohortLite program for extraction of VQSR Lite data.
Make GvsExtractCallset.wdl run using VQSR Lite or VQSR Classic
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## ah_var_store #8182 +/- ##
================================================
Coverage ? 85.857%
Complexity ? 35511
================================================
Files ? 2194
Lines ? 167012
Branches ? 18001
================================================
Hits ? 143392
Misses ? 17233
Partials ? 6387 |
…wdls. Update ExtractCohortLite to skip filtered records (temp fix)
…d to not load filtered sites into filter_set_info_vqsr_lite.
@@ -15,8 +15,8 @@ workflow GvsCallsetStatistics { | |||
|
|||
call Utils.ValidateFilterSetName { | |||
input: | |||
data_project = project_id, | |||
dataset_name = dataset_name, | |||
query_project = project_id, |
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.
are we going back to having the query proj being diff?
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.
Oh shoot!
# These calls to SelectVariants are being added for two reasons | ||
# 1) The snps_variant_scored_vcf and indels_variant_scored_vcf output by JointVcfFiltering contains ALL variants, | ||
# but are currently ONLY annotating SNPs and INDELs respectively. | ||
# 2) Those output VCFs also contain filtered sites which we don't want to put into the filter_set_info_vqsr_lite table. |
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.
what does "filtered sites" here mean?
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.
Sites in the VCF that have the filter field set to anything other than '.' or 'PASS'.
Initial work on GvsExtractCallset.wdl
Minor changes to GvsCreateFilterSet.wdl and friends Create new ExtractCohortLite program for extraction of VQSR Lite data.