Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/add_range_geneinfo.R
\name{add_range_geneinfo}
\alias{add_range_geneinfo}
\title{Add Gene Info}
\usage{
add_range_geneinfo(
summarized_experiment,
gene_info = NULL,
by = c(ensembl_gene_id = "gene_id")
)
}
\arguments{
\item{gene_info}{Either GRange or EnsDb object with information about genomic location of the genes.}
\item{by}{Character - as used by \code{\link[dplyr]{left_join}} to join two df by common column. First one of SE, second of gene_info to merge by | c(id1 = id2)}
}
\value{
Returns the SummarizedExperiment with additonal GRanges.
}
\description{
This function adds Geneinfo from a data bank. In this case EnsDb.Hsapiens.v86 to obtain GRanges of the gene and add them to the SummarizedExperiment
}
\examples{
library(EnsDb.Hsapiens.v86)
genes <- genes(EnsDb.Hsapiens.v86)
summarized_experiment <- add_range_geneinfo(summarized_experiment, gene_info = genes, by = c("ensembl_gene_id" = "gene_id"))
}