Skip to content
Snippets Groups Projects
Commit e2c513a9 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fixed output files of fastqc

parent 7bfb1d6a
No related branches found
No related tags found
No related merge requests found
......@@ -40,14 +40,9 @@ task fastqc {
}
output {
# Chops of the .gz extension if present.
String name = sub(seqFile, "\\.gz$","")
# This regex chops of the extension and replaces it with _fastqc for the reportdir.
# Just as fastqc does it.
String reportDir = outdirPath + "/" + sub(basename(name), "\\.[^\\.]*$", "_fastqc")
File rawReport = reportDir + "/fastqc_data.txt"
File htmlReport = reportDir + "/fastqc_report.html"
File summary = reportDir + "/summary.txt"
File rawReport = outdirPath + "/*/fastqc_data.txt"
File htmlReport = outdirPath + "/*/fastqc_report.html"
File summary = outdirPath + "/*/summary.txt"
Array[File] images = glob(outdirPath + "/*/Images/*.png")
}
......
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