Skip to content
Permalink
c5d03d2a60
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
25 lines (23 sloc) 894 Bytes
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/make.nested.metadata.R
\name{make.nested.metadata}
\alias{make.nested.metadata}
\title{Make nested data frames}
\usage{
make.nested.metadata(cancer_metadata, cancer_data, key = "case_id")
}
\arguments{
\item{cancer_metadata}{Meta data provided by TCGA}
\item{cancer_data}{A large list created prior by multimodalR}
\item{key}{Character or integer - Column name or index of unique identifier, default = "case_id"}
}
\value{
Returns a list of data frames for every gene
}
\description{
Create a data frame of metadata for every gene. The case_id are taken from cancer_data and are matched against cancer_metadata. An additional
column "group" is appended to the data table. The column "group" represents the modality of the gene expression.
}
\examples{
lungMetaExpression <- nested.metadata(lungMetaData, lungXY)
}