From f6a38d29e903909c73d78447848e422e6b1b3ee1 Mon Sep 17 00:00:00 2001 From: Lida Kanari Date: Thu, 15 Mar 2018 11:03:15 +0100 Subject: [PATCH] Example for full synthesis of a cell --- examples/synthesize_neuron.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/synthesize_neuron.py b/examples/synthesize_neuron.py index 0636ce03..d50aba40 100644 --- a/examples/synthesize_neuron.py +++ b/examples/synthesize_neuron.py @@ -8,7 +8,7 @@ output_name = 'TestNeuron' # Extract distributions from cells in input directory -filename = './test_data/bio/' +filename = './TNS/test_data/bio/' distr = tns.extract_input.distributions(filename, diameter_model=True) # Generate default parameters dictionary @@ -27,7 +27,7 @@ N.save(output_path=output_path) # Load the generated neuron -n = tmd.io.load_neuron(output_path + output_name + '.h5' +n = tmd.io.load_neuron(output_path + output_name + '.h5') # View your generated neuron view.view.neuron(n)