Entering edit mode
Has anyone else encountered any issues with using mm10 in the goseq package:
> pwf <- nullp(genes, "mm10", "geneSymbol") Can't find mm10/geneSymbol length data in genLenDataBase... Found the annotaion package, TxDb.Mmusculus.UCSC.mm10.knownGene Trying to get the gene lengths from it. Warning message: In pcls(G) : initial point very close to some inequality constraints
mm9 works absolutely fine with geneSymbol but mm10 does not. Is this a bug?
Is this really an error? It looks like it couldn't find the gene length in a the database, so it grabbed the TxDB and calculated them from there - which sounds sensible. If you try to find only the gene lengths using
getlength()
does it work as expected? e.g.The warning is related to the
pcls
function in themgcv
package, which is to do with the calculations afterwards, not finding the gene lengths.Did you install the annotation package?