-
Notifications
You must be signed in to change notification settings - Fork 608
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
Fixed bug when other fields also have a "-" instead of an integer. #1656
Conversation
Failing because of #1655 |
The existing code has a Could you attach a file that triggers the error? I guess it must be being raised from somewhere else in the code. I generally try not to replace |
The I can implement the |
Yeah, I think I did it that way because I was handling more than one error at once - see #1597 (both I more meant that I didn't see why that chunk of code needed editing if it was already behaving in the correct way. But you answered my question there - it's the Please do use |
Also works with example file from #1597. |
Great stuff, thanks! Just tried locally and looks good with one exception. I had thought that passing Versus before when it was a mixture of being omitted and showing as What do you think about adjusting the code to simply not set these keys? Instead of setting them to Apologies for going back on myself, poor memory of exactly how the MultiQC internals work.. |
Sure, as long as it is consistent. 😄 |
Absolutely! Yes that was surely not intentional. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Many thanks, looking great!
While parsing a VEP stats file from SV calls, got an error:
It seems it was due to a line in the stats file that had:
The fix was to always check if the value is
-
before converting toint
.CHANGELOG.md
has been updated