This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Total number of genes in hg38

I am studying RNA-Seq data and I need to know how many genes are incorporated in reference genome h38 build (UCSC) ?

rna-seq

What have you tried?

Hi Natasha, thank you for sharing the paper. I now have the answer to my question.

Hi Glory Basumata,

If an answer was helpful you should upvote it, if the answer resolved your question you should mark it as accepted.
Upvote|Bookmark|Accept

Cheers,
Wouter

Thanks for the update Wouter. I am a new user here in this community, so I didn't know about upvote :) Cheers!

3 answers

locate refGene file, uncompress it, look for the 13th column containing gene names, make sure there are no repetitions, and count them:

curl http://hgdownload.cse.ucsc.edu/goldenPath/hg38/database/refGene.txt.gz \
| zcat | cut -f13 | sort -u | wc -l
28054

These metrics are summarized by Ensembl (for their annotation) at https://www.ensembl.org/Homo_sapiens/Info/Annotation

Thank you for your help WouterDeCoster.

GENCODE has a statistics page for this information.

Hi genomax, thank you for sharing the weblink. I now have rough estimate of the no. of genes to work with.

Log in to answer this question.