Skip to content

Commit

Permalink
Merge pull request #4 from chrisamiller/master
Browse files Browse the repository at this point in the history
uppercasing value to handle references containing lowercase letters
  • Loading branch information
chrisamiller authored May 23, 2019
2 parents c4aa9ba + fd22ccf commit 5afb4ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fpfilter.pl
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ sub read_counts_by_allele {
for(my $colCounter = 5; $colCounter < $numContents; $colCounter++) {
my $this_allele = $lineContents[$colCounter];
my @alleleContents = split(/\:/, $this_allele);
if($alleleContents[0] eq $allele) {
if(uc($alleleContents[0]) eq $allele) {
my $numAlleleContents = @alleleContents;

return("") if($numAlleleContents < 8);
Expand Down

0 comments on commit 5afb4ba

Please sign in to comment.