In my analysis, I do not want to compare exon based two conditions. I just want to get the expression value for each exon in each sample. How can I do it using DEXSeq?
dxd <- DEXSeqDataSetFromHTSeq(list.files("raw_counts/", full.names=T),
sampleData = sampleTable,
design = ~ 1, # Here is fine?
flattenedfile = "../scrips/genome.gff")
dxd <- estimateSizeFactors(dxd)
dxd <- estimateDispersions(dxd)
What is the next step?