ソースを参照

add-cluster

master
stead99 5年前
コミット
81e03848e4
4個のファイルの変更16行の追加4行の削除
  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 ファイルの表示

@@ -11,7 +11,10 @@ task cufflinks {
cufflinks ${gtf} -p 24 -o ${baseout} ${bam}

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

+ 4
- 1
tasks/fastqc.wdl ファイルの表示

@@ -9,7 +9,10 @@ task qc {
}

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

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

+ 4
- 1
tasks/tophat2.wdl ファイルの表示

@@ -13,7 +13,10 @@ task tophat2 {
}
runtime {
dockerTag: docker
docker: docker
cluster: cluster
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd 200 /cromwell_root/"
}

output {

+ 4
- 1
tasks/trimmomatic.wdl ファイルの表示

@@ -12,7 +12,10 @@ task trimmomatic {
}

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

output {

読み込み中…
キャンセル
保存