cp ${sep=" " summary} /cromwell_root/tmp/benchmark | cp ${sep=" " summary} /cromwell_root/tmp/benchmark | ||||
for i in `ls /cromwell_root/tmp/bamqc` | for i in `ls /cromwell_root/tmp/bamqc` | ||||
do | do | ||||
tar -zxvf $i | |||||
tar -zxvf $i -C /cromwell_root/tmp/bamqc | |||||
done | done | ||||
multiqc /cromwell_root/tmp/ | multiqc /cromwell_root/tmp/ |
task vcfstat { | task vcfstat { | ||||
File vcf | |||||
File rtg_vcf | |||||
File rtg_vcf_index | |||||
String docker | String docker | ||||
String cluster_config | String cluster_config | ||||
String disk_size | String disk_size | ||||
command <<< | command <<< | ||||
set -o pipefail | set -o pipefail | ||||
set -e | set -e | ||||
rtg vcfstats ${vcf} > onestats.txt | |||||
/opt/rtg-tools/dist/rtg-tools-3.10.1-4d58ead/rtg vcfstats ${rtg_vcf} > onestats.txt | |||||
>>> | >>> | ||||
runtime { | runtime { |
call vcfstat.vcfstat as vcfstat { | call vcfstat.vcfstat as vcfstat { | ||||
input: | input: | ||||
vcf=sample[4] | |||||
rtg_vcf=benchmark.rtg_vcf | |||||
rtg_vcf_index=benchmark.rtg_vcf_index | |||||
} | } | ||||