scip.export package#

Submodules#

scip.export.anndata module#

scip.export.anndata.export(*, df: DataFrame, output: Path, filename: str) Future#

Exports dataframe to one AnnData .h5ad-file per partition.

Keyword Arguments:
  • df – Dataframe to be exported.

  • output – Path to directory where objects should be stored.

  • filename – Filename to give to partition objects (will be named with format string {filename}.{partition}.h5ad).

Returns:

Future that represents the export task.

scip.export.parquet module#

scip.export.parquet.export(*, df: DataFrame, output: Path, filename: str) Future#

Exports dataframe to one AnnData .parquet-file per partition.

Keyword Arguments:
  • df – Dataframe to be exported.

  • output – Path to directory where objects should be stored.

  • filename – Filename to give to partition objects (will be named with format string {filename}.{partition}.h5ad).

Returns:

Future that represents the export task.