Skip to content
Snippets Groups Projects
Commit 87c555a6 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

debugged output file

parent fa4a6785
No related branches found
No related tags found
No related merge requests found
......@@ -36,12 +36,16 @@ task fastqc {
${"--kmers " + kmers} \
${"--dir " + dir} \
${seqFile}
}
output {
String reportDir = outdirPath + "/" + sub(basename(seqFile), "..*$", "_fastqc")
# Apparently, the escape character needs to be escaped in regexes.
# This regex chops of the extension and replaces it with _fastqc for the reportdir.
# Just as fastqc does it.
String reportDir = outdirPath + "/" + sub(basename(seqFile), "\\.[^\\.]*$", "_fastqc")
File rawReport = reportDir + "/fastqc_data.txt"
File htmlReport = reportDir + "fastqc_report.html"
File htmlReport = reportDir + "/fastqc_report.html"
File summary = reportDir + "/summary.txt"
File adapterContent = reportDir + "/Images/adapter_content.png"
File duplicationLevels = reportDir + "/Images/duplication_levels.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