Skip to content

Commit 2a69db9

Browse files
committed
Reduce output to seurat descriptions
1 parent 6c038fa commit 2a69db9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/src/org/labkey/singlecell/analysis/AbstractSingleCellHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,13 +1042,13 @@ else if ("NotUsed".equals(val))
10421042
}
10431043

10441044
String hashingMethods = ctx.getParams().optString("singleCell.RunCellHashing.consensusMethods");
1045-
if (hashingMethods != null)
1045+
if (StringUtils.trimToNull(hashingMethods) != null)
10461046
{
10471047
descriptions.add("Hashing: " + hashingMethods);
10481048
}
10491049

10501050
String citeNormalize = ctx.getParams().optString("singleCell.AppendCiteSeq.normalizeMethod");
1051-
if (citeNormalize != null)
1051+
if (StringUtils.trimToNull(citeNormalize) != null)
10521052
{
10531053
descriptions.add("Cite-seq Normalization: " + citeNormalize);
10541054
}

0 commit comments

Comments
 (0)