File: bootstrapCluster.R

package info (click to toggle)
r-bioc-scran 1.18.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,856 kB
  • sloc: cpp: 960; sh: 13; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 693 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#' Assess cluster stability by bootstrapping
#'
#' Generate bootstrap replicates and recluster on them to determine the stability of clusters with respect to sampling noise.
#' This has been migrated to the \pkg{bluster} package as \code{\link{bootstrapStability}}.
#'
#' @param ... Arguments to pass to \code{\link{bootstrapStability}}.
#'
#' @return 
#' See \code{\link{bootstrapStability}} for details.
#' 
#' @author
#' Aaron Lun
#' 
#' @seealso
#' \code{\link{bootstrapStability}}, the new name for this function.
#' 
#' @export
#' @importFrom bluster bootstrapStability
bootstrapCluster <- function(...) {
    .Deprecated(new="bluster::bootstrapStability")
    bootstrapStability(...)
}