% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/preprocess_coldata.R
\name{preprocess_coldata}
\alias{preprocess_coldata}
\title{Process Coldata/Clinical Data}
\usage{
preprocess_coldata(
  summarized_experiment,
  to_lower = T,
  unnest = T,
  exception = NULL,
  ...,
  verbose = F
)
}
\arguments{
\item{summarized_experiment}{SummarizedExperiment object or a simple data frame}

\item{exception}{Character - Names of columns that should not be dropped.}
}
\value{
Returns the data frame with filtered/ordered columns.
}
\description{
This function applies changes to the colData/clinical data of a SummarizedExperiment.
}
\examples{
lungMeta <- reorder_all(lungMeta, c("tumor_stage", "race"), 10)
}