Browse Source

更新 'workflow.wdl'

master
meng 2 years ago
parent
commit
88f6719e71
1 changed files with 26 additions and 1 deletions
  1. +26
    -1
      workflow.wdl

+ 26
- 1
workflow.wdl View File

import "./tasks/fastp.wdl" as fastp
import "./tasks/fastp.wdl" as fastp

workflow {{ project_name }} {
input{
Array[String] samples
File fastq_dir
String docker
String cluster_config
String disk_size

}

call fastp.fastp as fastp{
input:
samples=samples,
fastq_dir=fastq_dir,
docker=docker,
cluster_config=cluster_config,
disk_size=disk_size
}


}

Loading…
Cancel
Save