dsmtools.utils
This module contains generic utilities used by the data processing workflows served by its submodules. They are:
swc
: Functions related to basic SWC dataframes manipulations.ccf_atlas
: CCFv3 mouse brain atlas support.misc
: All other ungrouped utilities.
Proceed into each submodule for detailed descriptions of usage.
1""" 2This module contains generic utilities used by the data processing workflows served by its submodules. They are: 3 4* `swc`: Functions related to basic SWC dataframes manipulations. 5* `ccf_atlas`: CCFv3 mouse brain atlas support. 6* `misc`: All other ungrouped utilities. 7 8Proceed into each submodule for detailed descriptions of usage. 9""" 10 11from . import swc 12from . import ccf_atlas 13from . import misc 14 15__all__ = ['swc', 'ccf_atlas', 'misc']