You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (ret.consensusMethods != null && !ret.consensusMethods.isEmpty())
191
191
{
192
-
if (!ret.methods.containsAll(ret.consensusMethods))
192
+
if (!newHashSet<>(ret.methods).containsAll(ret.consensusMethods))
193
193
{
194
194
thrownewPipelineJobException("All consensusMethods must be present in methods: " + ret.consensusMethods.stream().map(CALLING_METHOD::name).collect(Collectors.joining(",")));
195
195
}
@@ -326,6 +326,7 @@ public Set<String> getAllowableBarcodeNames() throws PipelineJobException
0 commit comments