瀏覽代碼

删除 'tasks/fastqc.wdl'

master
chenqingwang 3 年之前
父節點
當前提交
99dce221c0
共有 1 個檔案被更改,包括 0 行新增28 行删除
  1. +0
    -28
      tasks/fastqc.wdl

+ 0
- 28
tasks/fastqc.wdl 查看文件

@@ -1,28 +0,0 @@
task fastqc {
File read1
File read2
String docker
String cluster_config
String disk_size

command <<<
set -o pipefail
set -e
nt=$(nproc)
fastqc -t $nt -o ./ ${read1}
fastqc -t $nt -o ./ ${read2}
>>>

runtime {
docker:docker
cluster: cluster_config
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
}
output {
File read1_html = sub(basename(read1), "\\.(fastq|fq)\\.gz$", "_fastqc.html")
File read1_zip = sub(basename(read1), "\\.(fastq|fq)\\.gz$", "_fastqc.zip")
File read2_html = sub(basename(read2), "\\.(fastq|fq)\\.gz$", "_fastqc.html")
File read2_zip = sub(basename(read2), "\\.(fastq|fq)\\.gz$", "_fastqc.zip")
}
}

Loading…
取消
儲存