cqc_fix | R Documentation |
Peform the actual fixing action (i.e update or delete)
cqc_fix(x, ...)
x |
the |
... |
addiitional arguments not for the user. |
# Read in FCS files with inconsistencies fcs_files <- list.files(system.file("extdata", "GvHD_QC", package = "cytoqc"), full.names = TRUE) qc_cf_list <- cqc_load_fcs(fcs_files) # Check for marker inconsitencies groups <- cqc_check(qc_cf_list, type = "marker") # Attempt to fix them automatically match_result <- cqc_match(groups, ref = c("CD14 PerCP", "CD15 FITC", "CD33 APC", "CD45 PE", "FSC-Height", "SSC-Height", "Time")) # Add a manual match that automatic matching could not find match_result <- cqc_match_update(match_result, map = c("PTPRC PE" = "CD45 PE")) # Apply the fix to the original cytoframes cqc_fix(match_result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.