R/findBrukerTargetSpots.R

#' findBrukerTargetSpots
#'
#' @param brukerDataPath brukerDataPath 
#'
#' @return list of acqus info
#' @export
#'
readBrukerAcqus <- function(brukerDataPath){
  
  files <- list.files(brukerDataPath,
                      pattern = "fid", 
                      recursive = TRUE,
                      full.names = TRUE)
  
  lapply(files, function(x){
    ghosts::readAcqusFile(x)
  })
}
chasemc/ghosts documentation built on May 8, 2019, 12:50 a.m.