1 / 2

Analysis of GSE9412 Gene Expression Data: Volcano Plot Visualization

This script performs a comprehensive analysis of GSE9412 sample data using R. It reads the sample data, filters out missing values, and calculates fold changes and significance for gene expressions. The results are then summarized and visualized in a volcano plot, showcasing the relationship between effect size and significance. The script employs functions to compute log2 transformations, t-test p-values, and mean values across specified columns, providing insights into the differentially expressed genes.

krikor
Télécharger la présentation

Analysis of GSE9412 Gene Expression Data: Volcano Plot Visualization

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Example R Answer data <- read.delim("GSE9412_sample_data.txt") data1 <- subset(data, !is.na(GSM239309)) getFoldChange <- function(x,y) { return( log2(as.numeric(x)) - log2(as.numeric(y))) } getSignificance <- function(x,y) { return( -log10(t.test(as.numeric(x),as.numeric(y))$p.value)) } data1$res <- apply(data1[,2:4], 1, mean) data1$sen <- apply(data1[,5:7], 1, mean) data1$effect <- apply(data1, 1, function(x) getFoldChange(x[8],x[9])) data1$sig <- apply(data1, 1, function(x) getSignificance(x[2:4],x[5:7])) plot(data1$effect, data1$sig, main="GSE9412 Volcano Plot", xlab="Effect", ylab="Significance")

  2. One point about plots From : http://xkcd.com/833/

More Related