Skip to content

Commit

Permalink
Bugfix to CellRangerVDJWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Aug 25, 2024
1 parent 82797da commit 7008b39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public static CellHashingParameters createFromJson(BARCODE_TYPE type, File webse
ret.majorityConsensusThreshold = params.get("majorityConsensusThreshold") == null ? null : params.getDouble("majorityConsensusThreshold");
ret.minAllowableDoubletRateFilter = params.get("minAllowableDoubletRateFilter") == null ? null : params.getDouble("minAllowableDoubletRateFilter");
ret.callerDisagreementThreshold = params.get("callerDisagreementThreshold") == null ? null : params.getDouble("callerDisagreementThreshold");
ret.doTSNE = params.get("doTSNE") == null || params.optBoolean("doTSNE", false);
ret.doTSNE = params.optBoolean("doTSNE", false);
ret.retainRawCountFile = params.optBoolean("retainRawCountFile", true);
ret.failIfUnexpectedHtosFound = params.optBoolean("failIfUnexpectedHtosFound", true);
ret.htoReadset = htoReadset;
Expand Down

0 comments on commit 7008b39

Please sign in to comment.