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?
multimodalR/man/cleanOutput.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (30 sloc)
1.05 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/filter.R | |
\name{cleanOutput} | |
\alias{cleanOutput} | |
\title{cleanOutput | |
returns the cleaned output of algorithms} | |
\usage{ | |
cleanOutput(cancerGroupOutput, cancerGroupExpressionmatrix, | |
minPercentage = 10, coresToUse = 20, parallel = TRUE) | |
} | |
\arguments{ | |
\item{cancerGroupOutput}{output of one cancer group} | |
\item{cancerGroupExpressionmatrix}{expression matrix of this one cancer group} | |
\item{minPercentage}{minimum percentage of groups. | |
Groups with lower percentages will be sorted into the other groups} | |
\item{coresToUse}{The number of cores to use for parallel computing} | |
\item{parallel}{logical. Whether cleanOutput should be computed in parallel} | |
} | |
\value{ | |
cleaned output of algorithms | |
} | |
\description{ | |
cleanOutput | |
returns the cleaned output of algorithms | |
} | |
\details{ | |
This function cleans up the output as empty groups will be deleted, | |
genes with groups < minPercentage of the sum of patients are corrected and | |
modus, means, sds, group sizes and patients belonging to each group will be updated | |
} |