task fastq_screen { File read File screen_ref_dir File fastq_screen_conf String readname = basename(read,".fastq.gz") String docker String cluster_config String disk_size command <<< set -o pipefail set -e nt=$(nproc) mkdir -p /cromwell_root/tmp cp -r ${screen_ref_dir} /cromwell_root/tmp/ #sed -i "s#/cromwell_root/fastq_screen_reference#${screen_ref_dir}#g" ${fastq_screen_conf} fastq_screen --aligner bowtie2 --conf ${fastq_screen_conf} --top 100000 --threads $nt ${read} >>> runtime { docker:docker cluster: cluster_config systemDisk: "cloud_ssd 40" dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/" } output { File png = "${readname}_screen.png" File txt = "${readname}_screen.txt" File html = "${readname}_screen.html" } }