Skip to content

Commit 524fccc

Browse files
committed
Remove extra space from argument
1 parent 8bfe65a commit 524fccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/bampostprocessing/MarkDuplicatesStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public Provider()
4040
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("MAX_RECORDS_IN_RAM"), "maxRecordsInRam", "Max Records in RAM", "When writing files that need to be sorted, this will specify the number of records stored in RAM before spilling to disk. Increasing this number reduces the number of file handles needed to sort the file, and increases the amount of RAM needed.", "ldk-integerfield", new JSONObject(){{
4141
put("minValue", 0);
4242
}}, null),
43-
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("SORTING_COLLECTION_SIZE_RATIO "), "sortingCollectionSizeRatio", "Sorting Collection Size Ratio", "This number, plus the maximum RAM available to the JVM, determine the memory footprint used by some of the sorting collections. If you are running out of memory, try reducing this number. Default is 0.25", "ldk-numberfield", new JSONObject(){{
43+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("SORTING_COLLECTION_SIZE_RATIO"), "sortingCollectionSizeRatio", "Sorting Collection Size Ratio", "This number, plus the maximum RAM available to the JVM, determine the memory footprint used by some of the sorting collections. If you are running out of memory, try reducing this number. Default is 0.25", "ldk-numberfield", new JSONObject(){{
4444
put("minValue", 0);
4545
put("maxValue", 1);
4646
put("decimalPrecision", 2);

0 commit comments

Comments
 (0)