R/enst2symbol.R

Defines functions enst2symbol

Documented in enst2symbol

#' ENST to Symbol
#'
#' @param ENST input ENST ID
#'
#' @return
#' @export
#'
#' @examples
#' enst2symbol("ENST00000228837")

enst2symbol<-function(ENST){
  Symbol<-db[match(ENST,db$V7),4]
  return(Symbol)
}
Shicheng-Guo/rbiotools documentation built on Dec. 18, 2021, 1:07 p.m.