I'm trying to pullout the data of my chromosome size which is stored on a .csv. Went I try to graph that information I get the next error: "Error in (function (classes, fdef, mtable) : unable to find an inherited method for function 'layout_circle' for signature '"data.frame"
This is what I'm using:
library(ggbio)
ChrLen2 = read.csv("ChrLen2.csv") #Change name of the file
p <- ggplot() + layout_circle(ChrLen2, geom = "ideo", fill = "gray70",
radius = 30, trackWidth = 4)
Is there a way I can call a file into my code?
In advance, thank you!
Check the help manual for ggbio, you need to provide a GRanges object to plot, and within it you specify the chromosome length information, for example: