Skip to content

Commit

Permalink
fix chrX/Y swap in json templates, make GatherBatchEv output names un…
Browse files Browse the repository at this point in the history
…ique for Terra (#378)
  • Loading branch information
epiercehoffman authored Jul 28, 2022
1 parent bb25222 commit ef29ea1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"ClusterBatch.reference_fasta_fai": "${workspace.reference_index}",
"ClusterBatch.reference_dict": "${workspace.reference_dict}",

"ClusterBatch.chr_x": "${workspace.chr_y}",
"ClusterBatch.chr_y": "${workspace.chr_x}",
"ClusterBatch.chr_x": "${workspace.chr_x}",
"ClusterBatch.chr_y": "${workspace.chr_y}",
"ClusterBatch.pesr_exclude_intervals": "${workspace.pesr_exclude_list}",
"ClusterBatch.pesr_interval_overlap": "0.1",
"ClusterBatch.pesr_breakend_window": "300",
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
"GATKSVPipelineSingleSample.min_svsize" : 50,
"GATKSVPipelineSingleSample.n_RD_genotype_bins" : 100000,

"GATKSVPipelineSingleSample.chr_x": "${workspace.chr_y}",
"GATKSVPipelineSingleSample.chr_y": "${workspace.chr_x}",
"GATKSVPipelineSingleSample.chr_x": "${workspace.chr_x}",
"GATKSVPipelineSingleSample.chr_y": "${workspace.chr_y}",
"GATKSVPipelineSingleSample.pesr_exclude_intervals": "${workspace.pesr_exclude_list}",
"GATKSVPipelineSingleSample.pesr_interval_overlap": "0.1",
"GATKSVPipelineSingleSample.pesr_breakend_window": "300",
Expand Down
4 changes: 2 additions & 2 deletions wdl/GATKSVPipelineSingleSample.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -1501,8 +1501,8 @@ workflow GATKSVPipelineSingleSample {
File pre_cleanup_vcf = AnnotateVcf.output_vcf
File pre_cleanup_vcf_idx = AnnotateVcf.output_vcf_idx

File ploidy_matrix = select_first([GatherBatchEvidence.ploidy_matrix])
File ploidy_plots = select_first([GatherBatchEvidence.ploidy_plots])
File ploidy_matrix = select_first([GatherBatchEvidence.batch_ploidy_matrix])
File ploidy_plots = select_first([GatherBatchEvidence.batch_ploidy_plots])
File metrics_file = SingleSampleMetrics.metrics_file
File qc_file = SingleSampleQC.out

Expand Down
4 changes: 2 additions & 2 deletions wdl/GatherBatchEvidence.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@ workflow GatherBatchEvidence {
File merged_bincov = merged_bincov_
File merged_bincov_index = merged_bincov_idx_

File? ploidy_matrix = Ploidy.ploidy_matrix
File? ploidy_plots = Ploidy.ploidy_plots
File? batch_ploidy_matrix = Ploidy.ploidy_matrix
File? batch_ploidy_plots = Ploidy.ploidy_plots

File? combined_ped_file = AddCaseSampleToPed.combined_ped_file

Expand Down

0 comments on commit ef29ea1

Please sign in to comment.