Farklı gen ifadesine genel bakış

R ile Bioconductor kullanarak RNA-Seq

Mary Piper

Bioinformatics Consultant and Trainer

ısı haritası fold change'ler

R ile Bioconductor kullanarak RNA-Seq

DE varyasyonu

R ile Bioconductor kullanarak RNA-Seq

JCI makalesi

R ile Bioconductor kullanarak RNA-Seq

Veri kümesine giriş: Smoc2

böbrek fibrozisi

R ile Bioconductor kullanarak RNA-Seq

RNA-Seq deneyi

R ile Bioconductor kullanarak RNA-Seq

RNA-Seq sayı dağılımı

ggplot(raw_counts) +
  geom_histogram(aes(x = wt_normal1), stat = "bin", bins = 200) +
  xlab("Raw expression counts") +
  ylab("Number of genes")

Sayımların dağılımı

R ile Bioconductor kullanarak RNA-Seq

Farklı ifade analizi için hazırlık: DESeq2 nesnesi

dds <- DESeqDataSetFromMatrix(countData = rawcounts,
                        colData = metadata,
                        design = ~ condition)

sayı verisi

R ile Bioconductor kullanarak RNA-Seq

Farklı ifade analizi için hazırlık: metadata

# Create vectors containing metadata for the samples
genotype <- c("wt", "wt", "wt", "wt", "wt", "wt", "wt") 
condition <- c("normal", "fibrosis", "normal", 
               "fibrosis", "normal", "fibrosis", "fibrosis") 

# Combine vectors into a data frame
wt_metadata <- data.frame(genotype, wildtype)


# Create the row names with the associated sample names rownames(wt_metadata) <- c("wt_normal3", "wt_fibrosis3", "wt_normal1", "wt_fibrosis2", "wt_normal2", "wt_fibrosis4", "wt_fibrosis1")
R ile Bioconductor kullanarak RNA-Seq

Farklı ifade analizi için hazırlık: metadata

metadata

R ile Bioconductor kullanarak RNA-Seq

Hadi pratik yapalım!

R ile Bioconductor kullanarak RNA-Seq

Preparing Video For Download...