This is a test version of Biostars. For the public version, visit https://www.biostars.org.
promoters hg38 coordinates

Hello everyone, Do you know if there is any easy way to get human genes promoters coordinates?

like a link from where I can download it

thanks

chip-seq

1 answer

ChIPseeker has a function for this.

Hello Jared, thank you for the answer

I used ChIPseeker but unlesss I'm doing something wrong it doesn't includes the coordinates of a promoter but only how far it is the peak from it. I know it includes also the start and the end of the genes but then, is it included in this range the promoter as well ?

I think would be good to have a list of promoters coordinates and filter out genes from my peaks.bed file

Thank you

I see. Something like this should work then:

library("TxDb.Hsapiens.UCSC.hg38.refGene")
tx <- TxDb.Hsapiens.UCSC.hg38.refGene
proms <- promoters(tx)

See ?promoters for changing the upstream/downstream lengths.

Log in to answer this question.