Browse Source

add-cluster

master
stead99 5 years ago
parent
commit
81e03848e4
4 changed files with 16 additions and 4 deletions
  1. +4
    -1
      tasks/cufflinks.wdl
  2. +4
    -1
      tasks/fastqc.wdl
  3. +4
    -1
      tasks/tophat2.wdl
  4. +4
    -1
      tasks/trimmomatic.wdl

+ 4
- 1
tasks/cufflinks.wdl View File

cufflinks ${gtf} -p 24 -o ${baseout} ${bam} cufflinks ${gtf} -p 24 -o ${baseout} ${bam}


runtime { runtime {
dockerTag: docker
docker: docker
cluster: cluster
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd 200 /cromwell_root/"
} }
output { output {

+ 4
- 1
tasks/fastqc.wdl View File

} }


runtime { runtime {
dockerTag: docker
docker: docker
cluster: cluster
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd 200 /cromwell_root/"
} }


# 输入文件后缀必须为.fq.gz或者.fastq.gz # 输入文件后缀必须为.fq.gz或者.fastq.gz

+ 4
- 1
tasks/tophat2.wdl View File

} }
runtime { runtime {
dockerTag: docker
docker: docker
cluster: cluster
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd 200 /cromwell_root/"
} }


output { output {

+ 4
- 1
tasks/trimmomatic.wdl View File

} }


runtime { runtime {
dockerTag: docker
docker: docker
cluster: cluster
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd 200 /cromwell_root/"
} }


output { output {

Loading…
Cancel
Save