More posts like this
-
Both up- and down-regulated gene sets return the same GO pathway analysis results?
written by xqyn •Hi, I'm performing Gene Ontology (GO) enrichment analysis on differentially expressed genes (DEGs) from ATAC-seq data, using R (clusterProfiler). After separating my DEGs (DEseq2) into …
-
More up-regulated genes annotate to known GO/KEGG than down-regulated genes
written by bioinfo_cat •Hello, I have a dataset of RNA-seq data where I needed to do a de novo assembly. I am curious if anyone has any ideas …
-
Query about gene ontology analysis in edgeR vs GSEA
written by elizabethRHi I cannot find any similar posts to this on the forum, so please may I ask if anyone can help me? I have run …
-
Question about selection of pathways to inhibit
written by rob.costa1234I have an RNAseq results of drug treated vs control cells and performed pathways analysis with Up an down regulated genes. What I am trying …
-
what data normaly you use for analysis and how
written by LearnerI don't have access to the raw files. I have access to the htseq-count FPKM FPKM-UQ I have read all the questions asked in here. …
-
Understanding the concept of Up and down regulated genes
written by LearnerI have been reading many comments related to how to find an unregulated or down regulated genes through a specific experimental data. There are few …
-
is someone know how to calculate up and down regulated
written by LearnerHello, I would like to know if anyone knows how to calculate up or down regulated genes like this paper http://rzlab.ucr.edu/281f_microarray/4562.pdf
-
finding up or down regulated gene expression
written by LearnerI have read many questions related to this answer but still I doubt about it. my data looks like below Treatment Controlled Gene 1 0.23 …
-
Up and Down regulated genes
written by mathavanbioinfoHello experts can share your knowledge While analyzing the deferentially expressed genes some paper they have analyzed up or down regulated genes separately. Is it …
-
is Differential expression analysis an unsupervised technique?
written by MoHello, I have been trying to find up/down regulated genes in my data which I was not successful so far. In my [previous post][1], I …
This question shows you put minimal effort into trying to solve this yourself.
The manual of htseq-count is quite extensive and you should be able to figure this out on your own. If you get stuck you can still ask a more specific question.
I would suggest featureCounts instead of htseq-counts. It's faster and does almost the same. Both tools do not identify up and down-regulated genes. They only do read counting. For further analysis, you need a tool such as DESeq2 or edgeR.
@WouterDeCoster I appreciate the time you spent but I am wondering why you reply me always in a matter that I cannot follow. I totally understand that the english might not be your first language, however, I wrote above this "htseq-count analysis and can share his script? the purpose is to find up and down regulated genes." I want to find a way to end up to up and down regulated genes. Is this possible with htseq-count or I should look at another files ? if it is possible, which types of normalisation is used? why DESeq2 and not Limma ?( if one normalised the count values)
I'm not sure which part of my question is unclear. If you can ask a more specific question I can elaborate.
That's right, but that's not the problem here.
htseq-counts is a good start. It will count reads, which you can then use in a program for differential expression analysis (see below). But a better choice is featureCounts, because it is faster and scales across cores. Another alternative would be Salmon, but that's not entirely the same. I just mention it here for completeness sake.
You don't have to do any upfront normalization. Your software for differential expression analysis (see below) will take care of that.
As far as I know, the most commonly used and recommended tools are DESeq2 and edgeR. You can use limma-voom, but not the standard limma. The standard limma is for microarray data, which follows a different statistical distribution.