Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- task multiqc {
-
- Array[File] read1_zip
- Array[File] read2_zip
-
- Array[File] txt1
- Array[File] txt2
-
- Array[File] zip
-
- Array[File] summary
-
- String docker
- String cluster_config
- String disk_size
-
- command <<<
- set -o pipefail
- set -e
- mkdir -p /cromwell_root/tmp/fastqc
- mkdir -p /cromwell_root/tmp/fastqscreen
- mkdir -p /cromwell_root/tmp/bamqc
- mkdir -p /cromwell_root/tmp/benchmark
-
- cp ${sep=" " read1_zip} ${sep=" " read2_zip} /cromwell_root/tmp/fastqc
- cp ${sep=" " txt1} ${sep=" " txt2} /cromwell_root/tmp/fastqscreen
- cp ${sep=" " zip} /cromwell_root/tmp/bamqc
- cp ${sep=" " summary} /cromwell_root/tmp/benchmark
- for i in `ls /cromwell_root/tmp/bamqc`
- do
- tar -zxvf $i -C /cromwell_root/tmp/bamqc
- done
-
- multiqc /cromwell_root/tmp/
- ls > filelist
- >>>
-
- runtime {
- docker:docker
- cluster:cluster_config
- systemDisk:"cloud_ssd 40"
- dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- File filelist = "filelist"
- File multiqc_html = "multiqc_report.html"
- Array[File] multiqc_txt = glob("multiqc_data/*")
- }
- }
|