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
Plotting a few sample coordinates, appears they are plotting out of range of the chromosomal boundaries. I double checked to ensure none of these coordinates are outside of the boundary
myGranges
GRanges object with 494 ranges and 0 metadata columns:
seqnames ranges strand
seqinfo: 23 sequences from an unspecified genome; no seqlengths
max(end(myGranges))
[1] 249123244
hg19sub
GRanges object with 22 ranges and 0 metadata columns:
seqnames ranges strand
[1] 1 1-249250621 *
...
...
As you can see, none of the end coordinates of my custom ranges are outside the bounds of the chromosome, yet I see lines appeareing to the left of chr1 (relative to the ideogram):
Here is the function call to generate the plot:
p <- ggbio() + circle(myGranges, geom = "rect", color = "darkorange",size=0.1) + circle(hg19sub, geom = "ideo", fill = "gray70") + circle(hg19sub, geom = "text", aes(label = seqnames), vjust = 0, size = 3)
Screenshot of output:
Only showing chr1, it gets worse in terms of moving out of boundaries if I include more hits
I tried this with the test data (mut.gr) shown in the package vignette, and that wasn't the case, so not sure what's going on
The text was updated successfully, but these errors were encountered:
Plotting a few sample coordinates, appears they are plotting out of range of the chromosomal boundaries. I double checked to ensure none of these coordinates are outside of the boundary
seqinfo: 23 sequences from an unspecified genome; no seqlengths
Here is the function call to generate the plot:
p <- ggbio() + circle(myGranges, geom = "rect", color = "darkorange",size=0.1) + circle(hg19sub, geom = "ideo", fill = "gray70") + circle(hg19sub, geom = "text", aes(label = seqnames), vjust = 0, size = 3)
Screenshot of output:
![image](https://user-images.githubusercontent.com/9615730/68886874-fa9b9880-06e5-11ea-9e31-215d7f2ab7ad.png)
Only showing chr1, it gets worse in terms of moving out of boundaries if I include more hits
I tried this with the test data (mut.gr) shown in the package vignette, and that wasn't the case, so not sure what's going on
The text was updated successfully, but these errors were encountered: