How to use the morphio.test.circuit_config function in morphio

To help you get started, we’ve selected a few morphio 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 BlueBrain / MorphIO / tests / brain / python / synapses.py View on Github external
def test_synapses(self):
        circuit = morphio.Circuit(morphio.test.circuit_config)
        synapses = circuit.afferent_synapses([320])
        del circuit
        delays = synapses.delays()
        for delay in delays:
            assert(delay < 10)
github BlueBrain / MorphIO / tests / brain / python / morphology.py View on Github external
def setUp(self):
        self.circuit = morphio.Circuit(morphio.test.circuit_config)
github BlueBrain / MorphIO / tests / brain / python / circuit.py View on Github external
def test_open(self):
        circuit = morphio.Circuit(morphio.test.circuit_config)