DE विश्लेषण का ओवरव्यू

R में Bioconductor के साथ RNA-Seq

Mary Piper

Bioinformatics Consultant and Trainer

डेटासेट/प्रश्न की समीक्षा करें

फाइब्रोसिस प्रयोग

R में Bioconductor के साथ RNA-Seq

DE विश्लेषण का ओवरव्यू

DESeq2 वर्कफ़्लो

R में Bioconductor के साथ RNA-Seq

DESeq2 वर्कफ़्लो - मॉडल

R में Bioconductor के साथ RNA-Seq

DESeq2 वर्कफ़्लो: मॉडल

# Create DESeq object 
dds_wt <- DESeqDataSetFromMatrix(countData = wt_rawcounts,
                              colData = reordered_wt_metadata,
                              design = ~ condition)

DESeq ऑब्जेक्ट

R में Bioconductor के साथ RNA-Seq

DESeq2 वर्कफ़्लो: डिज़ाइन फॉर्मूला

उदाहरण मेटाडेटा

# Design formula 
~ strain + sex + treatment
R में Bioconductor के साथ RNA-Seq

DESeq2 वर्कफ़्लो: डिज़ाइन फॉर्मूला

उदाहरण मेटाडेटा

# Design formula 
~ strain + sex + treatment + sex:treatment
R में Bioconductor के साथ RNA-Seq

DESeq2 वर्कफ़्लो: रनिंग

# Run analysis
dds_wt <- DESeq(dds_wt)
using pre-existing size factors
estimating dispersions
gene-wise dispersion estimates
mean-dispersion relationship
final dispersion estimates
fitting model and testing

DESeq ऑब्जेक्ट

R में Bioconductor के साथ RNA-Seq

अभ्यास करते हैं!

R में Bioconductor के साथ RNA-Seq

Preparing Video For Download...