Skip to content

Commit 2664070

Browse files
authored
Merge pull request #108 from MetaCell/development
Release 0.5.2
2 parents 4002b12 + 80e5eef commit 2664070

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

netpyne_ui/netpyne_model_interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def extractPopulations(self, netpyne_model, netpyne_geppetto_library, geppetto_m
8282

8383
# Save the cell position and update elements in defaultValue and size
8484
populations[cell['tags']['pop']].size = populations[cell['tags']['pop']].size + 1
85-
populations[cell['tags']['pop']].defaultValue.elements.append(ArrayElement(index=len(populations[cell['tags']['pop']].defaultValue.elements) , position=Point(x=float(cell['tags']['x']), y=float(cell['tags']['y']), z=float(cell['tags']['z']))))
85+
populations[cell['tags']['pop']].defaultValue.elements.append(ArrayElement(index=len(populations[cell['tags']['pop']].defaultValue.elements) , position=Point(x=float(cell['tags']['x']), y=-float(cell['tags']['y']), z=float(cell['tags']['z']))))
8686

8787
def extractInstances(self, netpyne_model, netpyne_geppetto_library, geppetto_model):
8888
instance = pygeppetto.Variable(id='network')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setuptools.setup(
1717
name="netpyne_ui",
18-
version="0.5.1",
18+
version="0.5.2",
1919
url="https://github.com/MetaCell/NetPyNE-UI",
2020
author="MetaCell",
2121
author_email="info@metacell.us",
@@ -38,6 +38,6 @@
3838
],
3939
install_requires=[
4040
'jupyter_geppetto==0.4.2',
41-
'netpyne==0.9.1'
41+
'netpyne==0.9.1.1'
4242
],
4343
)

0 commit comments

Comments
 (0)