Skip to content

Commit

Permalink
chore: edit changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsbck committed Jan 14, 2025
1 parent c082b2e commit 794f982
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ net.vis()

- changelog added to CI (#537, #558, @jnsbck)

- Add `jaxley.io.graph` for exporting and importing of jaxley modules to and from `networkx` graph objects.
- Adds a new (and improved) SWC reader, which is more flexible and should also be easier to extend in the future.
```python
from jaxley.io.graph import swc_to_graph, from_graph
graph = swc_to_graph(fname)
# do something to the swc graph, i.e. prune it
pruned_graph = do_something_to_graph(graph)
cell = from_graph(pruned_graph, ncomp=4)
```
- Adds a new `to_graph` method for jaxley modules, which exports a module to a `networkX` graph. This allows to seamlessly work with `networkX`'s graph manipulation or visualization functions.
- See [the improved SWC reader tutorial](https://jaxley.readthedocs.io/en/latest/tutorials/08_importing_morphologies.html) for more details.

# 0.5.0

### API changes
Expand Down

0 comments on commit 794f982

Please sign in to comment.