If morphology is built dynamically then it always has `SomaType.SOMA_UNDEFINED`. ```python from morphio.mut import Morphology morpho = Morphology() morpho.soma.points = [[0, 0, 0]] morpho.soma.diameters = [1, 1] print(morpho.soma.type) # SomaType.SOMA_UNDEFINED ``` Dynamic detection poses a question. How to detect soma types that exist only for SWC? For example `SOMA_CYLINDERS`? cc @tomdele @mgeplf
If morphology is built dynamically then it always has
SomaType.SOMA_UNDEFINED.Dynamic detection poses a question. How to detect soma types that exist only for SWC? For example
SOMA_CYLINDERS?cc @tomdele @mgeplf