Skip to content

Commit 45cfa53

Browse files
committed
Add limitBAMsortRAM for STAR
1 parent 6a26dd8 commit 45cfa53

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,9 @@ public Provider()
461461
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--outFilterMatchNminOverLread"), "outFilterMatchNminOverLread", "Min Matched Based (Over Read Length)", "Alignment will be output only if the number of matched bases is higher than or equal to this value, normalized to read length (or sum of paired read length). Defaults to 0.66", "ldk-numberfield", new JSONObject(){{
462462
put("minValue", 0);
463463
put("maxValue", 1);
464+
}}, null),
465+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--limitBAMsortRAM"), "limitBAMsortRAM", "The maximum available RAM (bytes) for sorting BAM. This should generally be left blank, where it will be automatically set. In certain cases, such as genomes with extremely high coverage contigs, jobs will error and require a higher value for this. ", "", "ldk-integerfield", new JSONObject(){{
466+
put("minValue", 0);
464467
}}, null)
465468
), PageFlowUtil.set("sequenceanalysis/field/GenomeFileSelectorField.js"), "https://github.com/alexdobin/STAR/", true, true, ALIGNMENT_MODE.MERGE_THEN_ALIGN);
466469

0 commit comments

Comments
 (0)