Skip to content

Commit

Permalink
Merge pull request #683 from opencb/TASK-5457
Browse files Browse the repository at this point in the history
TASK-5457 Fix CellBase annotation queries for SV variants
  • Loading branch information
jtarraga authored Jan 24, 2024
2 parents 3e4d16b + 32a5ecf commit 8be81e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,9 @@ private List<VariantAnnotation> runAnnotationProcess(List<Variant> normalizedVar
}
}
} catch (Exception e) {
e.printStackTrace();
variantAnnotation.setDisplayConsequenceType(VariantAnnotationUtils.FUNCTION_UNCERTAIN_VARIANT);
variantAnnotation.setConsequenceTypes(Collections.emptyList());
logger.error("Something wrong happened when calculation consequence type for variant " + variant, e);
throw e;
}
}

Expand Down

0 comments on commit 8be81e7

Please sign in to comment.