Browse Source

read2

master
LUYAO REN 5 years ago
parent
commit
918d603642
1 changed files with 0 additions and 6 deletions
  1. +0
    -6
      tasks/fastqscreen.wdl

+ 0
- 6
tasks/fastqscreen.wdl View File

task fastq_screen { task fastq_screen {
File read1 File read1
File read2
File screen_ref_dir File screen_ref_dir
File fastq_screen_conf File fastq_screen_conf
String read1name = basename(read1,".fastq.gz") String read1name = basename(read1,".fastq.gz")
String read2name = basename(read2,".fastq.gz")
String docker String docker
String cluster_config String cluster_config
String disk_size String disk_size
mkdir -p /cromwell_root/tmp mkdir -p /cromwell_root/tmp
cp -r ${screen_ref_dir} /cromwell_root/tmp/ cp -r ${screen_ref_dir} /cromwell_root/tmp/
fastq_screen --aligner bowtie2 --conf ${fastq_screen_conf} --top 100000 --threads $nt ${read1} fastq_screen --aligner bowtie2 --conf ${fastq_screen_conf} --top 100000 --threads $nt ${read1}
fastq_screen --aligner bowtie2 --conf ${fastq_screen_conf} --top 100000 --threads $nt ${read2}
>>> >>>


runtime { runtime {
File png1 = "${read1name}_screen.png" File png1 = "${read1name}_screen.png"
File txt1 = "${read1name}_screen.txt" File txt1 = "${read1name}_screen.txt"
File html1 = "${read1name}_screen.html" File html1 = "${read1name}_screen.html"
File png2 = "${read2name}_screen.png"
File txt2 = "${read2name}_screen.txt"
File html2 = "${read2name}_screen.html"
} }
} }

Loading…
Cancel
Save