Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .github/.dockstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ workflows:
filters:
branches:
- main
- mw_run_ploidy
tags:
- /.*/

Expand Down
5 changes: 4 additions & 1 deletion wdl/EvidenceQC.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ workflow EvidenceQC {

RuntimeAttr? runtime_attr_mediancov # Memory ignored, use median_cov_mem_gb_per_sample
Float? median_cov_mem_gb_per_sample

# Do not use
File? NONE_FILE_
}

call mbm.MakeBincovMatrix as MakeBincovMatrix {
Expand Down Expand Up @@ -243,7 +246,7 @@ workflow EvidenceQC {
File? scramble_variant_counts = RawVcfQC_Scramble.variant_counts

File? ploidy_matrix = Ploidy.ploidy_matrix
File? ploidy_plots = select_first([CreateVariantCountPlots.ploidy_plots, Ploidy.ploidy_plots])
File? ploidy_plots = if run_ploidy then select_first([CreateVariantCountPlots.ploidy_plots, Ploidy.ploidy_plots]) else NONE_FILE_

File WGD_dist = WGD.WGD_dist
File WGD_matrix = WGD.WGD_matrix
Expand Down