Skip to content
Snippets Groups Projects
Unverified Commit c59afe49 authored by Ruben Vorderman's avatar Ruben Vorderman Committed by GitHub
Browse files

Merge pull request #106 from biowdl/BIOWDL-232

Do not extract fastqc zip by default.
parents b0b1ae2a 42da877d
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,11 @@ task Fastqc {
input {
File seqFile
String outdirPath
Boolean? casava
Boolean? nano
Boolean? noFilter
Boolean extract = true
Boolean? nogroup
Boolean casava = false
Boolean nano = false
Boolean noFilter = false
Boolean extract = false
Boolean nogroup = false
Int? minLength
String? format
File? contaminants
......@@ -19,6 +19,8 @@ task Fastqc {
Int threads = 1
String dockerTag = "0.11.7--4"
Array[File]? NoneArray
File? NoneFile
}
# Chops of the .gz extension if present.
......@@ -50,10 +52,11 @@ task Fastqc {
}
output {
File rawReport = reportDir + "/fastqc_data.txt"
File htmlReport = reportDir + "/fastqc_report.html"
File summary = reportDir + "/summary.txt"
Array[File] images = glob(reportDir + "/Images/*.png")
File? rawReport = if extract then reportDir + "/fastqc_data.txt" else NoneFile
File htmlReport = reportDir + ".html"
File reportZip = reportDir + ".zip"
File? summary = if extract then reportDir + "/summary.txt" else NoneFile
Array[File]? images = if extract then glob(reportDir + "/Images/*.png") else NoneArray
}
runtime {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment