Permalink
Cannot retrieve contributors at this time
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?
mmRmeta/man/add_range_geneinfo.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
28 lines (27 sloc)
1001 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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")) | |
} |