-
Notifications
You must be signed in to change notification settings - Fork 54
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
Why is the line between two exons not shown when the inclusive isoform count is 0? #112
Comments
The junction count is adjusted for the number of bam files in the group here: https://github.com/Xinglab/rmats2sashimiplot/blob/v3.0.0/src/MISO/misopy/sashimi_plot/plot_utils/plot_gene.py#L91 That adjustment could result in a junction count of 0. For example if there are 3 bam files in the group and only 1 junction count in just 1 of the bam files. That situation would result in the '0' being shown but without a line. It looks like the line width would be calculated as 0: https://github.com/Xinglab/rmats2sashimiplot/blob/v3.0.0/src/MISO/misopy/sashimi_plot/plot_utils/plot_gene.py#L174 A different situation is if there are actually no counts for that junction. In that case nothing would be displayed |
Thank you so much for your response! I believe I have a clearer understanding now. Your explanation helped me grasp the adjustment made for junction counts in the code and why '0' might appear without a line. I appreciate your help! |
Hello, 1.Why the anatomy of plot in my example is different than shown on https://github.com/Xinglab/rmats2sashimiplot. > Example>Using a group file? My code is like Thank you. |
|
Hi Eric, |
The code posted before used --group-info. In that case the junction count shown in the sashimiplot is the average over all bams in the group: https://github.com/Xinglab/rmats2sashimiplot/blob/v3.0.0/src/MISO/misopy/sashimi_plot/plot_utils/plot_gene.py#L91 You can plot without --group-info to see the counts in each bam. Also the supporting read counts from rMATS are in RI.MATS.JC.txt. The read counting is different between rMATS and rmats2sashimiplot: #33 |
Hello, I have two questions about the sashimiplot:
Why is the line between two exons not shown when the inclusive isoform count is 0?
Why is there a lack of corresponding data display in the 23Y381-1 case section?
The text was updated successfully, but these errors were encountered: