Skip to content

Commit 32a5ecf

Browse files
committed
lib: catch the exception, but do not propagate it; instead, continue processing the variant annotation, #TASK-5457
1 parent 3e4d16b commit 32a5ecf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cellbase-lib/src/main/java/org/opencb/cellbase/lib/variant/annotation/VariantAnnotationCalculator.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -611,9 +611,9 @@ private List<VariantAnnotation> runAnnotationProcess(List<Variant> normalizedVar
611611
}
612612
}
613613
} catch (Exception e) {
614-
e.printStackTrace();
614+
variantAnnotation.setDisplayConsequenceType(VariantAnnotationUtils.FUNCTION_UNCERTAIN_VARIANT);
615+
variantAnnotation.setConsequenceTypes(Collections.emptyList());
615616
logger.error("Something wrong happened when calculation consequence type for variant " + variant, e);
616-
throw e;
617617
}
618618
}
619619

0 commit comments

Comments
 (0)