Skip to content

Commit

Permalink
Fix typo in a filter name output by LiftoverVcf (#1842)
Browse files Browse the repository at this point in the history
* One of the filters that LiftoverVcf outputs was misspelled:  Should be "Intervals" instead of "Intevals"
  IndelStraddlesMultipleIntevals -> IndelStraddlesMultipleIntervals 
* fixes #1841
  • Loading branch information
lbergelson authored Nov 15, 2022
1 parent b65515c commit 4f7bb95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/picard/vcf/LiftoverVcf.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public class LiftoverVcf extends CommandLineProgram {
* Filter name to use when an indel cannot be lifted over since it straddles two intervals in a chain which means
* that it is unclear what are the right alleles to be used.
*/
public static final String FILTER_INDEL_STRADDLES_TWO_INTERVALS = "IndelStraddlesMultipleIntevals";
public static final String FILTER_INDEL_STRADDLES_TWO_INTERVALS = "IndelStraddlesMultipleIntervals";

/**
* Filters to be added to the REJECT file.
Expand Down Expand Up @@ -584,4 +584,4 @@ private void tryToAddVariant(final VariantContext vc, final ReferenceSequence re
addAndTrack(vc, source);
}
}
}
}

0 comments on commit 4f7bb95

Please sign in to comment.