Created
September 10, 2015 18:09
-
-
Save dtenenba/ba93066fe8385590b6d9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source("https://bioconductor.org/biocLite.R") | |
biocLite(c("AnnotationHub", "rtracklayer")) | |
library(AnnotationHub) | |
ah <- AnnotationHub() | |
ah <- subset(ah, species == "Homo sapiens") | |
qhs <- query(ah, "RefSeq") | |
genes <- qhs[qhs$genome == "hg19" & qhs$title == "RefSeq Genes"] | |
genes <- qhs[[1]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment