Skip to content
Snippets Groups Projects
Unverified Commit f3b6fa09 authored by Ruben Vorderman's avatar Ruben Vorderman Committed by GitHub
Browse files

Merge pull request #35 from biowdl/fix_validateFastq

Add missing rquired inputs
parents f7ac6150 70216915
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ task BaseCounter {
}
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(toolJar)
then "java -Xmx" + mem + "G -jar " +toolJar
else "biopet-basecounter -Xmx" + mem + "G"
......@@ -135,6 +136,7 @@ task FastqSplitter {
}
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(toolJar)
then "java -Xmx" + mem + "G -jar " +toolJar
else "biopet-fastqsplitter -Xmx" + mem + "G"
......@@ -216,6 +218,7 @@ task SampleConfig {
String? readgroup
String? jsonOutputPath
String? tsvOutputPath
Float? memory
Float? memoryMultiplier
}
......@@ -331,6 +334,9 @@ task ValidateAnnotation {
File? refRefflat
File? gtfFile
File refFasta
File refFastaIndex
File refDict
Float? memory
Float? memoryMultiplier
}
......@@ -398,7 +404,10 @@ task ValidateVcf {
String? preCommand
File? toolJar
File vcfFile
File vcfIndex
File refFasta
File refFastaIndex
File refDict
Float? memory
Float? memoryMultiplier
......
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