Skip to content

Commit

Permalink
Allow SampleSpecificGenotypeFiltration to run when the filter express…
Browse files Browse the repository at this point in the history
…ion arguments dont match sample sets (#248)
  • Loading branch information
bbimber authored Jun 21, 2023
1 parent 7f69944 commit 1945712
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ public void onTraversalStart() {
String genotypeExpr = StringUtils.join(Arrays.copyOfRange(tokens, 1, tokens.length));

if (!allSetNames.contains(setName)) {
throw new GATKException("Unknown set name for filter: " + expr);
logger.warn("Unknown set name for filter, skipping: " + expr);
continue;
}

Pair<List<String>, List<String>> filters = setToFilterStrings.get(setName);
Expand Down

0 comments on commit 1945712

Please sign in to comment.