R/mmFluo_all.R

#' Calculate mean and median fluorescent values for individual cells, per timepoin and for the whole movie
#'
#' @param Spots_df  a dataframe containing the spots coordinates
#' @param all_cells fluorescent values collected in a cube of a given size around each spot location
#'
#' @return a dataframe
#' @export
#'

mmFluo_all <- function(Spots_df, all_cells) {

  Spots_df %>%
    mmFluo(all_cells) %>%
    mmFluo_perT(all_cells) %>%
    mmFluo_wholeMovie(all_cells) %>%
    diffFluo(all_cells, meancol = meanFluo)
}
marionlouveaux/mamut2r documentation built on May 20, 2019, 9:55 a.m.