Genes of Interest in a Multi-Tissue Analysis
0
0
Entering edit mode
6 weeks ago
Gabriel • 0

I am conducting an analysis in DESeq2 of different parts of a plant (leaf, stem, root,..) in replicates. I have created a DESeqDataSet (dds) of the whole gene count table and am using VST-transformed counts to profile each sample. Now, I want to select only the genes from my list and view the profile of each sample for this subset of genes of interest.

Here is my code:

ddsAll <- DESeqDataSetFromMatrix(countData = round(tissue_quant),
                              colData = coldata,
                              design = ~ tissue + 0)   

ddsAll <- DESeq(ddsAll)

vsd <- vst(ddsAll, blind = FALSE, nsub = sum( rowMeans( counts(ddsAll, normalized=TRUE)) > 20 ))

It's possible create an subset object from vsd with only my genes of interest?

Thank you for your help.

VST DGE DESeq2 • 135 views
ADD COMMENT

Login before adding your answer.

Traffic: 2061 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