Skip to content
Permalink
master
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
% 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)
}