UCSC

bioinformatics
database
Published

September 24, 2024

Modified

November 10, 2024

UCSC

rtracklayer

Show the code
library(rtracklayer)
library(AnnotationHub)

# 第一次会下载 
ah <- AnnotationHub()
Show the code
ah

# C:/Users/DELL/AppData/Local/R/cache/R/AnnotationHub/
Show the code
OrgDb_Human <- subset(ah, rdataclass == "OrgDb" & species == "Homo sapiens")
OrgDb_Human

org <- OrgDb_Human[[1]]
org
Show the code
GRanges_Human <- subset(ah, rdataclass == "GRanges" & species == "Homo sapiens")

gr <- GRanges_Human[1]
gr