Dear all,
I have a large RNA-seq data set with 63 samples in 12 condition with different number of replicates. I want to run R on the server to make it faster, but I have this error.
Would you please help me. error:
"Error in lf[[1]] : subscript out of bounds
Calls: DEXSeqDataSetFromHTSeq
Execution halted"
I have R version 3.2.0. here is a short example of the codes I am using:
require("methods")
library("DEXSeq")
library(parallel)
countFiles=list.files(inDir, pattern="*dexseq_count.txt", full.names=TRUE)
flattenedFile = list.files(inDir, pattern="Genecode.v19.DEXSeq.exon-introns.gtf",full.names=TRUE)
sampleTable = data.frame(row.names=factor(c("C1675", "C1492", "D0742", "D0743", "C1670", "C1671")),condition=factor(c("CD_SIG_b", "CD_SIG_nb", "CD_TILE_b", "CD_TILE_b", "CD_TILE_nb", "CD_TILE_nb")),replicate=factor(c("1","2","1","2","1","2")), type=factor(c(rep("paired-end",6))),sex=factor(c("w", "w", "m", "m", "w", "w"))).
Many thanks,
Hi Rahel,
You seem to be double posting in the forum, which makes the problem difficult to trace. Could you show the first lines of your annotation file as well as your count files?
Alejandro