R/hclust.R

Defines functions mrkHClust

Documented in mrkHClust

##' This functions calculates an average protein profile for each
##' marker class (proteins of unknown localisation are ignored) and
##' then generates a dendrogram representing the relation between
##' marker classes. The colours used for the dendrogram labels are
##' taken from the default colours (see \code{\link{getStockcol}}) so
##' as to match the colours with other spatial proteomics
##' visualisations such as \code{\link{plot2D}}.
##'
##' @title Draw a dendrogram of subcellular clusters
##' @param object An instance of class \code{MSnSet}.
##' @param fcol Feature meta-data label (fData column name) defining
##'     the groups to be differentiated using different
##'     colours. Default is \code{markers}.
##' @param distargs A \code{list} of arguments to be passed to the
##'     \code{\link[stats]{dist}} function.
##' @param hclustargs A \code{list} of arguments to be passed to the
##'     \code{\link[stats]{hclust}} function.
##' @param method A \code{function} to average marker
##'     profiles. Default is \code{mean}.
##' @param plot A \code{logical} defining whether the dendrogram
##'     should be plotted. Default is \code{TRUE}.
##' @param ... Additional parameters passed when plotting the
##'     \code{\link[stats]{dendrogram}}.
##' @return Invisibly returns a dendrogram object, containing the
##'     hierarchical cluster as computed by \code{hclust}.
##' @author Laurent Gatto
##' @examples
##' library("pRolocdata")
##' data(dunkley2006)
##' mrkHClust(dunkley2006)
mrkHClust <- function(object, fcol = "markers",
                      distargs, hclustargs,
                      method = mean,
                      plot = TRUE,
                      ...) {
    fmat <- mrkConsProfiles(object, fcol = fcol, method = method)
    umm <- levels(factor(rownames(fmat)))
    ## handling additional dist args
    if (missing(distargs)) distargs <- list(x = fmat)
    else distargs <- c(list(x = fmat), distargs)
    d <- do.call(dist, distargs)
    ## handling additional hclust args
    if (missing(hclustargs)) hclustargs <- list(d = d)
    else hclustargs <- c(list(d = d), hclustargs)
    hc <- do.call(hclust, hclustargs)
    hc <- as.dendrogram(hc)
    i <- match(labels(hc), umm)
    hc <- set(hc, "labels_colors", getStockcol()[i])
    if (plot) plot(hc, ...)
    invisible(hc)
}

Try the pRoloc package in your browser

Any scripts or data that you put into this service are public.

pRoloc documentation built on Nov. 8, 2020, 6:26 p.m.