creating box plot from DESeq2 result
I have result file obtained from deseq2 which has log2FC values. can anyone please tell me hoe to plot a boxplot for a gene of interest (control vs treated) from this data?
rna-seq
deseq2
tcga
data analysis
• 8,076 views
•
link
written
by
aswanikrishnap1994 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
How to use compareCluster ?
written by b8177 •Hello! I am new to using `compareCluster` and just want to double check - the input for` compareCluster` can be DESeq2 results by using both …
-
RNA-Seq and qPCR
written by SKY •Greetings! For a rice gene LOC_Os06g51060 Relative (to control group) Log2FC values obtained by qPCR and RNA-Seq are as follows: See here: ![enter image description …
-
ssGSEA vs GSEA pre-ranked & correlation analyses?
written by :) •Hello, I have some RNA-seq data and I would like to explore genes and their functions (specific module enrichment), potentially linked with another biological parameter. …
-
Statistically overrepresented gene types from Differentially expressed genes.
written by EVRHi, I have DESeq2 results from RNA-seq after comparing Control and Treated samples and obtained a list of differential expressed genes(DEG). My DEG includes genes …
-
From DESeq2 normalized counts to heatmap in R
written by deniz •Hi, I have normalized counts data and DESeq2 result file (including log2FC and Padj values) of each sample. And I want to generate a heatmap …
-
TCGA data analysis: DEG analysis
written by aswanikrishnap1994 •i am currently working with TCGA dataset from UCSC xena browser. I have completed the differential gene expression analysis using Deseq2 from genepattern for one …
-
hclust heatmap clustering produce different relationships with fpkm versus rlog transformed coun
written by nancyI have a data set of n=3 treated vs control RNA-seq. I used hisat2 for alignment followed by stringtie to compute fpkms, and then prepDE.py …
-
Help explaining MDS plot of RNAseq?
written by Dayna •Hello everybody Can any one help me understand the MDS plot for two groups of samples like control vs. treated we generate from edgeR or …
-
DESeq2 Normalization of time course
written by EVRHi, I am new to DESeq2 analysis. I have RNASeq raw count data from three different time points namely 0h, 5h, 1d. Every time point …
-
Average Difference
written by Layla •<p>I need to calculate the expression values called average difference and confidence values. For what I know those values can be obtained from comparing .cel …
log2FC gives you the log2 Fold Change for treated relative to control.
Therefore, you will NOT be able to make two box plots: one for the treated samples and one for the control samples. This is because log2FC already describes the difference between your samples and therefore each gene will only get one log2FC value.
If you want to make two box plots, you should look at the
vstfunction inDESeq2which gives you the normalized RNA-seq read counts for each individual sample. You can then plot those (e.g. if you have 6 samples: 3 control samples and 3 treated samples, you can get the normalized counts for each of the 6 samples for a particular gene).Can you be more specific about why you want to make box plots rather than just flat out reporting the log2FC value for your gene or simply displaying the log2FC value for that gene on a bar graph?
Thank you for your suggestion. I was just trying understand how i can visualize and interpret the results and i am completely new to this kind of analysis.
Check the
boxplotfunction and its examples. This is basicR, so please also browse the web for plotting tutorials. Have you tried anything?yes i tried. I am dealing with cancer datasets and couldn't find anything useful which i can use for deseq2 data.
I strongly doubt that you do not find example code that plots some numeric values into boxes. What exactly is the problem?
I have DEseq2 results with log2FC and the standard error and i can plot graph using that. I just wanted to know if something else will work or not and what all are the ways to explore the data?
I recommend that the poster looks through some papers that perform RNA-seq analysis using an established pipeline like DESeq2 (there are a TON -- do a pubmed search) for ideas on how to visualize RNA-seq data, and whether your analysis is more suitable for a box plot vs. scatter plot vs. bar graph vs. heatmap vs. volcano plot (or MA plot). There are hundreds of ways to explore RNA-seq data -- it's infeasible for me to list them all here. At least describe what YOU are trying to get out of the data -- what's your experimental question?
As ATpoint mentioned,
DESeq2data just gives you numbers (log2FC's with p-values like what you have; or normalized counts). There really is nothing special you need for plottingDESeq2data versus some other type of numerical data. If you're unsure on how to do that, I'd encourage reading more on RNA-seq because you really need to understand the data to interpret it properly.