Differential expression gene analysis
I have an RNA Seq data set that is log2(x+1) transformed RSEM normalized count. Can somebody explain how I can obtain raw read counts from this that way I could perform DEG analysis using DeSeq2 R package?
rna-seq
r
• 3,920 views
•
link
written
by
bioinfo456
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
How to obtain TPM data after batch effect correction from count data obtained using RSEM
written by ApprenticeI have raw count data and TPM data for 12 samples that were measured using RNA-seq and quantified using STAR-RSEM pipeline. This data was measured …
-
log2Fold Change as input for k-means analysis
written by concetta •Hi, I am analyzing a RNA-seq dataset that include different treatments and time points. I would like to perform a k-means analysis to cluster my …
-
DESeq2 for different design and normalized counts
written by t.ru •Hi, I have normalized count data from RNA-seq protocol. The normalization steps include DESeq2 with design ~1. Unfortunately, I do not have the raw counts. …
-
Why after normalization of scRNA-Seq data by DESeq2 the p-value of a large number of genes equal ze…
written by Zahra •Hi all I have two Seurat object for scRNA-Seq and extract the raw count from the object: #crating two matrix for raw counts ccl4_count <- …
-
RSEM gene-level estimates to DESeq2
written by mehdim •Hello, I used an RSEM, gene-level count estimates matrix and just rounded the values using the round() function in R to feed them to DESeq2 …
-
How to Normalize and log tranform the miRNA Seq data using DeSeQ2 / EdgeR?
written by prithvi.mastermind •I wish to obtain log-transformed and upper quantile normalized expression data for my miRNA-Seq raw count data. How should I implement the script using EdgeR …
-
How to convert Xena Browser normalized RSEM values to TPM values?
written by carlee.bettler •When using the UCSC Xena Browser for gene expression (rna-seq) analysis, it shows the gene-level transcription estimates as a log2(x+1) transformed RSEM normalized count. Is …
-
Differential expression analysis of normalized expression of RNA seq data
written by JavadDear All, I have a normalized expression table of RNA seq data. I normally use DESeq2 but it needs raw count table not normalized data. …
-
How to filter normalized RNA-Seq transcripts for the purpose of predicting a continuous phenotype
written by arf1389 •Hi All, I am looking for some help with understanding the most logical way (mathematically speaking) that I can reduce post-normalized rna-seq counts in order …
-
Differential Expression Gene analysis using normalized data
written by oghzzang •Hello. I'm working on RNA expression data from TCGA's pipeline. we have 'rsem_isoforms_normalized.txt', 'rsem_gene_normalized.txt'. I know DESeq and EdgeR are used to DEG analysis. But …
Please see Devon's and Michael's input here: RSEM Downstream Analysis
Also input from Michael and Simon (DESeq2 deveopers) on Bioconductor, here: https://support.bioconductor.org/p/51577/
Thanks for the reply Kevin. Devon suggests Limma or edgeR. DESeq2 developers recommend the option of using rounded estimated gene-level counts from RSEM as input to DESeq2. By rounded, do they mean the closest integer value?
Yes, the general idea that I get from the comments is that, if you really wish to use DESeq2, then you should:
Obviously the ideal situation is to get the raw counts (or produce them yourself). May I ask on which data you are working? - TCGA?
Yes, TCGA gene expression RNAseq - IlluminaHiSeq data.
Description of the data set is as follows :- The gene expression profile was measured experimentally using the Illumina HiSeq 2000 RNA Sequencing platform by the University of North Carolina TCGA genome characterization center. Level 3 data was downloaded from TCGA data coordination center. This dataset shows the gene-level transcription estimates, as in log2(x+1) transformed RSEM normalized count. Genes are mapped onto the human genome coordinates using UCSC Xena HUGO probeMap.
I don't have the resource to produce raw counts. You reckon i can round off this normalized count and use DeSeq on it? Thanks a ton for your insight.
You could try the recommendations of Michael Love, Simon Anders, and Devon Ryan, as they are experts in this area. From the discussion, it just didn't seem convincing that it is an ideal type of data to use for DESeq2, though.
If it is TCGA data that you want to analyse, then you should be able to get the raw HTSeq counts via the GDC Legacy Archive, but it depends on the cancer of interest. I recently re-analysed all 500+ raw HTSeq count files for endometrial cancer, for example, using DESeq2.
I'm gonna go ahead with Michael Love's recommendation. Thanks a ton, Kevin :).