-
Notifications
You must be signed in to change notification settings - Fork 594
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
Updated M2 with latest Funcotator info. #5735
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.
Just typos, basically. You can merge without sending back.
@@ -112,19 +114,73 @@ Versioned gzip archives of data source files are provided here: | |||
|
|||
<a name="1.1.2.2"></a> | |||
### 1.1.2.2 - gnomAD | |||
The pre-packaged data sources include gnomAD, a large database of known variants. gnomAD is split into two parts - one based on exome data, one based on whole genome data. | |||
The pre-packaged data sources include a subset gnomAD, a large database of known variants. This subset contains a set of INFO fields, primarily containing allele frequency data. gnomAD is split into two parts - one based on exome data, one based on whole genome data. These two data sources are not equivalent and for complete coverage using gnomAD, we recommend annotating with both. |
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.
subset of gnomAD
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.
Specify that the subset of INFO fields is much smaller than the original vcf. It is, right?
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.
Good catch!
Yes - those fields were reduced greatly.
scripts/mutect2_wdl/mutect2.wdl
Outdated
## funco_transcript_selection_mode: How to select transcripts in Funcotator. ALL, CANONICAL, or BEST_EFFECT | ||
## funco_output_format: "MAF" to produce a MAF file, "VCF" to procude a VCF file. Default: "MAF" | ||
## funco_compress: (Only valid if funco_output_format == "VCF" ) If true, will compress the output of Funcotator. If false, produces an uncompressed output file. Default: false | ||
## funco_use_gnomad_AF: If true, wil include gnomAD allele frequency annotations in output by connecting to the internet to query gnomAD (this impacts performance). If false, will not annotate with gnomAD. Default: false |
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.
will include with an extra 'l' in "will"
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.
Fixed!
Codecov Report
@@ Coverage Diff @@
## master #5735 +/- ##
===============================================
- Coverage 87.061% 80.253% -6.808%
+ Complexity 31880 30235 -1645
===============================================
Files 1940 1940
Lines 146804 146818 +14
Branches 16234 16237 +3
===============================================
- Hits 127809 117826 -9983
- Misses 13073 23281 +10208
+ Partials 5922 5711 -211
|
Now the Mutect2 WDL has all the hooks to run Funcotator (
Funcotator.wdl
was updated as well).The
Funcotate
task in the M2 WDL is identical to that same task inFuncotator.wdl
.Fixes #5253