We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c038fa commit 2a69db9Copy full SHA for 2a69db9
singlecell/src/org/labkey/singlecell/analysis/AbstractSingleCellHandler.java
@@ -1042,13 +1042,13 @@ else if ("NotUsed".equals(val))
1042
}
1043
1044
String hashingMethods = ctx.getParams().optString("singleCell.RunCellHashing.consensusMethods");
1045
- if (hashingMethods != null)
+ if (StringUtils.trimToNull(hashingMethods) != null)
1046
{
1047
descriptions.add("Hashing: " + hashingMethods);
1048
1049
1050
String citeNormalize = ctx.getParams().optString("singleCell.AppendCiteSeq.normalizeMethod");
1051
- if (citeNormalize != null)
+ if (StringUtils.trimToNull(citeNormalize) != null)
1052
1053
descriptions.add("Cite-seq Normalization: " + citeNormalize);
1054
0 commit comments