Skip to content

Commit

Permalink
Change to how chr is retrieved from the gvcf in extract_gvcf_variants.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
ngaddis committed May 9, 2024
1 parent 9887938 commit 20e00e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t1dgrs2_pipeline/v1.0/extract_gvcf_variants.pl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ sub flip {
!$pass_only
|| (uc($F[6]) eq "PASS")
) {
if ($F[0] =~ /chr(\d+)$/) {
if ($F[0] =~ /(\d+)$/) {
my $chr = $1;
my @keys = split(":", $F[8]);
my @values = split(":", $F[9]);
Expand Down

0 comments on commit 20e00e5

Please sign in to comment.