I was running a function:
doCimplAnalysis(data = idata, scales = scale, n_iterations = 1, BSgenome = Hsapiens, system = "SB", verbose = FALSE)
However, I encountered a error that I am not sure about:
"Error in FUN(X[[i]], ...) : no slot of name "start" for this object of class "XStringViews" Called from: FUN(X[[i]], ...) "
I have done some searching. I found that the new "XStringViews" has no the slot name, start, but the "XStringViews" of older version might have this slot name. It seems that the slot name, start, is required for doCimplAnalysis function. Thus, I would like to consult to get around this problem.
Thanks a lot !
When you post a question please include a few lines of code that reproduce the problem (ie, code that others can run and see the error you're getting). Also show the output of sessionInfo() so we can see what package versions you're using.
If you suspect old package versions you can update with biocLite(). If you think there's a problem with doCimplAnalysis() you should tag your question with the package name to draw the attention of the author.
Valerie