
Get the ADT feature names
get_adt_names.RdGet the main ADT feature names
Examples
# protein identifiers held by an `ADTCounts`
adt <- generate_single_cell_test_data_adt()
cell_info <- stats::setNames(
seq_len(nrow(adt$counts)),
rownames(adt$counts)
)
adt_clr <- new_adt_counts_clr(adt$counts, cell_info = cell_info)
head(get_adt_names(adt_clr))
#> [1] "protein_01" "protein_02" "protein_03" "protein_04" "protein_05"
#> [6] "protein_06"