Hi,
I've been following the user's guide for Limma voom to perform differential splicing analysis and I have encountered a few problems.
Firstly, In chapter 15.4 the following line of code produces and error:
If I perform filtering using the following code which I believe does something similar
And then continue with the following as stated in the documentation I get an error:
Is there something (perhaps very stupid) that I'm doing wrong??
Thanks in advance
I've been following the user's guide for Limma voom to perform differential splicing analysis and I have encountered a few problems.
Firstly, In chapter 15.4 the following line of code produces and error:
Code:
dge <- dge[A>10,,keep.lib.sizes=FALSE] Error in object[[a]][i, , drop = FALSE] : incorrect number of dimensions
Code:
isexpr <- rowSums(dge$counts) > 10 x <- x[isexpr,] dge <- calcNormFactors(x)
Code:
v <- voom(dge,design,plot=TRUE) fit <- lmFit(v, design) ex <- diffSplice(fit, geneid="GeneID") Error: could not find function "diffSplice"
Thanks in advance
Comment