tiledbsoma.Scene.set_transform_to_geometry_dataframe

Scene.set_transform_to_geometry_dataframe(key: str, subcollection: str | Sequence[str] = 'obsl', *, transform: CoordinateTransform, coordinate_space: CoordinateSpace | None = None) GeometryDataFrame

Adds the coordinate transform for the scene coordinate space to a geometry dataframe stored in the scene.

If the subcollection the geometry dataframe is inside of is more than one layer deep, the input should be provided as a sequence of names. For example, to set a transformation for geometry dataframe named “transcripts” in the “var/RNA” collection:

scene.set_transform_to_geometry_dataframe(
    'transcripts', transform, subcollection=['var', 'RNA'],
)
Parameters:
  • key – The name of the geometry dataframe.

  • subcollection – The name, or sequence of names, of the subcollection the dataframe is stored in. Defaults to 'obsl'.

  • transform – The coordinate transformation from the scene to the dataframe.

  • coordinate_space – Optional coordinate space for the dataframe. This will replace the existing coordinate space of the dataframe.

Returns:

The geometry dataframe, opened for writing.

Lifecycle: experimental