DEXSeq: How to get expresion value for each exon?
2
0
Entering edit mode
Peter • 0
@peter-6856
Last seen 3.9 years ago
China

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?

DEXSeq • 1.5k views
ADD COMMENT
0
Entering edit mode
Alejandro Reyes ★ 1.9k
@alejandro-reyes-5124
Last seen 1 day ago
Novartis Institutes for BioMedical Rese…

Hi Peter,

What do you mean with expression value for each exon? If you mean the read counts in your exon (maybe normalized for sequencing depth), you could just do:

counts(dxd, normalized=TRUE)

Alejandro

ADD COMMENT
0
Entering edit mode
Peter • 0
@peter-6856
Last seen 3.9 years ago
China

Thanks. The step design = ~ 1 is fine?

 

Could we use varianceStabilizingTransformation function here?

ADD COMMENT

Login before adding your answer.

Traffic: 737 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6