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 {
String? preCommand
File? toolJar
File fastq
String outputFile
String outputFilePath
Float? memory
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
......@@ -292,13 +292,13 @@ task Seqstat {
command {
set -e -o pipefail
${preCommand}
mkdir -p ${outputFile}
mkdir -p ${outputFilePath}
${toolCommand} \
--fastq ${fastq} \
--output ${outputFile}
--output ${outputFilePath}
}
output {
File seqstatsJson = outputFile
File json = outputFilePath
}
runtime {
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