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
1 contributor

Users who have contributed to this file

25 lines (24 sloc) 834 Bytes
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/preprocess_assay.R
\name{filter_zero}
\alias{filter_zero}
\title{Filter 0 Sum Rows}
\usage{
filter_zero(summarized_experiment, assay_index = 1)
}
\arguments{
\item{summarized_experiment}{Matrix like object (data frame etc.) or SummarizedExperiment}
\item{assay_index}{Integer - index of assay of gene expression if input object is a SummarizedExperiment.}
}
\value{
SummarizedExperiment with probably less genes than before.
}
\description{
This function filters rows with row sums of zero (no expression)
}
\details{
This function is somewhat redundant, when you use \code{\link{filter_zero}} rows with zero sums are filtered out as well.
}
\examples{
filteredBreastBRCA <- filter_zero(breastBRCA, assay_index = 1) #filtering is applied to first assay
}