My guess is that it can’t find NEURON, which does the calculation for HNN behind-the-scenes.
You can verify this by typing “nrniv” at the command line… if it gives an error, that’s confirmation.
If so, you can fix this by adding /usr/local/nrn/$CPU/bin to your $PATH like you did for openmpi.
--
You received this message because you are subscribed to the Google Groups "HNNSolver" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
hnnsolver+...@googlegroups.com.
To post to this group, send email to
hnns...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/hnnsolver/74a41c7a-581c-471d-acb0-e985ab0de346%40googlegroups.com.
For more options, visit
https://groups.google.com/d/optout.
Sorry to hear you’re still having trouble.
Please try the following:
Replace line 558 of /usr/local/hnn/morphology.py with the following two function definitions:
def parent(sec):
seg = sec.trueparentseg()
if seg is None:
return None
else:
return seg.sec
def parent_loc(sec, trueparent):
seg = sec.trueparentseg()
if seg is None:
return None
else:
return seg.x
To view this discussion on the web visit https://groups.google.com/d/msgid/hnnsolver/BN6PR08MB25625AA94485234A3179BDAE99BC0%40BN6PR08MB2562.namprd08.prod.outlook.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hnnsolver/CAGoJr2HQ%2Bii-Nv7%3DgggOL%2B7O_4tUj8JADLqOBZ_YkYDERg1Fyw%40mail.gmail.com.
Glad to hear it worked.
I’ll defer to Sam as far as where to ask questions.
Sam: I’ve made a pull request with this change, because there’s no reason to load all of rxd in just to get that information. (In older versions of NEURON, this was a little harder to get.) We’re going to keep trying to see if we can reproduce the issue (I suspect it’s some form of path issue), because that means rxd won’t work on Luke’s setup… but there should be no HNN implications.
- Robert
To view this discussion on the web visit https://groups.google.com/d/msgid/hnnsolver/BN6PR08MB2562B67274340C68E8C68B1299BD0%40BN6PR08MB2562.namprd08.prod.outlook.com.