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

more sensible names

parent 43c38d8b
No related branches found
No related tags found
1 merge request!21Added seqstat, set minlength for cutadapt to 1.
...@@ -280,7 +280,7 @@ task Seqstat { ...@@ -280,7 +280,7 @@ task Seqstat {
String? preCommand String? preCommand
File? toolJar File? toolJar
File fastq File fastq
String outputFile String outputFilePath
Float? memory Float? memory
Float? memoryMultiplier Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0])) Int mem = ceil(select_first([memory, 4.0]))
...@@ -292,13 +292,13 @@ task Seqstat { ...@@ -292,13 +292,13 @@ task Seqstat {
command { command {
set -e -o pipefail set -e -o pipefail
${preCommand} ${preCommand}
mkdir -p ${outputFile} mkdir -p ${outputFilePath}
${toolCommand} \ ${toolCommand} \
--fastq ${fastq} \ --fastq ${fastq} \
--output ${outputFile} --output ${outputFilePath}
} }
output { output {
File seqstatsJson = outputFile File json = outputFilePath
} }
runtime { runtime {
memory: ceil(mem * select_first([memoryMultiplier, 2.0])) memory: ceil(mem * select_first([memoryMultiplier, 2.0]))
......
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