Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbor
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arbor-sim
arbor
Commits
bf739a8e
Unverified
Commit
bf739a8e
authored
3 years ago
by
Brent Huisman
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Expose explicit cv-policy in Python and Python docs. (#1502)
parent
20c7216b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/python/morphology.rst
+65
-41
65 additions, 41 deletions
doc/python/morphology.rst
python/cells.cpp
+10
-0
10 additions, 0 deletions
python/cells.cpp
with
75 additions
and
41 deletions
doc/python/morphology.rst
+
65
−
41
View file @
bf739a8e
...
...
@@ -315,47 +315,6 @@ Cable cell morphology
:param int i: branch index
:rtype: list
.. _pyswc:
.. py:function:: load_swc_arbor(filename)
Loads the :class:`morphology` from an SWC file according to arbor's SWC specifications.
(See the morphology concepts :ref:`page <morph-formats>` for more details).
The samples in the SWC files are treated as the end points of segments, where a
sample and its parent form a segment.
The :py:attr:`tag <segment.tag>` of each segment is the
`structure identifier <http://www.neuronland.org/NLMorphologyConverter/MorphologyFormats/SWC/Spec.html>`_
of the distal sample.
The structure identifier of the first (root) sample is ignored, as it can only be the
proximal end of any segment.
.. note::
This method does not interpret the first sample, typically associated with the soma,
as a sphere. SWC files with single point somas are common, for example
`SONATA <https://github.com/AllenInstitute/sonata/blob/master/docs/SONATA_DEVELOPER_GUIDE.md#representing-biophysical-neuron-morphologies>`_
model descriptions.
Such representations are challenging to consistently interpret in different
simulation tools because they require heuristics and, often undocumented, rules
for how to interpret the connectin of axons and dendrites to the soma.
The :func:`load_swc_neuron` function provides support for loading
SWC files according to the interpretation used by NEURON.
:param str filename: the name of the SWC file.
:rtype: morphology
.. py:function:: load_swc_neuron(filename)
Loads the :class:`morphology` from an SWC file according to NEURON's ``Import3D``
interpretation of the SWC specification.
See :ref:`the SWC file documention <formatswc-neuron>` for more details.
:param str filename: the name of the SWC file.
:rtype: morphology
.. py:class:: place_pwlin
A :class:`place_pwlin` object allows the querying of the 3-d location of locations and cables
...
...
@@ -494,6 +453,21 @@ constitute part of the CV boundary point set.
:param str domain: The region on which the policy is applied.
.. py:function:: cv_policy_explicit(locset, domain='(all)')
Use the provided locset as control volume boundaries.
.. code-block:: Python
# Place CV boundaries midway every branch.
midbranch_cvp = arbor.cv_policy_explicit('(on-branches 0.5)')
# Place CV boundaries at 10 random positions on the soma.
random_soma_cvp = arbor.cv_policy_explicit('(uniform (tag 3) 0 9 0)','"soma"')
:param str locset: The locset on which CV boundaries are placed.
:param str domain: The region on which the policy is applied.
.. py:function:: cv_policy_every_segment(domain='(all)')
Use every sample point in the morphology definition as a CV boundary, optionally
...
...
@@ -520,8 +494,55 @@ constitute part of the CV boundary point set.
:param float max_etent: The maximum length for generated CVs.
:param str domain: The region on which the policy is applied.
.. _pyswc:
SWC
---
.. py:function:: load_swc_arbor(filename)
Loads the :class:`morphology` from an SWC file according to arbor's SWC specifications.
(See the morphology concepts :ref:`page <morph-formats>` for more details).
The samples in the SWC files are treated as the end points of segments, where a
sample and its parent form a segment.
The :py:attr:`tag <segment.tag>` of each segment is the
`structure identifier <http://www.neuronland.org/NLMorphologyConverter/MorphologyFormats/SWC/Spec.html>`_
of the distal sample.
The structure identifier of the first (root) sample is ignored, as it can only be the
proximal end of any segment.
.. note::
This method does not interpret the first sample, typically associated with the soma,
as a sphere. SWC files with single point somas are common, for example
`SONATA <https://github.com/AllenInstitute/sonata/blob/master/docs/SONATA_DEVELOPER_GUIDE.md#representing-biophysical-neuron-morphologies>`_
model descriptions.
Such representations are challenging to consistently interpret in different
simulation tools because they require heuristics and, often undocumented, rules
for how to interpret the connectin of axons and dendrites to the soma.
The :func:`load_swc_neuron` function provides support for loading
SWC files according to the interpretation used by NEURON.
:param str filename: the name of the SWC file.
:rtype: morphology
.. py:function:: load_swc_neuron(filename)
Loads the :class:`morphology` from an SWC file according to NEURON's ``Import3D``
interpretation of the SWC specification.
See :ref:`the SWC file documention <formatswc-neuron>` for more details.
:param str filename: the name of the SWC file.
:rtype: morphology
.. _pyneuroml:
NeuroML
-------
.. py:class:: neuroml_morph_data
A :class:`neuroml_morphology_data` object contains a representation of a morphology defined in
...
...
@@ -616,6 +637,9 @@ constitute part of the CV boundary point set.
.. _pyasc:
Neurolucida
-----------
.. py:class:: asc_morphology
The morphology and label dictionary meta-data loaded from a Neurolucida ASCII ``.asc`` file.
...
...
This diff is collapsed.
Click to expand it.
python/cells.cpp
+
10
−
0
View file @
bf739a8e
...
...
@@ -78,6 +78,10 @@ arb::cv_policy make_cv_policy_single(const std::string& reg) {
return
arb
::
cv_policy_single
(
reg
);
}
arb
::
cv_policy
make_cv_policy_explicit
(
const
std
::
string
&
locset
,
const
std
::
string
&
reg
)
{
return
arb
::
cv_policy_explicit
(
locset
,
reg
);
}
arb
::
cv_policy
make_cv_policy_every_segment
(
const
std
::
string
&
reg
)
{
return
arb
::
cv_policy_every_segment
(
reg
);
}
...
...
@@ -251,6 +255,12 @@ void register_cells(pybind11::module& m) {
.
def
(
"__repr__"
,
[](
const
arb
::
cv_policy
&
p
)
{
return
"(cv-policy)"
;})
.
def
(
"__str__"
,
[](
const
arb
::
cv_policy
&
p
)
{
return
"(cv-policy)"
;});
m
.
def
(
"cv_policy_explicit"
,
&
make_cv_policy_explicit
,
"locset"
_a
,
"the locset describing the desired CV boundaries"
,
"domain"
_a
=
"(all)"
,
"the domain to which the policy is to be applied"
,
"Policy to create compartments at explicit locations."
);
m
.
def
(
"cv_policy_single"
,
&
make_cv_policy_single
,
"domain"
_a
=
"(all)"
,
"the domain to which the policy is to be applied"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment