Skip to content
Snippets Groups Projects
Commit 6ef62774 authored by Cats's avatar Cats
Browse files

Merge branch 'develop' into BIOWDL-120

parents 59915292 51c0225b
No related branches found
No related tags found
1 merge request!70Some new tasks and memory setting changes
...@@ -15,7 +15,7 @@ task Generate { ...@@ -15,7 +15,7 @@ task Generate {
Boolean tsvOutputs = false Boolean tsvOutputs = false
String outputDir String outputDir
Reference? reference Reference? reference
Int memory = 4 Int memory = 8
Float memoryMultiplier = 2.0 Float memoryMultiplier = 2.0
} }
......
...@@ -21,10 +21,10 @@ task Fastqc { ...@@ -21,10 +21,10 @@ task Fastqc {
} }
# Chops of the .gz extension if present. # Chops of the .gz extension if present.
String name = sub(seqFile, "\.gz$","") String name = basename(sub(seqFile, "\.gz$","")) # The Basename needs to be taken here. Otherwise paths might differ between similar jobs.
# This regex chops of the extension and replaces it with _fastqc for the reportdir. # This regex chops of the extension and replaces it with _fastqc for the reportdir.
# Just as fastqc does it. # Just as fastqc does it.
String reportDir = outdirPath + "/" + sub(basename(name), "\.[^\.]*$", "_fastqc") String reportDir = outdirPath + "/" + sub(name, "\.[^\.]*$", "_fastqc")
command { command {
set -e -o pipefail set -e -o pipefail
......
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