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/subset_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.
34 lines (30 sloc)
1023 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{subset_metadata} | |
\alias{subset_metadata} | |
\title{Filter Metadata for Primary Cancer Site (Organ)} | |
\usage{ | |
subset_metadata( | |
meta_data, | |
cancer_data, | |
key = "case_id", | |
additional_key = NULL, | |
additional_value = NULL | |
) | |
} | |
\arguments{ | |
\item{meta_data}{Meta data provided by TCGA} | |
\item{cancer_data}{A large list created prior by multimodalR for a cancer site} | |
\item{key}{character - Unique identifier, default = "case_id"} | |
\item{additional_key}{needs to be added} | |
\item{additional_value}{needs to be added} | |
} | |
\value{ | |
Returns a data table of the metadata for a primary cancer site (organ). | |
} | |
\description{ | |
This function subsets the metadata for an organ. It works for meta data directly downloaded from TCGA or already filtered meta data. The subset is done by matching the "key" with the column names (patient ID or case_id) of the expression matrix. | |
} | |
\examples{ | |
lungMetaData <- subset_metadata(metadata, lungXY) | |
} |