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
However, I want to set a max value of 10 and then add magenta to the top indicating that the peak goes above the max value.
So I use two bedgraphs coming from the same file, the first one with max_value set to something higher than 10 and the second one with max_value set to 10 and over_previous set to true:
pyGenomeTracks --tracks issue.ini --region chr1:50000000-100000000 -o issue.png --dpi 130
and then there are two bugs:
The first is that the first bed graph does not go above the max_value 10 even though it has a max_value set to 15. The second bug is that the two tracks should be identical, with orange overlaying the magenta. There should not be any magenta at all unless the height of the track is above 10.
If I am missing something and this is not a bug, I would like to know.
Thank you for the great tool!
The text was updated successfully, but these errors were encountered:
Also, there is a bug I think when I do share-y the y-axis label uses the max value of the overlayed track even though the actual value is the original track's max_value.
Hi,
The logic of overlaying track is not easy to catch as the one of min_valuemax_value.
With the ini file you provided, the software.
Create a track space of 2cm (height = 2 in the [bg1]).
Plots in magenta the bigwig and fix the plotting value (y axis) to 0-15
As you put overlay_previous = share-y, the second [bg2] instructions are plotted into the same 2cm track space. So it plots in orange using the same y-axis as the first track (share-y) and at the end it put the plotting value of the track space (so impact both the magenta and the orange) to 0-10.
pyGenomeTracks only display data, do not 'modify' them so it cannot 'cut'.
If I understand well what you want, you should not overlay them. I would do:
First of all, great tool.
pyGenomeTracks --version
python --version
pyGenomeTracks 3.8
Python 3.10.12
When I have a configuration file with one bed graph with max_value set to auto I get the following image:
pyGenomeTracks --tracks issue.one_file.ini --region chr1:50000000-100000000 -o issue.one_file.png --dpi 130
However, I want to set a max value of 10 and then add magenta to the top indicating that the peak goes above the max value.
So I use two bedgraphs coming from the same file, the first one with max_value set to something higher than 10 and the second one with max_value set to 10 and over_previous set to true:
pyGenomeTracks --tracks issue.ini --region chr1:50000000-100000000 -o issue.png --dpi 130
and then there are two bugs:
The first is that the first bed graph does not go above the max_value 10 even though it has a max_value set to 15. The second bug is that the two tracks should be identical, with orange overlaying the magenta. There should not be any magenta at all unless the height of the track is above 10.
If I am missing something and this is not a bug, I would like to know.
Thank you for the great tool!
The text was updated successfully, but these errors were encountered: