See also
Other Reference Genome Endpoints:
get_exons()
,
get_gene_search()
,
get_genes()
,
get_gwas_catalog_by_location()
,
get_neighbor_gene()
,
get_transcripts()
Examples
# \dontrun{
# gene symbol
get_genomic_features("brca1")
#> # A tibble: 1 × 17
#> gencodeVersion end description geneSymbolUpper genomeBuild geneStatus
#> <chr> <int> <chr> <chr> <chr> <chr>
#> 1 v26 43170245 BRCA1, DNA rep… BRCA1 GRCh38/hg38 ""
#> # ℹ 11 more variables: strand <chr>, entrezGeneId <int>, geneType <chr>,
#> # start <int>, dataSource <chr>, gencodeId <chr>, geneSymbol <chr>,
#> # tss <int>, chromosome <chr>, featureType <chr>, assembly <chr>
# GENCODE ID
get_genomic_features("ENSG00000132693.12")
#> # A tibble: 1 × 17
#> gencodeVersion end description geneSymbolUpper genomeBuild geneStatus
#> <chr> <int> <chr> <chr> <chr> <chr>
#> 1 v26 159714589 C-reactive pr… CRP GRCh38/hg38 ""
#> # ℹ 11 more variables: strand <chr>, entrezGeneId <int>, geneType <chr>,
#> # start <int>, dataSource <chr>, gencodeId <chr>, geneSymbol <chr>,
#> # tss <int>, chromosome <chr>, featureType <chr>, assembly <chr>
# RSID
get_genomic_features("rs1815739")
#> # A tibble: 1 × 8
#> featureType chromosome start snpId variantId ref alt assembly
#> <chr> <chr> <int> <chr> <chr> <chr> <chr> <chr>
#> 1 snp chr11 66560624 rs1815739 chr11_66560624… C T HG38
# GTEx variant ID
get_genomic_features("chr11_66561023_G_GTTA_b38")
#> # A tibble: 1 × 8
#> featureType chromosome start snpId variantId ref alt assembly
#> <chr> <chr> <int> <chr> <chr> <chr> <chr> <chr>
#> 1 snp chr11 66561023 rs3837428 chr11_66561023… G GTTA HG38
# }