R/fct_readBrukerAcqus.R

Defines functions readBrukerAcqus

Documented in readBrukerAcqus

#' findBrukerTargetSpots
#'
#' @param brukerDataPath brukerDataPath 
#'
#' @return list of acqus info
#' 
#'
readBrukerAcqus <- function(brukerDataPath){
  
  files <- list.files(brukerDataPath,
                      pattern = "fid", 
                      recursive = TRUE,
                      full.names = TRUE)
  
  lapply(files, function(x){
    readAcqusFile(x)
  })
}
chasemc/IDBacApp documentation built on Oct. 22, 2022, 2:52 a.m.