Configuration Options#
This module provides a configuration system that controls the global behavior of all scikit-bio functionalities.
Functions#
Get the current value of a scikit-bio configuration option. |
|
Set a scikit-bio configuration option. |
Configuration options#
- table_output{“pandas”, “numpy”, “polars”}, default=”pandas”
The preferred output format of tables. See details.
- engine{“cython”, “numba”}, default=”cython”
The default compute engine for functions that support multiple engines. Functions accept an
engineargument to override this per call. The"numba"engine requires the optional Numba dependency.