Read high-dimensional cytometry data from a .csv file into a tidy tibble.
Source:R/io.R
tof_read_csv.Rd
Read high-dimensional cytometry data from a .csv file into a tidy tibble.
Usage
tof_read_csv(file_path = NULL, panel_info = dplyr::tibble())
Value
A `tof_tbl` in which each row represents a single cell and each column represents a high-dimensional cytometry antigen channel.
A `tof_tbl` is an S3 class that extends the "tibble" class by storing one additional attribute: "panel" (a tibble storing information about the panel used during data acquisition). Because panel information isn't obvious from data read as a .csv file, this information must be provided manually from the user (unlike in `tof_read_fcs`).