Skip to content

Commit 2eda1ad

Browse files
committed
Bugfix to bbmap
1 parent 38b2b53 commit 2eda1ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/alignment/BBMapWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public File doAlignment(File inputFastq1, @Nullable File inputFastq2, File outpu
246246
Integer maxRam = SequencePipelineService.get().getMaxRam();
247247
if (maxRam != null)
248248
{
249-
args.add("-Xmx=" + maxRam);
249+
args.add("-Xmx=" + maxRam + "g");
250250
}
251251

252252
Integer maxThreads = SequencePipelineService.get().getMaxThreads(getLogger());

0 commit comments

Comments
 (0)