Skip to content

Commit

Permalink
return ArrayList from getComplexAnnotationIntervals
Browse files Browse the repository at this point in the history
  • Loading branch information
epiercehoffman committed Feb 15, 2024
1 parent ecab916 commit 40569a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -570,9 +570,9 @@ protected static List<SVSegment> parseComplexIntervals(final List<String> cpxInt
* protein-coding consequences
*/
@VisibleForTesting
protected static List<SVSegment> getComplexAnnotationIntervals(final List<SVSegment> cpxIntervals,
protected static ArrayList<SVSegment> getComplexAnnotationIntervals(final List<SVSegment> cpxIntervals,
final GATKSVVCFConstants.ComplexVariantSubtype complexType) {
final List<SVSegment> segments = new ArrayList<>(cpxIntervals.size());
final ArrayList<SVSegment> segments = new ArrayList<>(cpxIntervals.size());
final List<SimpleInterval> dupIntervals = new ArrayList<>(cpxIntervals.size());
SimpleInterval inversionIntervalToAdjust = null;
boolean keepSegment;
Expand Down

0 comments on commit 40569a7

Please sign in to comment.