Wrapper to dplyr functions to merge together multiple files output from cleaned_counts(). It can merge both the cleaned cell files (extension = "_clean_cells.RDS"), as well as the summaries of the removed cells (extension = "_removed_counts_summary.RDS").

samples_files_to_df(
  path,
  extension = c("_clean_cells.RDS", "_removed_counts_summary.RDS")
)

Arguments

path

String for path of location files. It does not matter if other files are present in this folder. Only files with the specified extension will be added.

extension

Final part of the string of the files. Same as output of cleaned_counts().

Value

Examples