Browse Source

fastq screen filename match

tags/v0.1
junshang 3 years ago
parent
commit
1576cbb522
1 changed files with 9 additions and 11 deletions
  1. +9
    -11
      tasks/fastqscreen.wdl

+ 9
- 11
tasks/fastqscreen.wdl View File

File read2 File read2
File screen_ref_dir File screen_ref_dir
File fastq_screen_conf File fastq_screen_conf
String read1name=sub(basename(read1),"\\.(fastq|fq)\\.gz$", "")
String read2name=sub(basename(read2),"\\.(fastq|fq)\\.gz$", "")
String docker String docker
String cluster_config String cluster_config
String disk_size String disk_size


runtime { runtime {
docker:docker docker:docker
cluster: cluster_config
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
cluster: cluster_config
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
} }
output { output {
File png1 = "${read1name}_screen.png"
File txt1 = "${read1name}_screen.txt"
File html1 = "${read1name}_screen.html"
File png2 = "${read2name}_screen.png"
File txt2 = "${read2name}_screen.txt"
File html2 = "${read2name}_screen.html"
File png1 = sub(basename(read1), "\\.(fastq|fq)\\.gz$", "_screen.png")
File txt1 = sub(basename(read1), "\\.(fastq|fq)\\.gz$", "_screen.txt")
File html1 = sub(basename(read1), "\\.(fastq|fq)\\.gz$", "_screen.html")
File png2 = sub(basename(read2), "\\.(fastq|fq)\\.gz$", "_screen.png")
File txt2 = sub(basename(read2), "\\.(fastq|fq)\\.gz$", "_screen.txt")
File html2 = sub(basename(read2), "\\.(fastq|fq)\\.gz$", "_screen.html")
} }
} }

Loading…
Cancel
Save