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/filter_chromosome.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
38 lines (32 sloc)
1.29 KB
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/preprocess_assay.R | |
\name{filter_chromosome} | |
\alias{filter_chromosome} | |
\title{Filter Specific Genes on Chromosome} | |
\usage{ | |
filter_chromosome( | |
summarized_experiment, | |
chromosome = NULL, | |
ensemble_name = "ensembl_gene_id", | |
df_biomart = NULL, | |
use_row_range = T, | |
filter_out = T | |
) | |
} | |
\arguments{ | |
\item{summarized_experiment}{SummarizedExperiment or matrix like object.} | |
\item{chromosome}{Name of chromosomes to be filtered out | 1-24, X, Y multiple are possible} | |
\item{df_biomart}{Data frame containing biomaRt results} | |
\item{use_row_range}{Logical - Chromosome info is available in rowRanges of the SE} | |
\item{filter_out}{logical - If true, filters out all chromosomes stated in "chromosome", if FALSE, then only genes on said chromosomes are kept} | |
\item{seqnames}{Character - Name of column in rowRange containing chromosome names (not working with NSE)} | |
} | |
\value{ | |
} | |
\description{ | |
This function filters genes that are located on specific chromosomes. | |
} | |
\details{ | |
Gene names have to be in rows and as ensembl gene IDs. e.g ENSG00000091831. If there is already a data frame with genes and their location on the chromosome, you can use that df instead. | |
That data frame needs to have the columns "ensembl_gene_id" and "chromosome_name". | |
} |