How to use the nml.nml.Morphology function in nml

To help you get started, we’ve selected a few nml examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github NeuralEnsemble / libNeuroML / neuroml / development / opmorphology.py View on Github external
from nml.nml import Morphology

#what we also need is an SWC class, Optimized morphology can then be passed this.

class OptimizedMorphology(Morphology):
    def __init__(self):
        super(OptimizedMorphology,self).__init__()
github NeuralEnsemble / libNeuroML / neuroml / development / optimized_morphology.py View on Github external
from nml.nml import Morphology

class OptimizedMorphology(Morphology):
    super(OptimizedMorphology,self).__init__()