-
Notifications
You must be signed in to change notification settings - Fork 603
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
RSeQC: read_distribution.py
bar graph double-counts some categories
#1457
Comments
read_distribution.py
bar graph double-counts some categories
Example tool output:
Right, so to rewrite your suggestion in my own words to be sure that I understand it: we basically need to make new variables to use in the bar graph that are:
(and equivalent for Makes sense 👍🏻 Thanks for reporting! Good spot.. Phil |
Exactly ! |
@blavetn - fixed in #1464 by @ErikDanielsson. This will be released in MultiQC v1.11 in the coming days. If you're able to give it a spin in the development version before that to confirm that it looks good that would be great 👍🏻 |
Thanks for letting us know! |
The RSeQC read distribution plot is using the value reported by the tool as they are but a computing step need to be done because, according to RSeQC manual:
So it is needed to recompute:
new_TES_down_10kb = TES_down_10kb - TES_down_5kb
new_TES_down_5kb = TES_down_5kb - TES_down_1kb
new_TSS_up_10kb = TSS_up_10kb - TSS_up_5kb
new_TSS_up_5kb = TSS_up_5kb - TSS_up_1kb
Only then does:
Otherwise the percentage of all the features can be >= 100% !
The text was updated successfully, but these errors were encountered: