Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/squidpy/_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ def decorator2(obj: Any) -> Any:
``NUMBA_NUM_THREADS`` before running the program.
backend
Parallelization backend to use. See :class:`joblib.Parallel` for available options.
show_progress_bar
Whether to show the progress bar or not."""
_n_jobs = """\
n_jobs
Number of parallel jobs to use."""
_show_progress_bar = """\
show_progress_bar
Whether to show the progress bar or not."""
_channels = """\
Expand Down Expand Up @@ -420,6 +426,8 @@ def decorator2(obj: Any) -> Any:
cat_plotting=_cat_plotting,
plotting_returns=_plotting_returns,
parallelize=_parallelize,
n_jobs=_n_jobs,
show_progress_bar=_show_progress_bar,
channels=_channels,
segment_kwargs=_segment_kwargs,
ligrec_test_returns=_ligrec_test_returns,
Expand Down
Loading