-
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
M2 cnv updates 1534 #40
base: master
Are you sure you want to change the base?
Conversation
GATK_CNV_Mutect2/mutect2-gatk4/m2_subworkflows/HaplotypeCaller_vcf_gatk4.wdl
Outdated
Show resolved
Hide resolved
GATK_CNV_Mutect2/mutect2-gatk4/m2_subworkflows/HaplotypeCaller_vcf_gatk4.wdl
Show resolved
Hide resolved
GATK_CNV_Mutect2/mutect2-gatk4/m2_subworkflows/HaplotypeCaller_vcf_gatk4.wdl
Outdated
Show resolved
Hide resolved
GATK_CNV_Mutect2/mutect2-gatk4/m2_subworkflows/HaplotypeCaller_vcf_gatk4.wdl
Outdated
Show resolved
Hide resolved
GATK_CNV_Mutect2/mutect2-gatk4/m2_subworkflows/HaplotypeCaller_vcf_gatk4.wdl
Show resolved
Hide resolved
GATK_CNV_Mutect2/mutect2-gatk4/m2_subworkflows/calculate_mutational_burden.wdl
Outdated
Show resolved
Hide resolved
docker: tag_docker | ||
memory: machine_mem + " MB" | ||
disks: "local-disk " + select_first([disk_space, 10]) + " HDD" | ||
preemptible: select_first([preemptible_attempts, 10]) |
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.
Change the preempt(i/a)ble default to 3 instead of 10
@@ -108,6 +112,7 @@ workflow Mutect2 { | |||
Boolean? compress_vcfs | |||
File? gga_vcf | |||
File? gga_vcf_idx | |||
String? gcs_project_for_requester_pays |
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 this input. We want to localize those input before running GATK tools
echo "$passing_INDEL" > passing_indel.txt | ||
|
||
#filtered only INDELs | ||
bcftools isec -C -O v -o ${basename}.indel.filtered.vcf -w1 ${basename}.indel.vcf.gz ${basename}.indel.passing.vcf.gz |
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.
@yueyaog I think the issue in this task at least is these ${basename}
instead of ~{basename}
I migrated the modifications made by @MicahR-Y in TAG PR 1534 to this PR. I have structured this PR to exclusively present the differences between the official GATK workflows and the TAG workflows.
The incorporation of these changes will lead to the removal of certain approved modifications (those are small changes). Here are the essential changes that should be incorporated: #17 #19 #26