R/ti_mst.R

Defines functions ti_mst

Documented in ti_mst

######################################### DO NOT EDIT! #########################################
#### This file is automatically generated from data-raw/2-generate_r_code_from_containers.R ####
################################################################################################

#' @title MST
#' 
#' @description
#' Will generate a trajectory using MST.
#' 
#' This method was wrapped inside a
#' [container](https://github.com/dynverse/ti_mst).
#' 
#' 
#' 
#' 
#' @param dimred Which dimensionality reduction method to use. Domain: {pca, mds,
#' tsne, ica, lle, landmark_mds, mds_sammon, mds_isomds, mds_smacof, umap,
#' dm_diffusionMap}. Default: pca. Format: character.
#' @param ndim . Domain: U(2, 30). Default: 2. Format: integer.
#' 
#' @keywords method
#' 
#' @return A TI method wrapper to be used together with
#' \code{\link[dynwrap:infer_trajectories]{infer_trajectory}}
#' @export
ti_mst <- function(
    dimred = "pca",
    ndim = 2L
) {
  method_choose_backend(
    package_repository = NULL,
    package_name = NULL,
    function_name = NULL,
    package_version = NULL,
    container_id = "dynverse/ti_mst:v0.9.9.01"
  )(
    dimred = dimred,
    ndim = ndim
  )
}
dynverse/dynmethods documentation built on Jan. 18, 2024, 4:44 a.m.