Skip to content

Commit f6f3db0

Browse files
committed
Switch default for cellranger include-introns
1 parent 873be95 commit f6f3db0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

singlecell/src/org/labkey/singlecell/run/CellRangerGexCountStep.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ public static List<ToolParameterDescriptor> getCellRangerGexParams(@Nullable Lis
124124
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--chemistry"), "chemistry", "Chemistry", "This is usually left blank, in which case cellranger will auto-detect. Example values are: SC3Pv1, SC3Pv2, SC3Pv3, SC5P-PE, SC5P-R2, or SC5P-R1", "textfield", new JSONObject(){{
125125

126126
}}, null),
127-
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.createSwitch("--include-introns"), "includeIntrons", "Include Introns", "If selected, reads from introns will be included in the counts", "ldk-simplecombo", new JSONObject(){{
127+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--include-introns"), "includeIntrons", "Include Introns", "If selected, reads from introns will be included in the counts", "ldk-simplecombo", new JSONObject(){{
128128
put("storeValues", "true;false");
129-
put("value", "false");
130-
}}, null)
129+
put("value", "true");
130+
}}, "true")
131131
);
132132

133133
if (additionalParams != null)

0 commit comments

Comments
 (0)