R/show_cpout_features.R
show_cpout_features.Rd
Searchable datatable object of cell and image features as extracted by CellProfiler.
show_cpout_features(
path,
display = c("cell_features", "image_features"),
cell_features = "var_cell.csv",
image_features = "var_Image.csv"
)
full path to the CellProfiler output folder
single character indicating which features to display.
Accepted entries are cell_features
to display extracted single-cell
features or image_features
to display extracted image-level features.
single character indicating the name of the file storing the extracted cell features.
single character indicating the name of the file storing the extracted image features.
a datatable
object
read_cpout
for the CellProfiler reader function
path <- system.file("extdata/mockData/cpout", package = "imcRtools")
# Display cell features
show_cpout_features(path)
# Display image features
show_cpout_features(path, display = "image_features")