Procházet zdrojové kódy

rtg in vcfstat

master
LUYAO REN před 5 roky
rodič
revize
4beee1ce96
3 změnil soubory, kde provedl 7 přidání a 4 odebrání
  1. +1
    -1
      tasks/multiqc.wdl
  2. +4
    -2
      tasks/vcfstat.wdl
  3. +2
    -1
      workflow.wdl

+ 1
- 1
tasks/multiqc.wdl Zobrazit soubor

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/

+ 4
- 2
tasks/vcfstat.wdl Zobrazit soubor

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 {

+ 2
- 1
workflow.wdl Zobrazit soubor



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
} }





Načítá se…
Zrušit
Uložit