Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Fixing bug triggered for GRCh38 without chr prefix (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Aug 23, 2023
1 parent 5393f3c commit f1fcbe3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public GenomeVersion guessGenomeVersion() {
} else if (seqRecord.getSequenceLength() == CHR1_HG38_LENGTH) {
return seqRecord.getSequenceName().startsWith("chr")
? GenomeVersion.HG38
: GenomeVersion.GRCH37;
: GenomeVersion.GRCH38;
}
}
}
Expand Down

0 comments on commit f1fcbe3

Please sign in to comment.