You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
summary_format: str=typer.Option("csv", "--summary-format", help="Format for summary files: 'csv' or 'tsv' (default: csv)"),
511
516
log_dir: Optional[Path] =typer.Option(None, "--log-dir", help="Directory for log files"),
512
517
skip_existing: bool=typer.Option(True, "--skip-existing/--overwrite", help="Skip files that already have output"),
518
+
max_threads: Optional[int] =typer.Option(None, "--max-threads", help="Maximum number of threads for Polars (default: 8, set to 1 for minimal memory)"),
513
519
) ->None:
514
520
"""Extract metadata fields from multiple h5ad files in batch.
0 commit comments