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/make_SummarizedExperiment.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)
936 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/make_SummarizedExperiment.R | |
\name{make_SummarizedExperiment} | |
\alias{make_SummarizedExperiment} | |
\title{Combines Data to SummarizedExperiment} | |
\usage{ | |
make_SummarizedExperiment( | |
gene_expression, | |
clinical_data, | |
key = NULL, | |
remove = FALSE, | |
... | |
) | |
} | |
\arguments{ | |
\item{gene_expression}{Output from multimodalR} | |
\item{clinical_data}{Data frame containing the clinical data of patients.} | |
\item{key}{Character - column name of unique IDs (e.g. "case_id")} | |
\item{remove}{Logical - should the column 'key' be removed from the data frame (row names represent the key)} | |
\item{...}{for SummarizedExperiment} | |
} | |
\value{ | |
Returns the same list but with data frames containing the expression values in a new colummn. | |
} | |
\description{ | |
Short function to construct a SummarizedExperiment | |
} | |
\examples{ | |
lungMetaExpression <- add_expression(lungXY, lungMetaExpression) | |
} |