We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdad663 commit 3f213efCopy full SHA for 3f213ef
src/main/java/org/broadinstitute/hellbender/engine/MultiVariantWalker.java
@@ -118,6 +118,9 @@ protected void initializeDrivingVariants() {
118
}
119
} else {
120
final FeatureInput<VariantContext> featureInput = new FeatureInput<>(gatkPath);
121
+ if (drivingVariantsFeatureInputs.contains(featureInput)) {
122
+ throw new UserException.BadInput("Feature inputs must be unique: " + gatkPath);
123
+ }
124
drivingVariantsFeatureInputs.add(featureInput);
125
// Add each driving variants FeatureInput to the feature manager so that it can be queried, using a lookahead value
126
// of 0 to avoid caching because of windowed queries that need to "look behind" as well.
0 commit comments