Sfoglia il codice sorgente

revise input

master
stead99 4 anni fa
parent
commit
62cc141364
3 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. +2
    -0
      tasks/fastqc.wdl
  2. +5
    -0
      tasks/fastqscreen.wdl
  3. +2
    -0
      workflow.wdl

+ 2
- 0
tasks/fastqc.wdl Vedi File

@@ -2,6 +2,8 @@ task fastqc {
File read1
File read2
String docker
String cluster
String disk_size

command <<<
set -o pipefail

+ 5
- 0
tasks/fastqscreen.wdl Vedi File

@@ -6,6 +6,8 @@ task fastq_screen {
String read1name = basename(read1,".fastq.gz")
String read2name = basename(read2,".fastq.gz")
String docker
String cluster
String disk_size

command <<<
set -o pipefail
@@ -18,6 +20,9 @@ task fastq_screen {

runtime {
docker:docker
systemDisk:"cloud_ssd 40"
cluster:cluster_config
dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
}
output {
File png1 = "${read1name}_screen.png"

+ 2
- 0
workflow.wdl Vedi File

@@ -11,6 +11,7 @@ workflow {{ project_name }} {
input:
read1=read1,
read2=read2,
cluster=cluster_config,
docker=fastqc.docker
}

@@ -18,6 +19,7 @@ workflow {{ project_name }} {
input:
read1=read1,
read2=read2,
cluster=cluster_config,
docker=fastqscreen.docker,
screen_ref_dir=screen_ref_dir,
fastq_screen_conf=fastq_screen_conf

Loading…
Annulla
Salva