Skip to contents

LiftOver EPIC, 450k, or 27K Infinium array CpG IDs to hg38 coordinates

Usage

arrayLift(probes = probes, array = "EPIC")

Arguments

probes

A dataframe or vector of EPIC, 450K, or 27K CpG IDs

array

A character with array platform ("EPIC", "450K" or "27K")

Value

A GRanges object of hg38 coordinates

Details

arrayLift

Examples

if (FALSE) { 
readxl::read_excel("file.xlsx") %>%
  dplyr::select(CpGID) %>% 
  arrayLift("EPIC") %>%
  dplyr::as_tibble() %>%
  dplyr::select(seqnames, start, end) %>% 
  DMRichR::df2bed("file.bed")
}