I want to get genomic coordinates for a list of human genes. I don't quite know where to start and which package(s) to use. Could you guide me which bioconductor packages to use so I can go read those manual by myself. Thanks a lot!
The TxDb.Hsapiens.UCSC.hg19.knownGene package is really useful for this task. You may also need to use the org.Hs.eg.db package to convert from your gene identifiers to/from Entrez Gene IDs.
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
g = genes(TxDb.Hsapiens.UCSC.hg19.knownGene)
head(g)