Skip to content

Add get_column_data_column() and set_column_data_column() to mimic se$ #99

@LTLA

Description

@LTLA

The R package allows people to get/set the column data with:

se$X <- runif(ncol(se))
se$X

as a shorthand for colData(se)$X. Doing the same for Python would allow users to replace

se.get_column_data().get_column("X")
se.set_column_data(se.get_column_data().set_column("X", ...)))

with just

se.get_column_data_column("X")
se.set_column_data_column("X", ...)

The second one is particularly convenient.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions