Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug when transcript_id is "0" in input #2

Open
julienlag opened this issue Mar 31, 2018 · 0 comments
Open

Bug when transcript_id is "0" in input #2

julienlag opened this issue Mar 31, 2018 · 0 comments

Comments

@julienlag
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant