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_nested_metadata.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (23 sloc)
905 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/z_old_functions.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 keys("case_id") are taken from cancer_data and are matched against cancer_metadata. An additional | |
column "mode" is appended to the data table. The column "mode" represents the mode/modality of the gene expression. | |
} | |
\examples{ | |
lungMetaExpression <- make_nested_metadata(lungMetaData, lungXY) | |
} |