R/get_dti_filenames.R

Defines functions get_dti_filenames

Documented in get_dti_filenames

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