Hi Charles
Short answer: no. You cannot get useful results from an experiment without replication, no matter what tool you use. (Why do people keep wasting their time and money on producing such data?)
Longer answer: DESeq has a mode to work with data without replicates that can give you at least those genes which really stick out by having way larger fold-changes then the rest. However, you might see only a small part of your potential hits.
Simon
Unconfigured Ad
Collapse
X
-
Simon and Davis,Originally posted by Simon Anders View PostHi
Davis gave a nice summary of the way how to do it.
Two additional points (which I mainly put to advertise our software):
- An alternative to edgeR is our package, DESeq. DESeq's method is based on edgeR's, but different in a number of points (and we think, of course, that this makes it better). See our paper for the exact differences.
The main point, however, is that you get a proper analysis only if you have a method that can, as Davis writes, "deal with overdispersion in the data, investigate inter-library (incl. biological) variability", and to my knowledge, edgeR and its derivative, DESeq, are the only tools currently available, which do this properly.
- While both edgeR and DESeq are easy enough to use that even users unfamiliar with R will manage, the summerization might be a bit more tricky. An alternative is htseq-count.
Simon
I have 4 sets of solid reads (control & 3 experimental) that I'd like to generate DE for. There are no replicates for these samples.
I was initially planning to simply normalize against the control (rpkm) but this now seems like not the way to go. Will either edgeR or DESeq generate DE for non-replicated data sets?
thanks
Charles
Leave a comment:
-
-
Thank you, Simon. I will try out DESeq on my data and let you know how it goes. BTW I would also be very interested in a way to compare multiple treatments. In the present project I have 3 treatments each with 3 biological replicates.
Leave a comment:
-
-
Hi
in principle both edgeR and DESeq are suitable for any kind of count data for which the model fits. The assumption of a negative binomial distribution is quite robust; the crucial question is the variance-mean relation.
To do proper statistics, you need to have a reasonable estimate of the variance for each gene (or gene category, or species, or clade, or whatever it is you count in meta-genomics). As one typically has only few replicates, one needs to assume that genes of similar expression strength (or clades of similar abundance, or whatever) have similar variance.
In case of DESeq, there are diagnostics (the variance residuals, visualized with 'residualEcdfPlot' and also used to find 'variance outliers') that allow you to check how well this model fits, so that you know whether you can put trust in your results.
So, yes, it is worth a try, and I'd be very interested to hear how it goes.
Cheers
Simon
Leave a comment:
-
-
Hopefully this question is allowed on the RNA-seq forum
I'm interested to get opinions from the developers of edgeR and DEseq (and others) about whether the statistical analyses in these packages are appropriate for a couple other types of biological count data. Specifically, I work on metagenomic analyses of complex microbial communities (in soils, plants, water etc). The type of data I'm working with are sequencing reads, typically produced on 454, that are then annotated through various different pipelines. The outcome is a bunch of counts of genes with particular annotations or that are in specific functional categories. The genome space of the community is certainly greatly undersampled, as in many RNA-seq experiments, but the magnitude of difference in counts is less. Could I apply one of these packages to analyzing my data? I have biological but not technical replicates at the moment. The second type of data are counts of the number of organisms in particular phylogenetic categories, and this data is closer to RNA-seq data in that there a few highly abundant categories and a long tail of low-abundance types. Again, I have biological but not technical replicates.
Leave a comment:
-
-
No, why should this be necessary? After step 4, you have a table with counts, with one row for each genes. Provided the rRNA and pseudo genes were in your annotation, there will also be some rows for these, and then you can conveniently kick out these rows if you don't like them. You can also leave them in. After all, if you get counts for a pseudogene, the gene may not be that 'pseudo' and you may want to look at it. And the counts to rRNA may be informative to judge the effectiveness of the the RNA removal step of your sample prep. Of course, any differential expression that edgeR or DESeq may report for them will be biologically meaningless.Originally posted by townway View Postdo you think it is necessary to remove the reads mapping to rRNA and psudogene region? and do you know how to make this from SAM file?
Simon
Leave a comment:
-
-
Before moving to step4. Summarize reads on the gene/transcript/exon level.
do you think it is necessary to remove the reads mapping to rRNA and psudogene region? and do you know how to make this from SAM file?
Thank you
Leave a comment:
-
-
Hi Livi81,
I've played around with the trial version of the Partek software quite a bit and was not thrilled with it. My major problem was speed. I was working with Illumina data sets consisting of 25 million reads each. Even with 4 gigs RAM the software stalled and froze my computer a few times. You may be able to bypass this doing by bringing mapped output in, rather than doing it in the Partek software. I found that using a UNIX or R environment to be much better for me. It's worth calling the company though for a free trial.
Leave a comment:
-
-
I'm also looking for a biologist friendly way to analyse RNA-seq output files. I saw that Partek seem to have some nice software, how does it compare to edgeR and DESeq?
Thanks
Leave a comment:
-
-
Hi
Davis gave a nice summary of the way how to do it.
Two additional points (which I mainly put to advertise our software):
- An alternative to edgeR is our package, DESeq. DESeq's method is based on edgeR's, but different in a number of points (and we think, of course, that this makes it better). See our paper for the exact differences.
The main point, however, is that you get a proper analysis only if you have a method that can, as Davis writes, "deal with overdispersion in the data, investigate inter-library (incl. biological) variability", and to my knowledge, edgeR and its derivative, DESeq, are the only tools currently available, which do this properly.
- While both edgeR and DESeq are easy enough to use that even users unfamiliar with R will manage, the summerization might be a bit more tricky. An alternative is htseq-count.
Simon
Leave a comment:
-
-
DE Analysis Pipeline with edgeR
Hi zorph
I am one of the developers for the Bioconductor package edgeR , which is designed for carrying out differential expression analysis of count data (like RNA-seq). Check out the User's Guide for more details and case studies to provide examples on how to use the package.
I'm not familiar with Wig files and can't tell what sort of analysis you've carried out already, but colleagues of mine suggest the following sort of steps to go from raw RNA-seq short read data from the raw fasta files, through to GO category testing. You may find this sort of analysis pipeline useful.
Steps with required tools & files
To perform the entire analysis, the following steps and tools will be needed:
1. Get some short read RNA-seq data, for at least two different experimental conditions you wish to compare
2. Choose a reference to map against, and map your data using a short read mapper that outputs in SAM format. We tend to use bowtie. Other options are bwa, SOAP2, novoalign, shrimp.
3. Use SAMtools to convert SAM output into the binary BAM format, which is both smaller on disk and allows for fast indexing.
4. Summarize reads on the gene/transcript/exon level. We use the R platform with the Rsamtools and GenomicFeatures packages.
5. Calculate DE genes from counts summarized on the gene level. We use the R package edgeR, which we have developed, although there are other tools out there. edgeR can account for biological variation in the data (using a negative binomial model), separate biological from technical variation, produce an MDS plot, and conduct exact testing procedures.
6. Perform GO category testing on the results of the differential expression analysis, using the R package goseq.
Considerations for DE Analysis
Extra-Poisson variation (or overdispersion) is typical of RNA-seq data, especially if there is biological replication amongst your samples. If you only have technical replicates then this may not be an issue, but I would recommend running your data through edgeR to get some idea of the inter-library variability. If you have overdispersed data, then using a Poisson model will *drastically* overestimate the levels of differential expression in your data. Using a NB model like in edgeR can account for this extra variation in the data and give much better assessment of DE.
edgeR can deal with overdispersion in the data, investigate inter-library (incl. biological) variability and get exact p-values for DE based on the NB model.
Hope that is helpful and good luck with your data analysis. Please ask if you have any more questions I might be able to help with.
Best regards
Davis
Leave a comment:
-
-
RNA-seq output
hello,
i've analyzed my data and have a bunch of Wig files. the overall goal of my project is to compare different transcriptomes. Is there a user friendly program that will allow me to do this?
Fyi-i ran my samples on SOLiD and analyzed the samples using BioScope.Tags: None
-
Latest Articles
Collapse
-
by mylaserKheloyar – Everything You Need to Know About Kheloyaar Login and Kheoyar Id
If you are looking for an online gaming platform that offers a user-friendly experience, Kheloyar has become a name that many users search for. Whether you're interested in creating a new account, accessing your dashboard through Kheloyaar Login, or learning how to obtain a Kheoyar Id, understanding the platform's features and account process is essential.
This guide explains everything you need to know about...-
Channel: Articles
Yesterday, 01:13 AM -
-
by SEQadmin2
Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
...-
Channel: Articles
07-09-2026, 11:10 AM -
-
by SEQadmin2
Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.
There is no single reason why many patients don’t respond to treatment as expected. Cancer is...-
Channel: Articles
07-08-2026, 05:17 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, 07-09-2026, 10:04 AM
|
0 responses
19 views
0 reactions
|
Last Post
by SEQadmin2
07-09-2026, 10:04 AM
|
||
|
Started by SEQadmin2, 07-08-2026, 10:08 AM
|
0 responses
11 views
0 reactions
|
Last Post
by SEQadmin2
07-08-2026, 10:08 AM
|
||
|
Started by SEQadmin2, 07-07-2026, 11:05 AM
|
0 responses
28 views
0 reactions
|
Last Post
by SEQadmin2
07-07-2026, 11:05 AM
|
||
|
Started by SEQadmin2, 07-02-2026, 11:08 AM
|
0 responses
31 views
0 reactions
|
Last Post
by SEQadmin2
07-02-2026, 11:08 AM
|
Leave a comment: