We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d68e549 commit e8801ecCopy full SHA for e8801ec
singlecell/api-src/org/labkey/api/singlecell/CellHashingService.java
@@ -133,8 +133,10 @@ public static CellHashingService.CellHashingParameters createFromStep(SequenceOu
133
if (methodStr2 != null)
134
{
135
ret.consensusMethods = extractMethods(methodStr2);
136
-
137
- throw new PipelineJobException("All consensusMethods must be present in methods: " + methodStr2);
+ if (!ret.methods.containsAll(ret.consensusMethods))
+ {
138
+ throw new PipelineJobException("All consensusMethods must be present in methods: " + methodStr2);
139
+ }
140
}
141
142
0 commit comments