mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +00:00
a bunch of docs stuff
This commit is contained in:
parent
464d95d64d
commit
af5b947d12
192 changed files with 3955 additions and 292 deletions
|
@ -19,8 +19,6 @@ build:
|
|||
- poetry config virtualenvs.create false
|
||||
post_install:
|
||||
- poetry install --no-root
|
||||
- pip install ./nwb_linkml
|
||||
- pip install ./nwb_schema_language
|
||||
|
||||
# Optionally build your docs in additional formats such as PDF and ePub
|
||||
# formats:
|
||||
|
|
|
@ -14,7 +14,32 @@ help:
|
|||
|
||||
.PHONY: help Makefile
|
||||
|
||||
serve:
|
||||
sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) --watch ../nwb_linkml/src/nwb_linkml --watch ../nwb_schema_language/src/nwb_schema_language
|
||||
|
||||
serve_fast:
|
||||
sphinx-autobuild -a "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) --watch ../nwb_linkml/src/nwb_linkml --watch ../nwb_schema_language/src/nwb_schema_language
|
||||
|
||||
|
||||
|
||||
models:
|
||||
export SPHINX_APIDOC_OPTIONS="members,show-inheritance,exclude-members ConfiguredBaseClass"
|
||||
rm ./api/models/*
|
||||
sphinx-apidoc -e --force \
|
||||
--templatedir=./_templates \
|
||||
--implicit-namespaces \
|
||||
-o ./api/models/ \
|
||||
../nwb_linkml/src/nwb_linkml/ \
|
||||
"*[!models]*"
|
||||
|
||||
find ./api/models/ -type f ! -name '*models*' -delete
|
||||
# fix names so they're not so dang long
|
||||
find ./api/models -type f -name '*.rst' -exec gsed -i -e 's/^.*\.\(.*\) package/\1 /g' {} \;
|
||||
find ./api/models -type f -name '*.rst' -exec gsed -i -e 's/^.*\.\(.*\) module/\1 /g' {} \;
|
||||
|
||||
|
||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||
%: Makefile
|
||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||
|
||||
|
|
9
docs/_templates/module.rst._t
vendored
Normal file
9
docs/_templates/module.rst._t
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
{%- if show_headings %}
|
||||
{{- [basename, "module"] | join(' ') | e | heading }}
|
||||
|
||||
{% endif -%}
|
||||
.. automodule:: {{ qualname }}
|
||||
:exclude-members: ConfiguredBaseModel,LinkML_Meta
|
||||
{%- for option in automodule_options %}
|
||||
:{{ option }}:
|
||||
{%- endfor %}
|
51
docs/_templates/package.rst_t
vendored
Normal file
51
docs/_templates/package.rst_t
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
{%- macro automodule(modname, options) -%}
|
||||
.. automodule:: {{ modname }}
|
||||
{%- for option in options %}
|
||||
:{{ option }}:
|
||||
{%- endfor %}
|
||||
{%- endmacro %}
|
||||
|
||||
{%- macro toctree(docnames) -%}
|
||||
.. toctree::
|
||||
:maxdepth: {{ maxdepth }}
|
||||
{% for docname in docnames %}
|
||||
{{ docname }}
|
||||
{%- endfor %}
|
||||
{%- endmacro %}
|
||||
|
||||
{%- if is_namespace %}
|
||||
{{- [pkgname, "namespace"] | join(" ") | e | heading }}
|
||||
{% else %}
|
||||
{{- [pkgname, "package"] | join(" ") | e | heading }}
|
||||
{% endif %}
|
||||
|
||||
{%- if is_namespace %}
|
||||
.. py:module:: {{ pkgname }}
|
||||
{% endif %}
|
||||
|
||||
{%- if modulefirst and not is_namespace %}
|
||||
{{ automodule(pkgname, automodule_options) }}
|
||||
{% endif %}
|
||||
|
||||
{%- if subpackages %}
|
||||
|
||||
{{ toctree(subpackages) }}
|
||||
{% endif %}
|
||||
|
||||
{%- if submodules %}
|
||||
{% if separatemodules %}
|
||||
{{ toctree(submodules) }}
|
||||
{% else %}
|
||||
{%- for submodule in submodules %}
|
||||
{% if show_headings %}
|
||||
{{- [submodule, "module"] | join(" ") | e | heading(2) }}
|
||||
{% endif %}
|
||||
{{ automodule(submodule, automodule_options) }}
|
||||
{% endfor %}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
|
||||
{%- if not modulefirst and not is_namespace %}
|
||||
|
||||
{{ automodule(pkgname, automodule_options) }}
|
||||
{% endif %}
|
|
@ -1,8 +0,0 @@
|
|||
# API
|
||||
|
||||
```{toctree}
|
||||
:maxdepth: 2
|
||||
|
||||
nwb_linkml/index
|
||||
nwb_schema_language/index
|
||||
```
|
22
docs/api/models/nwb_linkml.models.pydantic.core.rst
Normal file
22
docs/api/models/nwb_linkml.models.pydantic.core.rst
Normal file
|
@ -0,0 +1,22 @@
|
|||
core
|
||||
========================================
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
nwb_linkml.models.pydantic.core.v2_2_0
|
||||
nwb_linkml.models.pydantic.core.v2_2_1
|
||||
nwb_linkml.models.pydantic.core.v2_2_2
|
||||
nwb_linkml.models.pydantic.core.v2_2_4
|
||||
nwb_linkml.models.pydantic.core.v2_2_5
|
||||
nwb_linkml.models.pydantic.core.v2_3_0
|
||||
nwb_linkml.models.pydantic.core.v2_4_0
|
||||
nwb_linkml.models.pydantic.core.v2_5_0
|
||||
nwb_linkml.models.pydantic.core.v2_6_0_alpha
|
||||
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_base
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_base
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_behavior
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_behavior
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_device
|
||||
==================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_device
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ecephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_ecephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_epoch
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_epoch
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_file
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_file
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_icephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_icephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_image
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_image
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_language
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_language
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_misc
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_misc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ogen
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_ogen
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ophys
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_ophys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_retinotopy
|
||||
======================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_retinotopy
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
namespace
|
||||
==========================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0.namespace
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_0.rst
Normal file
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_0.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
v2\_2\_0
|
||||
=================================================
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_base
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_behavior
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_device
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_ecephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_epoch
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_file
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_icephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_image
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_language
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_misc
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_ogen
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_ophys
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.core_nwb_retinotopy
|
||||
nwb_linkml.models.pydantic.core.v2_2_0.namespace
|
||||
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_0
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_base
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_base
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_behavior
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_behavior
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_device
|
||||
==================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_device
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ecephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_ecephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_epoch
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_epoch
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_file
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_file
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_icephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_icephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_image
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_image
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_language
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_language
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_misc
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_misc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ogen
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_ogen
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ophys
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_ophys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_retinotopy
|
||||
======================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_retinotopy
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
namespace
|
||||
==========================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1.namespace
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_1.rst
Normal file
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_1.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
v2\_2\_1
|
||||
=================================================
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_base
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_behavior
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_device
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_ecephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_epoch
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_file
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_icephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_image
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_language
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_misc
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_ogen
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_ophys
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.core_nwb_retinotopy
|
||||
nwb_linkml.models.pydantic.core.v2_2_1.namespace
|
||||
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_1
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_base
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_base
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_behavior
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_behavior
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_device
|
||||
==================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_device
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ecephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_ecephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_epoch
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_epoch
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_file
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_file
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_icephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_icephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_image
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_image
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_language
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_language
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_misc
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_misc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ogen
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_ogen
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ophys
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_ophys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_retinotopy
|
||||
======================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_retinotopy
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
namespace
|
||||
==========================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2.namespace
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_2.rst
Normal file
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_2.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
v2\_2\_2
|
||||
=================================================
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_base
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_behavior
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_device
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_ecephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_epoch
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_file
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_icephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_image
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_language
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_misc
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_ogen
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_ophys
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.core_nwb_retinotopy
|
||||
nwb_linkml.models.pydantic.core.v2_2_2.namespace
|
||||
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_2
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_base
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_base
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_behavior
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_behavior
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_device
|
||||
==================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_device
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ecephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_ecephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_epoch
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_epoch
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_file
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_file
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_icephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_icephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_image
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_image
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_language
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_language
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_misc
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_misc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ogen
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_ogen
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ophys
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_ophys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_retinotopy
|
||||
======================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_retinotopy
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
namespace
|
||||
==========================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4.namespace
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_4.rst
Normal file
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_4.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
v2\_2\_4
|
||||
=================================================
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_base
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_behavior
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_device
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_ecephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_epoch
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_file
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_icephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_image
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_language
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_misc
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_ogen
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_ophys
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.core_nwb_retinotopy
|
||||
nwb_linkml.models.pydantic.core.v2_2_4.namespace
|
||||
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_4
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_base
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_base
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_behavior
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_behavior
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_device
|
||||
==================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_device
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ecephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_ecephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_epoch
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_epoch
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_file
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_file
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_icephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_icephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_image
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_image
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_language
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_language
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_misc
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_misc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ogen
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_ogen
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ophys
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_ophys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_retinotopy
|
||||
======================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_retinotopy
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
namespace
|
||||
==========================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5.namespace
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_5.rst
Normal file
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_2_5.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
v2\_2\_5
|
||||
=================================================
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_base
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_behavior
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_device
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_ecephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_epoch
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_file
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_icephys
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_image
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_language
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_misc
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_ogen
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_ophys
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.core_nwb_retinotopy
|
||||
nwb_linkml.models.pydantic.core.v2_2_5.namespace
|
||||
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_2_5
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_base
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_base
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_behavior
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_behavior
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_device
|
||||
==================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_device
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ecephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_ecephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_epoch
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_epoch
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_file
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_file
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_icephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_icephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_image
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_image
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_language
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_language
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_misc
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_misc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ogen
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_ogen
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ophys
|
||||
=================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_ophys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_retinotopy
|
||||
======================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_retinotopy
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
namespace
|
||||
==========================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0.namespace
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_3_0.rst
Normal file
27
docs/api/models/nwb_linkml.models.pydantic.core.v2_3_0.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
v2\_3\_0
|
||||
=================================================
|
||||
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_base
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_behavior
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_device
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_ecephys
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_epoch
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_file
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_icephys
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_image
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_language
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_misc
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_ogen
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_ophys
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.core_nwb_retinotopy
|
||||
nwb_linkml.models.pydantic.core.v2_3_0.namespace
|
||||
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_3_0
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_base
|
||||
================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_4_0.core_nwb_base
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_behavior
|
||||
====================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_4_0.core_nwb_behavior
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_device
|
||||
==================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_4_0.core_nwb_device
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
|
@ -0,0 +1,7 @@
|
|||
core\_nwb\_ecephys
|
||||
===================================================================
|
||||
|
||||
.. automodule:: nwb_linkml.models.pydantic.core.v2_4_0.core_nwb_ecephys
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue