We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a7dbe commit 2a347f5Copy full SHA for 2a347f5
netpyne/network/netrxd.py
@@ -73,10 +73,10 @@ def addRxD(self, nthreads=None):
73
self._addSpecies(rxdParams['species'])
74
if 'states' in rxdParams:
75
self._addStates(rxdParams['states'])
76
- if 'reactions' in rxdParams:
77
- self._addReactions(rxdParams['reactions'])
78
if 'parameters' in rxdParams:
79
self._addParameters(rxdParams['parameters'])
+ if 'reactions' in rxdParams:
+ self._addReactions(rxdParams['reactions'])
80
if 'multicompartmentReactions' in rxdParams:
81
self._addReactions(rxdParams['multicompartmentReactions'], multicompartment=True)
82
if 'rates' in rxdParams:
0 commit comments