Browse Source

revise input

master
stead99 4 years ago
parent
commit
62cc141364
3 changed files with 9 additions and 0 deletions
  1. +2
    -0
      tasks/fastqc.wdl
  2. +5
    -0
      tasks/fastqscreen.wdl
  3. +2
    -0
      workflow.wdl

+ 2
- 0
tasks/fastqc.wdl View File

File read1 File read1
File read2 File read2
String docker String docker
String cluster
String disk_size


command <<< command <<<
set -o pipefail set -o pipefail

+ 5
- 0
tasks/fastqscreen.wdl View File

String read1name = basename(read1,".fastq.gz") String read1name = basename(read1,".fastq.gz")
String read2name = basename(read2,".fastq.gz") String read2name = basename(read2,".fastq.gz")
String docker String docker
String cluster
String disk_size


command <<< command <<<
set -o pipefail set -o pipefail


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

+ 2
- 0
workflow.wdl View File

input: input:
read1=read1, read1=read1,
read2=read2, read2=read2,
cluster=cluster_config,
docker=fastqc.docker docker=fastqc.docker
} }


input: input:
read1=read1, read1=read1,
read2=read2, read2=read2,
cluster=cluster_config,
docker=fastqscreen.docker, docker=fastqscreen.docker,
screen_ref_dir=screen_ref_dir, screen_ref_dir=screen_ref_dir,
fastq_screen_conf=fastq_screen_conf fastq_screen_conf=fastq_screen_conf

Loading…
Cancel
Save