Skip to content

Changing variable name in MT WDL to match gatk-workflows #5694

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

Merged
merged 1 commit into from
Feb 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/m2_cromwell_tests/test_mitochondria_m2_wdl.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"MitochondriaPipeline.wgs_aligned_input_bam": "/home/travis/build/broadinstitute/gatk/src/test/resources/large/NA12878.alignedHg38.duplicateMarked.baseRealigned.bam",
"MitochondriaPipeline.wgs_aligned_input_bam_or_cram": "/home/travis/build/broadinstitute/gatk/src/test/resources/large/NA12878.alignedHg38.duplicateMarked.baseRealigned.bam",
"MitochondriaPipeline.autosomal_coverage": 30,
"MitochondriaPipeline.MT_with_numts_intervals": "/home/travis/build/broadinstitute/gatk/src/test/resources/large/mitochondria_references/chrMWithFinalNuMTs.hg38.interval_list",
"MitochondriaPipeline.mt_dict": "/home/travis/build/broadinstitute/gatk/src/test/resources/large/mitochondria_references/Homo_sapiens_assembly38.chrM.dict",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"MitochondriaPipeline.wgs_aligned_input_bam": "input_bam_here",
"MitochondriaPipeline.wgs_aligned_input_bam_or_cram": "input_bam_here",
"MitochondriaPipeline.autosomal_coverage": autosomal_median_coverage_here,
"MitochondriaPipeline.MT_with_numts_intervals": "gs://broad-references/hg38/v0/chrM/chrMWithFinalNuMTs.hg38.interval_list",
"MitochondriaPipeline.mt_dict": "gs://broad-references/hg38/v0/chrM/Homo_sapiens_assembly38.chrM.dict",
Expand Down
4 changes: 2 additions & 2 deletions scripts/mitochondria_m2_wdl/MitochondriaPipeline.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workflow MitochondriaPipeline {
autosomal_coverage: "Median coverage of full input bam"
out_vcf: "Final VCF of mitochondrial SNPs and INDELs"
}
File wgs_aligned_input_bam
File wgs_aligned_input_bam_or_cram
Int? autosomal_coverage

File MT_with_numts_intervals
Expand Down Expand Up @@ -65,7 +65,7 @@ workflow MitochondriaPipeline {

call SubsetBam {
input:
input_bam = wgs_aligned_input_bam,
input_bam = wgs_aligned_input_bam_or_cram,
interval_list = MT_with_numts_intervals,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
Expand Down