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

some debugging

parent ac34c1f8
No related branches found
No related tags found
No related merge requests found
......@@ -20,5 +20,6 @@ task installPrefix {
}
output {
File condaEnvPath=prefix
File condaJson=stdout()
}
}
......@@ -97,7 +97,7 @@ task cutadapt {
${read1} ${read2}
}
output{
File report = file(stdout())
File report = stdout()
File cutRead1 = read1output
File? cutRead2 = read2output
File? tooLongOutput=tooLongOutputPath
......
......@@ -39,7 +39,7 @@ task fastqc {
}
output {
String reportDir = outdirPath + "/" + sub(basename(seqFile),"\..*$","_fastqc")
String reportDir = outdirPath + "/" + sub(basename(seqFile), "..*$", "_fastqc")
File rawReport = reportDir + "/fastqc_data.txt"
File htmlReport = reportDir + "fastqc_report.html"
File summary = reportDir + "/summary.txt"
......
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