Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
leexgh committed Aug 27, 2024
1 parent 71eebcd commit d45822f
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,15 @@ else if (variantAnnotation != null && variantAnnotation.getIntergenicConsequence
// pick the highest priority consequence from the intergenic consequences
// get every getConsequenceTerms() from each intergenic consequence and put in a list
variantClassification = this.resolveVariantClassification(
this.consequencePrioritizer.pickHighestPriorityConsequence(variantAnnotation.getIntergenicConsequences().stream().flatMap(consequence -> consequence.getConsequenceTerms().stream()).collect(Collectors.toList())),
variantType, isInframe);
this.consequencePrioritizer.pickHighestPriorityConsequence(
variantAnnotation.getIntergenicConsequences()
.stream()
.flatMap(consequence -> consequence.getConsequenceTerms()
.stream())
.collect(Collectors.toList())),
variantType,
isInframe
);
}
// use the most severe consequence to resolve the variant classification
else if (variantAnnotation != null)
Expand Down

0 comments on commit d45822f

Please sign in to comment.