Skip to content
Snippets Groups Projects
Commit 7c39cc66 authored by Cats's avatar Cats
Browse files

give sampleConfig more memory

parent f7d97af6
No related branches found
No related tags found
1 merge request!8Run time settings and additional adjustments
...@@ -62,7 +62,7 @@ task SampleConfig { ...@@ -62,7 +62,7 @@ task SampleConfig {
set -e -o pipefail set -e -o pipefail
${preCommand} ${preCommand}
mkdir -p . ${"$(dirname " + jsonOutputPath + ")"} ${"$(dirname " + tsvOutputPath + ")"} mkdir -p . ${"$(dirname " + jsonOutputPath + ")"} ${"$(dirname " + tsvOutputPath + ")"}
java -Xmx2G -jar ${tool_jar} \ java -Xmx4G -jar ${tool_jar} \
-i ${sep="-i " inputFiles} \ -i ${sep="-i " inputFiles} \
${"--sample " + sample} \ ${"--sample " + sample} \
${"--library " + library} \ ${"--library " + library} \
...@@ -77,6 +77,10 @@ task SampleConfig { ...@@ -77,6 +77,10 @@ task SampleConfig {
File? tsvOutput = tsvOutputPath File? tsvOutput = tsvOutputPath
Object values = if (defined(tsvOutput) && size(tsvOutput) > 0) then read_map(tsvOutput) else { "": "" } Object values = if (defined(tsvOutput) && size(tsvOutput) > 0) then read_map(tsvOutput) else { "": "" }
} }
runtime {
memory: 6
}
} }
task BaseCounter { task BaseCounter {
......
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