Description Usage Arguments Value Examples
Insert called ident results into metadata
1 2 3 4 5 6 7 | call_to_metadata(
res,
metadata,
cluster_col,
per_cell = FALSE,
rename_prefix = NULL
)
|
res |
dataframe of idents, such as output of cor_to_call |
metadata |
input metadata with tsne or umap coordinates and cluster ids |
cluster_col |
metadata column, can be cluster or cellid |
per_cell |
whether the res dataframe is listed per cell |
rename_prefix |
prefix to add to type and r column names |
new metadata with added columns
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | res <- clustify(
input = pbmc_matrix_small,
metadata = pbmc_meta,
cluster_col = "classified",
ref_mat = cbmc_ref
)
res2 <- cor_to_call(res, cluster_col = "classified")
call_to_metadata(
res = res2,
metadata = pbmc_meta,
cluster_col = "classified",
rename_prefix = "assigned"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.