Skip to content
Snippets Groups Projects
Commit 6ca33f57 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Raise memory

parent 6744e672
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,8 @@ class CatVariants(val root: Configurable) extends BiopetJavaCommandLineFunction
@Gather(classOf[org.broadinstitute.gatk.queue.function.scattergather.SimpleTextGatherFunction])
var log_to_file: File = _
override def defaultCoreMemory = 4.0
override def beforeGraph() = {
super.beforeGraph()
if (reference == null) reference = referenceFasta()
......
......@@ -29,6 +29,8 @@ class ValidateFastq(val root: Configurable) extends ToolCommandFunction {
@Input(doc = "Input R1 fastq file", required = false)
var r2Fastq: Option[File] = None
override def defaultCoreMemory = 4.0
override def cmdLine = super.cmdLine +
required("-i", r1Fastq) +
optional("-j", r2Fastq)
......
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