Skip to content
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

Add option for requester pays into joint genotyper (import gvcf) #846

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
3 changes: 3 additions & 0 deletions tasks/broad/JointGenotypingTasks.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ task ImportGVCFs {
Int disk_size
Int batch_size

String? project_for_requester_pays

String gatk_docker = "us.gcr.io/broad-gatk/gatk:4.2.6.1"
}

Expand All @@ -113,6 +115,7 @@ task ImportGVCFs {
--sample-name-map ~{sample_name_map} \
--reader-threads 5 \
--merge-input-intervals \
~{"--gcs-project-for-requester-pays " + project_for_requester_pays} \
--consolidate

tar -cf ~{workspace_dir_name}.tar ~{workspace_dir_name}
Expand Down