Skip to content

Commit

Permalink
add missing colon
Browse files Browse the repository at this point in the history
  • Loading branch information
bprize15 committed Oct 1, 2024
1 parent d1541a0 commit a14041e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ function areSameAlterationsWithDifferentTranscripts(mutationName: string) {
const alt1 = alterations[0].trim().toLowerCase();
const alt2 = alterations[1].trim().toLowerCase();
const grch37Prefix = 'grch37:';
const grch38Prefix = 'grch38';
const grch38Prefix = 'grch38:';

if (
(alt1.startsWith(grch37Prefix) && alt2.startsWith(grch38Prefix)) ||
Expand Down

0 comments on commit a14041e

Please sign in to comment.