You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
thanks a lot for this program, I've been using it for several years.
FYI, I've discovered a small bug with an easy fix (line 48). When transcript_id is "0", the $id && $f[0]; test fails, and the corresponding line is skipped. I fixed it in my local copy by replacing next unless $id && $f[0];
with next unless (defined($id) && defined($f[0]));
on line 48.
Best regards
The text was updated successfully, but these errors were encountered:
Hello,
thanks a lot for this program, I've been using it for several years.
FYI, I've discovered a small bug with an easy fix (line 48). When transcript_id is "0", the
$id && $f[0];
test fails, and the corresponding line is skipped. I fixed it in my local copy by replacingnext unless $id && $f[0];
with
next unless (defined($id) && defined($f[0]));
on line 48.
Best regards
The text was updated successfully, but these errors were encountered: