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/preprocess_assay.R
\name{filter_duplicates}
\alias{filter_duplicates}
\title{Filter Duplicated Genes}
\usage{
filter_duplicates(summarized_experiment)
}
\arguments{
\item{summarized_experiment}{Matrix, data frame or SE, must contain rownames}
}
\value{
SummarizedExperiment with probably less genes than before.
}
\description{
This function filters out duplicated gene/gene names.
}
\examples{
filteredBreastBRCA <- filter_duplicates(breastBRCA, assay_index = 1) #filtering is applied to first assay
}