R/get_vaso_filenames.R

Defines functions get_vaso_filenames

Documented in get_vaso_filenames

#' @title Get VASO Image Filenames
#'
#' @description Return the filenames for the VASO images
#' @param ... arguments to pass to \code{\link{get_image_filenames}},
#' \code{modalities = "VASO"} so it cannot be specified
#' @return Vector of filenames
#' 
#' @examples
#' get_vaso_filenames()
#' @export
#' @importFrom kirby21.base get_image_filenames
get_vaso_filenames = function(...) {
  x = kirby21.base::get_image_filenames(modalities = "VASO", ...)
  return(x)
}
neuroconductor/kirby21.vaso documentation built on May 19, 2021, 5:23 a.m.