Skip to content

Commit de48ea3

Browse files
committed
Update param defaults
1 parent 19aec13 commit de48ea3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/api-src/org/labkey/api/singlecell/CellHashingService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public static CellHashingService.CellHashingParameters createFromStep(SequenceOu
132132
ret.callerDisagreementThreshold = step.getProvider().getParameterByName("callerDisagreementThreshold").extractValue(ctx.getJob(), step.getProvider(), step.getStepIdx(), Double.class, null);
133133
ret.doTSNE = step.getProvider().getParameterByName("doTSNE").extractValue(ctx.getJob(), step.getProvider(), step.getStepIdx(), Boolean.class, false);
134134
ret.doNotAllowResume = step.getProvider().getParameterByName("doNotAllowResume").extractValue(ctx.getJob(), step.getProvider(), step.getStepIdx(), Boolean.class, false);
135-
ret.retainRawCountFile = step.getProvider().getParameterByName("retainRawCountFile").extractValue(ctx.getJob(), step.getProvider(), step.getStepIdx(), Boolean.class, true);
135+
ret.retainRawCountFile = step.getProvider().getParameterByName("retainRawCountFile").extractValue(ctx.getJob(), step.getProvider(), step.getStepIdx(), Boolean.class, false);
136136
ret.failIfUnexpectedHtosFound = step.getProvider().getParameterByName("failIfUnexpectedHtosFound").extractValue(ctx.getJob(), step.getProvider(), step.getStepIdx(), Boolean.class, true);
137137
ret.htoReadset = htoReadset;
138138
ret.parentReadset = parentReadset;
@@ -177,7 +177,7 @@ public static CellHashingParameters createFromJson(BARCODE_TYPE type, File webse
177177
ret.callerDisagreementThreshold = params.get("callerDisagreementThreshold") == null ? null : params.getDouble("callerDisagreementThreshold");
178178
ret.doTSNE = params.optBoolean("doTSNE", false);
179179
ret.doNotAllowResume = params.optBoolean("doNotAllowResume", false);
180-
ret.retainRawCountFile = params.optBoolean("retainRawCountFile", true);
180+
ret.retainRawCountFile = params.optBoolean("retainRawCountFile", false);
181181
ret.failIfUnexpectedHtosFound = params.optBoolean("failIfUnexpectedHtosFound", true);
182182
ret.htoReadset = htoReadset;
183183
ret.parentReadset = parentReadset;

0 commit comments

Comments
 (0)