R/int_ExportData.R

int_ExportData <- function(ds, colNames=NULL) {

  df <- data.frame(ds$fs$data)
  df <- df[,1:(length(df)-2)] #strip off the file+file scatter cols from AggregateFlowFrames

  if(is.null(colNames)){
    colNames <- NicePrettyColnames(ds$fs)[1:length(df)]
  }
  colnames(df) <- colNames
  df
}
AbhivKoladiya/CytoDataViz documentation built on June 23, 2019, 3:31 a.m.