anndict.utils.add_col_to_adata_var

anndict.utils.add_col_to_adata_var#

anndict.utils.add_col_to_adata_var(adata, indices, values, new_col_name)[source]#

Adds a column to adata.var for given indices.

Parameters:
adata AnnData

An AnnData.

indices list[int | str] | tuple[int | str, ...]

Array of indices where labels will be assigned.

values list[int | float | str | bool | Timestamp] | tuple[int | float | str | bool | Timestamp, ...]

Array of labels corresponding to the indices.

new_label_key

Name of the column in adata.var where the labels will be stored.

new_col_name str

Return type:

None

Returns:

None

Notes

Modifies adata in-place.

See also

add_col_to_adata_obs()

to add a column to adata.obs.

add_col_to_pd_df()

the underlying function that adds a column to a DataFrame.