Skip to content

Commit 7008b39

Browse files
committed
Bugfix to CellRangerVDJWrapper
1 parent 82797da commit 7008b39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public static CellHashingParameters createFromJson(BARCODE_TYPE type, File webse
170170
ret.majorityConsensusThreshold = params.get("majorityConsensusThreshold") == null ? null : params.getDouble("majorityConsensusThreshold");
171171
ret.minAllowableDoubletRateFilter = params.get("minAllowableDoubletRateFilter") == null ? null : params.getDouble("minAllowableDoubletRateFilter");
172172
ret.callerDisagreementThreshold = params.get("callerDisagreementThreshold") == null ? null : params.getDouble("callerDisagreementThreshold");
173-
ret.doTSNE = params.get("doTSNE") == null || params.optBoolean("doTSNE", false);
173+
ret.doTSNE = params.optBoolean("doTSNE", false);
174174
ret.retainRawCountFile = params.optBoolean("retainRawCountFile", true);
175175
ret.failIfUnexpectedHtosFound = params.optBoolean("failIfUnexpectedHtosFound", true);
176176
ret.htoReadset = htoReadset;

0 commit comments

Comments
 (0)