Hi everyone,
I run into a problem when using DEXSeq estimateDispersions command.
I know the error is because I have only 1 Tumor & Normal RNA-Seq data, which means there's no replicate, but if I still want to deal with the data with DEXSeq how can I solve the problem?
Samples:
When I set the nCores=2:
There's a similar question in http://permalink.gmane.org/gmane.sci...onductor/40321 which occured the same error in another procedure. And Simon said this rarely happened due to high dispersions.
When I only use one core the error said:
I'm wondering if I could do some manipulation to avoid the error? Such as change minCount or artificially remove the genes the error mentioned? Thanks!
I run into a problem when using DEXSeq estimateDispersions command.
I know the error is because I have only 1 Tumor & Normal RNA-Seq data, which means there's no replicate, but if I still want to deal with the data with DEXSeq how can I solve the problem?
Samples:
Code:
condition replicate type T_DEXSeq.txt Tumor 1 paired-end N_DEXSeq.txt Normal 1 paired-end
Code:
Estimating Cox-Reid exon dispersion estimates using 2 cores. (Progress report: one dot per 100 genes) Error in function (classes, fdef, mtable) : unable to find an inherited method for function "fData", for signature "try-error" In addition: Warning message: In mcLapply(allecs, FUN = funtoapply, mc.cores = mc.cores) : all scheduled cores encountered errors in user code
When I only use one core the error said:
Code:
Dispersion estimation. (Progress report: one dot per 100 genes) Error in FUN(c("ENSG00000000003", "ENSG00000000419", "ENSG00000000457", : Underdetermined model; cannot estimate dispersions. Maybe replicates have not been properly specified. In addition: Warning messages: 1: In .local(object, ...) : Exons with less than 11 counts will be discarded. For more details read the documentation, parameter minCount 2: In .local(object, ...) : Genes with more than 70 testable exons will be kicked out of the analysis. For more details read the documentation, parameter maxExon
Comment