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/IDBac_App documentation built on Oct. 25, 2022, 7:34 a.m.