Skip to content

Commit

Permalink
Update error message for required pep_match columns
Browse files Browse the repository at this point in the history
  • Loading branch information
helensch committed Mar 22, 2021
1 parent 5c9ff2a commit 79a5a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbNSFP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ sub new {
if ($self->{pep_match}) {
# Check the columns for the aa are there
foreach my $h (qw(aaalt aaref)) {
die("ERROR: Could not find the required column $h in $file\n") unless grep{$_ eq $h} @{$self->{headers}};
die("ERROR: Could not find the required column $h for pep_match option in $file\n") unless grep{$_ eq $h} @{$self->{headers}};
}
}

Expand Down

0 comments on commit 79a5a28

Please sign in to comment.