Skip to content
Snippets Groups Projects
Commit ffc8be9b authored by sajvanderzeeuw's avatar sajvanderzeeuw
Browse files

GC options can now be set through the config

parent 6b7aaacf
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,10 @@ import org.broadinstitute.gatk.queue.function.JavaCommandLineFunction
trait BiopetJavaCommandLineFunction extends JavaCommandLineFunction with BiopetCommandLineFunctionTrait {
executable = "java"
javaGCThreads = config("java_gc_threads")
javaGCHeapFreeLimit = config("java_gc_heap_freelimit")
javaGCTimeLimit = config("java_gc_timelimit")
override def afterGraph {
memoryLimit = config("memory_limit")
}
......
......@@ -6,7 +6,6 @@ import org.broadinstitute.gatk.utils.commandline.{ Input, Output, Argument }
class SamToFastq(val root: Configurable) extends Picard {
javaMainClass = "picard.sam.SamToFastq"
javaGCThreads = config("gcthreads", default = 2)
@Input(doc = "The input SAM or BAM files to analyze.", required = true)
var input: File = _
......
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