-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Persistence diagram failed/empty list for some neurons #60
Comments
Hi and thanks for opening an issue. Could you please provide an SWC file example to reproduce the error? |
Hi: Thanks for the response! I've figured out the 0-length issue (some neurites are stored as type=0 in the SWCs so they are not read correctly when I specify dendrite_type = 'basal_dendrite'), so we're good with that. But unfortunately there are still some files that have "key error" issue. Please see the attached example. I converted it to .txt format since .swc is not supported by Github, you may need to change it back. By looking into this example, the get_ph_neuron() method first get a dictionary called ‘parents’, which is a dictionary of {children:parent} pairs, and use birth and death time to get the p-diagram, after the first round of iteration over the active nodes, a parent node is added to the active list, which is not a key in the ‘parents’ dictionary, thus throw the key error. For example, for the 5th dendrite:
Please let me know if you have any thoughts on this. Thank you very much! Best, |
Hi Ming, Thanks for reporting this issue. I checked your data and I see where it breaks. It looks like one of the sections connects to the wrong place. I suggest that you use the following way to load your files and I will check again later what goes wrong in the main loader.
This extracts the persistence diagrams correctly |
Hi:
I'm using this TMD method for SWC file classification for basal dendrites, it yields pretty good results. But for some SWCs, when using get_ph_neuron(), some neurons failed with an error "key error", and some neurons have nothing in the persistence diagram list. Could you please shed some light on what's causing the issue?
Thanks!
The text was updated successfully, but these errors were encountered: