brainbuilder 0.20.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- brainbuilder-0.20.0/.git-blame-ignore-revs +5 -0
- brainbuilder-0.20.0/.github/workflows/sdist.yml +48 -0
- brainbuilder-0.20.0/.github/workflows/tox.yml +39 -0
- brainbuilder-0.20.0/.gitignore +12 -0
- brainbuilder-0.20.0/.gitlab-ci.yml +3 -0
- brainbuilder-0.20.0/.ruff.toml +1 -0
- brainbuilder-0.20.0/CHANGELOG.rst +160 -0
- brainbuilder-0.20.0/CONTRIBUTING.md +107 -0
- brainbuilder-0.20.0/LICENSE.txt +202 -0
- brainbuilder-0.20.0/MANIFEST.in +3 -0
- brainbuilder-0.20.0/PKG-INFO +61 -0
- brainbuilder-0.20.0/README.md +23 -0
- brainbuilder-0.20.0/brainbuilder/__init__.py +5 -0
- brainbuilder-0.20.0/brainbuilder/app/__init__.py +1 -0
- brainbuilder-0.20.0/brainbuilder/app/__main__.py +37 -0
- brainbuilder-0.20.0/brainbuilder/app/_utils.py +9 -0
- brainbuilder-0.20.0/brainbuilder/app/atlases.py +352 -0
- brainbuilder-0.20.0/brainbuilder/app/cells.py +666 -0
- brainbuilder-0.20.0/brainbuilder/app/mvd3.py +59 -0
- brainbuilder-0.20.0/brainbuilder/app/nrn.py +285 -0
- brainbuilder-0.20.0/brainbuilder/app/sonata.py +320 -0
- brainbuilder-0.20.0/brainbuilder/app/syn2.py +152 -0
- brainbuilder-0.20.0/brainbuilder/app/targets.py +227 -0
- brainbuilder-0.20.0/brainbuilder/cell_orientations.py +41 -0
- brainbuilder-0.20.0/brainbuilder/cell_positions.py +198 -0
- brainbuilder-0.20.0/brainbuilder/exceptions.py +6 -0
- brainbuilder-0.20.0/brainbuilder/masks.py +95 -0
- brainbuilder-0.20.0/brainbuilder/poisson_disc_sampling.py +258 -0
- brainbuilder-0.20.0/brainbuilder/utils/__init__.py +47 -0
- brainbuilder-0.20.0/brainbuilder/utils/bbp.py +207 -0
- brainbuilder-0.20.0/brainbuilder/utils/deprecate.py +24 -0
- brainbuilder-0.20.0/brainbuilder/utils/random.py +49 -0
- brainbuilder-0.20.0/brainbuilder/utils/sonata/__init__.py +1 -0
- brainbuilder-0.20.0/brainbuilder/utils/sonata/clip.py +74 -0
- brainbuilder-0.20.0/brainbuilder/utils/sonata/convert.py +272 -0
- brainbuilder-0.20.0/brainbuilder/utils/sonata/curate.py +479 -0
- brainbuilder-0.20.0/brainbuilder/utils/sonata/reindex.py +411 -0
- brainbuilder-0.20.0/brainbuilder/utils/sonata/split_population.py +915 -0
- brainbuilder-0.20.0/brainbuilder/utils/sonata/write_config.py +210 -0
- brainbuilder-0.20.0/brainbuilder/version.py +16 -0
- brainbuilder-0.20.0/brainbuilder.egg-info/PKG-INFO +61 -0
- brainbuilder-0.20.0/brainbuilder.egg-info/SOURCES.txt +161 -0
- brainbuilder-0.20.0/brainbuilder.egg-info/dependency_links.txt +1 -0
- brainbuilder-0.20.0/brainbuilder.egg-info/entry_points.txt +2 -0
- brainbuilder-0.20.0/brainbuilder.egg-info/requires.txt +18 -0
- brainbuilder-0.20.0/brainbuilder.egg-info/top_level.txt +1 -0
- brainbuilder-0.20.0/doc/Makefile +192 -0
- brainbuilder-0.20.0/doc/source/_static/.gitignore +0 -0
- brainbuilder-0.20.0/doc/source/_static/reindex_morphology.svg +357 -0
- brainbuilder-0.20.0/doc/source/api.rst +17 -0
- brainbuilder-0.20.0/doc/source/changelog.rst +1 -0
- brainbuilder-0.20.0/doc/source/cli.rst +79 -0
- brainbuilder-0.20.0/doc/source/conf.py +276 -0
- brainbuilder-0.20.0/doc/source/index.rst +20 -0
- brainbuilder-0.20.0/doc/source/reindex_sonata.rst +82 -0
- brainbuilder-0.20.0/doc/source/split-subcircuit.rst +69 -0
- brainbuilder-0.20.0/pyproject.toml +135 -0
- brainbuilder-0.20.0/scripts/reindex_alternative.py +192 -0
- brainbuilder-0.20.0/setup.cfg +4 -0
- brainbuilder-0.20.0/setup.py +3 -0
- brainbuilder-0.20.0/tests/functional/test_cell_positions_and_orientations.py +224 -0
- brainbuilder-0.20.0/tests/functional/test_sonata_curate.py +158 -0
- brainbuilder-0.20.0/tests/unit/data/builderConnectivityRecipeAllPathways.xml +12 -0
- brainbuilder-0.20.0/tests/unit/data/builderRecipeAllPathways.xml +62 -0
- brainbuilder-0.20.0/tests/unit/data/builderRecipeAllPathways_with_lattice.xml +464 -0
- brainbuilder-0.20.0/tests/unit/data/cellRecipe.xml +18 -0
- brainbuilder-0.20.0/tests/unit/data/cell_composition_v1.yaml +19 -0
- brainbuilder-0.20.0/tests/unit/data/cell_composition_v2.yaml +18 -0
- brainbuilder-0.20.0/tests/unit/data/circuit.mvd2 +29 -0
- brainbuilder-0.20.0/tests/unit/data/circuit_nodes.sonata +0 -0
- brainbuilder-0.20.0/tests/unit/data/expected-cells-with-mini-frequencies.tsv +7 -0
- brainbuilder-0.20.0/tests/unit/data/extneuronDB.dat +2 -0
- brainbuilder-0.20.0/tests/unit/data/hierarchy.json +16329 -0
- brainbuilder-0.20.0/tests/unit/data/mecombo_emodel.dat +2 -0
- brainbuilder-0.20.0/tests/unit/data/mini_frequencies.tsv +7 -0
- brainbuilder-0.20.0/tests/unit/data/neuronDBv2.dat +2 -0
- brainbuilder-0.20.0/tests/unit/data/pre_mini_frequency_assignment_cells_no_layer.tsv +7 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/asc/0/0/0.asc +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/asc/1.asc +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/asc/2.asc +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/circuit_config.json +26 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/h5/0/0/0.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/h5/1.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/h5/2.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/nodes.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/swc/0/0/0.swc +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/swc/1.swc +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/clip/swc/2.swc +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/curate/edges.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/curate/neurondbExt.dat +2 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/curate/nodes.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/curate/projection.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/curate/soma-only.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/curate/wrong-order-with-unifurcations.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/edges.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/morphs/three_child_merged.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/morphs/three_child_unmerged.asc +53 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/morphs/three_child_unmerged.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/morphs/two_child_merged.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/morphs/two_child_unmerged.asc +44 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/morphs/two_child_unmerged.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/reindex/nodes.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/00/circuit_config.json +31 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/00/edges_L2_X__L6_Y__chemical.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/00/edges_L6_Y.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/00/edges_L6_Y__L2_X__chemical.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/00/nodes_L2_X.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/00/nodes_L6_Y.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/01/edges_A__B__chemical.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/01/edges_B.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/01/edges_B__A__chemical.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/02/edges_A.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/03/edges_B.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/04/edges_A.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/04/edges_A__B__chemical.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/05/edges_B.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/05/edges_B__A__chemical.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/edges.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/node_sets.json +4 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/nodes.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/circuit_config.json +57 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/create_data.py +187 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/networks/edges/edges.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/networks/edges/virtual_edges_V1.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/networks/edges/virtual_edges_V2.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/networks/nodes/nodes.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/networks/nodes/virtual_nodes_V1.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/networks/nodes/virtual_nodes_V2.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/sonata/split_population/split_subcircuit/node_sets.json +6 -0
- brainbuilder-0.20.0/tests/unit/data/start.target +97 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/cell_proteins.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/cells.tsv +5 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/gene_expressions.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/gene_mapping.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/mtype_taxonomy.tsv +10 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/mvd3_content.csv +31 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/subcellular.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/synapse_proteins.h5 +0 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/synapses.tsv +3 -0
- brainbuilder-0.20.0/tests/unit/data/subcellular/transcriptome.csv +16 -0
- brainbuilder-0.20.0/tests/unit/data/user.target +4 -0
- brainbuilder-0.20.0/tests/unit/test_add_subregion_property.py +47 -0
- brainbuilder-0.20.0/tests/unit/test_app/test_main.py +11 -0
- brainbuilder-0.20.0/tests/unit/test_app/test_sonata.py +315 -0
- brainbuilder-0.20.0/tests/unit/test_app_cells.py +57 -0
- brainbuilder-0.20.0/tests/unit/test_app_targets.py +37 -0
- brainbuilder-0.20.0/tests/unit/test_bbp.py +299 -0
- brainbuilder-0.20.0/tests/unit/test_cell_orientations.py +43 -0
- brainbuilder-0.20.0/tests/unit/test_cell_positions.py +147 -0
- brainbuilder-0.20.0/tests/unit/test_mini_frequencies.py +57 -0
- brainbuilder-0.20.0/tests/unit/test_poisson_disc_sampling.py +148 -0
- brainbuilder-0.20.0/tests/unit/test_random.py +34 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/test_clip.py +61 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/test_convert.py +146 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/test_curate.py +225 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/test_reindex.py +359 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/test_reindex_app.py +106 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/test_split_population.py +604 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/test_write_config.py +165 -0
- brainbuilder-0.20.0/tests/unit/test_sonata/utils.py +48 -0
- brainbuilder-0.20.0/tools/filter_extneurondbdat.py +110 -0
- brainbuilder-0.20.0/tools/parameters_poisson_disc_sampling.py +176 -0
- brainbuilder-0.20.0/tox.ini +99 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: sdist
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
pull_request:
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- main
|
|
9
|
+
release:
|
|
10
|
+
types:
|
|
11
|
+
- published
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
|
|
15
|
+
build_sdist:
|
|
16
|
+
name: Build sdist
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
|
|
21
|
+
- name: Build SDist
|
|
22
|
+
run: pipx run build --sdist
|
|
23
|
+
|
|
24
|
+
- name: Check metadata
|
|
25
|
+
run: pipx run twine check dist/*
|
|
26
|
+
|
|
27
|
+
- uses: actions/upload-artifact@v4
|
|
28
|
+
with:
|
|
29
|
+
name: build
|
|
30
|
+
path: dist
|
|
31
|
+
|
|
32
|
+
upload_sdist:
|
|
33
|
+
name: Upload sdist
|
|
34
|
+
needs: [build_sdist]
|
|
35
|
+
runs-on: ubuntu-latest
|
|
36
|
+
permissions:
|
|
37
|
+
# IMPORTANT: this permission is mandatory for trusted publishing
|
|
38
|
+
id-token: write
|
|
39
|
+
if: github.event_name == 'release' && github.event.action == 'published'
|
|
40
|
+
|
|
41
|
+
steps:
|
|
42
|
+
- uses: actions/download-artifact@v4
|
|
43
|
+
with:
|
|
44
|
+
name: build
|
|
45
|
+
path: dist
|
|
46
|
+
|
|
47
|
+
- name: Publish package distributions to PyPI
|
|
48
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: Tox
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
pull_request:
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- main
|
|
9
|
+
release:
|
|
10
|
+
types:
|
|
11
|
+
- published
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
tox_checks:
|
|
15
|
+
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
strategy:
|
|
18
|
+
matrix:
|
|
19
|
+
python-version: ['3.9', '3.10', '3.11', '3.12']
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
|
|
23
|
+
- uses: actions/checkout@v4
|
|
24
|
+
with:
|
|
25
|
+
submodules: true
|
|
26
|
+
|
|
27
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
28
|
+
uses: actions/setup-python@v4
|
|
29
|
+
with:
|
|
30
|
+
python-version: ${{ matrix.python-version }}
|
|
31
|
+
|
|
32
|
+
- name: Install dependencies
|
|
33
|
+
run: |
|
|
34
|
+
sudo apt-get update && sudo apt-get install hdf5-tools
|
|
35
|
+
python -m pip install --upgrade pip setuptools
|
|
36
|
+
pip install tox-gh-actions
|
|
37
|
+
|
|
38
|
+
- name: Run tox
|
|
39
|
+
run: tox
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
line-length = 100
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
Changelog
|
|
2
|
+
=========
|
|
3
|
+
|
|
4
|
+
## 0.19.1
|
|
5
|
+
* Apply black and isort
|
|
6
|
+
* Add ``--log-level`` option to the main CLI.
|
|
7
|
+
* Include app in coverage calculation.
|
|
8
|
+
* Add tests for app/sonata.
|
|
9
|
+
|
|
10
|
+
## 0.19.0
|
|
11
|
+
* Enforce layer to be a string (NSETM-2261)
|
|
12
|
+
|
|
13
|
+
## 0.18.7
|
|
14
|
+
* Fix functional tests with snap 2.0
|
|
15
|
+
* Silence nptyping DeprecationWarnings
|
|
16
|
+
|
|
17
|
+
## 0.18.6
|
|
18
|
+
* Make circuit splitting compatible with snap 2.0
|
|
19
|
+
|
|
20
|
+
## 0.18.5
|
|
21
|
+
* Remove subcellular querier (BRBLD-97)
|
|
22
|
+
|
|
23
|
+
## 0.18.4
|
|
24
|
+
* Zero close to zero values (NSETM-2128)
|
|
25
|
+
* Add curation facilities to update dtypes of a circuit (NSETM-2124)
|
|
26
|
+
* Fix implicit dependencies and tests with snap 1.0 (NSETM-2123)
|
|
27
|
+
* Use pytest-basetemp-permissions plugin (NSETM-2125)
|
|
28
|
+
* Use pytest tmp_path fixture for tests, add ruff
|
|
29
|
+
* Update for python 3.10
|
|
30
|
+
* teach `target node_sets --full-hierarchy`, which includes, from leaf to root, all the region names as node_sets
|
|
31
|
+
|
|
32
|
+
## 0.18.3
|
|
33
|
+
* Use bool instead of np.bool.
|
|
34
|
+
|
|
35
|
+
## 0.18.2
|
|
36
|
+
* Relax zero cell count assertion to a warning in `place`.
|
|
37
|
+
* Remove `assign_emodels2`; was a work around for the NCX project
|
|
38
|
+
* be more relaxed about matching `layer` and `subregion`
|
|
39
|
+
* for emodel assignment, try `layer` first, and fall back to `subregion` columns
|
|
40
|
+
|
|
41
|
+
## 0.18.1
|
|
42
|
+
* Densities are now loaded using float64 precision. Higher precision aids in calculating
|
|
43
|
+
correctly the total counts when accumulation of small and large densities is involved.
|
|
44
|
+
* `layer` made an optional trait in `brainbuilder.app.cells.place`
|
|
45
|
+
* `subregion` added as cells property in `brainbuilder.app.cells.place`
|
|
46
|
+
|
|
47
|
+
## 0.18.0
|
|
48
|
+
* Add simple circuit splitting for SONATA (BRBLD-90).
|
|
49
|
+
* Add subcircuit splitting for SONATA (BRBLD-90).
|
|
50
|
+
* teach `node-set-from-targets` to take paths to files, add to documentation
|
|
51
|
+
* Add support for copying the used morphologies from a SONATA circuit (BRBLD-93).
|
|
52
|
+
|
|
53
|
+
## 0.17.0
|
|
54
|
+
* Update ``write_network_config`` to be compatible with the new BBP sonata specs, moved from
|
|
55
|
+
``brainbuilder.utils.sonata.convert`` to ``brainbuilder.utils.sonata.config`` (NSETM-1526).
|
|
56
|
+
* Deprecate `FAST-HEMISPHERE` for assigning the `hemisphere` cells property,
|
|
57
|
+
and support loading it from a volumetric dataset (BRBLD-89).
|
|
58
|
+
|
|
59
|
+
## 0.16.2
|
|
60
|
+
* Add more intelligent target to node set converter (BBPP82-514)
|
|
61
|
+
* Use pytest for tests (NSETM-1543)
|
|
62
|
+
* Deprecate ``brainbuilder.utils.sonata.convert.write_network_config``. Use circuit-build
|
|
63
|
+
project instead (NSETM-1526).
|
|
64
|
+
* Fix ``brainbuilder.utils.sonata.convert.write_node_set_from_targets`` due to optimization
|
|
65
|
+
of targets in bluepy==2.4.1.
|
|
66
|
+
|
|
67
|
+
## 0.16.1
|
|
68
|
+
* Fix compat for bluepy>=2.3
|
|
69
|
+
|
|
70
|
+
## 0.16.0
|
|
71
|
+
* Refactor neurondb functions from `brainbuilder.utils.bbp`. The previous API must be changed as:
|
|
72
|
+
|
|
73
|
+
- ``load_neurondb(file, False)`` => ``load_neurondb(file)``
|
|
74
|
+
- ``load_neurondb(file, True)`` => ``load_extneurondb(file)``
|
|
75
|
+
- ``load_neurondb_v3(file)`` => ``load_extneurondb(file)``
|
|
76
|
+
|
|
77
|
+
## 0.15.1
|
|
78
|
+
* Introduce [reindex] extras
|
|
79
|
+
* Move morph-tool to test dependencies
|
|
80
|
+
|
|
81
|
+
## 0.15.0
|
|
82
|
+
* Drop python 2 support
|
|
83
|
+
* Add 'split_population' SONATA command to break monolithic node/edge files into smaller version
|
|
84
|
+
* BBPP82-499: Add `cells positions_and_orientations` command to create a sonata file to be used by the web Cell Atlas
|
|
85
|
+
and by Point neuron whole mouse brain
|
|
86
|
+
* Allow users to set the seed of the numpy random generator when calling `cell_positions.create_cell_positions`
|
|
87
|
+
* new python API `brainbuilder.utils.bbp.load_cell_composition` to load cell composition yaml
|
|
88
|
+
* Check if all the mecombo from a cell file are present in the emodel release
|
|
89
|
+
in `utils.sonata.convert._add_me_info` function. If not raise.
|
|
90
|
+
|
|
91
|
+
## 0.14.1
|
|
92
|
+
* Fix bugs du to voxcell >= 3.0.0
|
|
93
|
+
* Add a test to validate the behaviour of `utils.sonata.convert.write_network_config`
|
|
94
|
+
|
|
95
|
+
## 0.14.0
|
|
96
|
+
* Add 'functional' tox env for functional tests
|
|
97
|
+
* Add a new package `utils.sonata`. Move all SONATA related utils there
|
|
98
|
+
* Add a new module `utils.sonata.curate` to curate/fix existing SONATA circuits
|
|
99
|
+
* Fix updating edge positions during reindex of `utils.sonata.reindex`
|
|
100
|
+
* Allow None `mecombo_info_path` in `utils.sonata.convert.provide_me_info`
|
|
101
|
+
|
|
102
|
+
## 0.13.2
|
|
103
|
+
* Catch duplicate me-combos
|
|
104
|
+
|
|
105
|
+
## 0.13.1
|
|
106
|
+
* Add "--input" option to "cells.place"
|
|
107
|
+
* Fix losing of SONATA population name at "cells.assign_emodels"
|
|
108
|
+
|
|
109
|
+
## 0.13.0
|
|
110
|
+
* Create "sonata.provide_me_info". This action provisions SONATA nodes with ME info
|
|
111
|
+
* "sonata.from_mvd3" reuses "sonata.provide_me_info" under the hood
|
|
112
|
+
|
|
113
|
+
## 0.12.1
|
|
114
|
+
* Fixes to sonata functions
|
|
115
|
+
* "assign_emodels2" function now adds the missing biophysical field
|
|
116
|
+
* "sonata.from_mvd3" remove the library argument (handled by voxcell now)
|
|
117
|
+
* "sonata.from_mvd3" add a model type
|
|
118
|
+
|
|
119
|
+
## 0.12.0
|
|
120
|
+
|
|
121
|
+
* Allows cli with mvd3 inputs/outputs to use sonata files instead. The format detection is done
|
|
122
|
+
using the file extension : '.mvd3' will save/read a 'mvd3' file. For any other file extension,
|
|
123
|
+
sonata is used.
|
|
124
|
+
* "place" cli can output seamlessly sonata or mvd3 files
|
|
125
|
+
* "assign_emodels/assign_emodels2" can use sonata or mvd3 files as input
|
|
126
|
+
* "assign" cli can use sonata or mvd3 files as input
|
|
127
|
+
* rename of "target.from_mvd3" to "target.from_input" and can use both formats as input
|
|
128
|
+
* "target.node_sets" can use both formats as input
|
|
129
|
+
|
|
130
|
+
## 0.11.10
|
|
131
|
+
|
|
132
|
+
* Add atlas based node set with sonata files [NSETM-1010]
|
|
133
|
+
* Change the node_set location inside the sonata config file. Now attached to the circuit not
|
|
134
|
+
the node files
|
|
135
|
+
|
|
136
|
+
## 0.11.9
|
|
137
|
+
|
|
138
|
+
* added reindex for only children, need to convert connectivity to swc
|
|
139
|
+
* updated & fixed documentation
|
|
140
|
+
* Fix empty query_based crash [NSETM-1003]
|
|
141
|
+
|
|
142
|
+
## 0.11.8
|
|
143
|
+
|
|
144
|
+
* atlases creation cli
|
|
145
|
+
|
|
146
|
+
## 0.11.7
|
|
147
|
+
|
|
148
|
+
* Use NodePopulation.from_cell_collection
|
|
149
|
+
* BBPBGLIB-557: use SONATA naming, not syn2
|
|
150
|
+
* Add target to node_set direct converter
|
|
151
|
+
|
|
152
|
+
## 0.11.6
|
|
153
|
+
|
|
154
|
+
* add sonata2nrn converter, so we can build spatial indices
|
|
155
|
+
|
|
156
|
+
## 0.11.5
|
|
157
|
+
|
|
158
|
+
* add syn2 concat and check support
|
|
159
|
+
* BBPP82-94: Add @library enums to mvd3 -> sonata node converter
|
|
160
|
+
* remove seed handling: NSETM-215
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# Contribution Guide
|
|
2
|
+
|
|
3
|
+
We would love for you to contribute to the brainbuilder project and help make it better than it is today.
|
|
4
|
+
As a contributor, here are the guidelines we would like you to follow:
|
|
5
|
+
|
|
6
|
+
- [Question or Problem?](#got-a-question)
|
|
7
|
+
- [Issues and Bugs](#found-a-bug)
|
|
8
|
+
- [Feature Requests](#missing-a-feature)
|
|
9
|
+
- [Submissions](#submission-guidelines)
|
|
10
|
+
- [Development Guidelines](#development)
|
|
11
|
+
- [Release Procedure](#release)
|
|
12
|
+
|
|
13
|
+
# Got a Question?
|
|
14
|
+
|
|
15
|
+
Please do not hesitate to raise an issue on [github project page][github].
|
|
16
|
+
|
|
17
|
+
# Found a Bug?
|
|
18
|
+
|
|
19
|
+
If you find a bug in the source code, you can help us by [submitting an issue](#issues)
|
|
20
|
+
to our [GitHub Repository][github]. Even better, you can [submit a Pull Request](#pull-requests) with a fix.
|
|
21
|
+
|
|
22
|
+
# Missing a Feature?
|
|
23
|
+
|
|
24
|
+
You can *request* a new feature by [submitting an issue](#issues) to our GitHub Repository.
|
|
25
|
+
If you would like to *implement* a new feature, please submit an issue with a proposal for your work first, to be sure that we can use it.
|
|
26
|
+
|
|
27
|
+
Please consider what kind of change it is:
|
|
28
|
+
|
|
29
|
+
* For a **Major Feature**, first open an issue and outline your proposal so that it can be
|
|
30
|
+
discussed. This will also allow us to better coordinate our efforts, prevent duplication of work,
|
|
31
|
+
and help you to craft the change so that it is successfully accepted into the project.
|
|
32
|
+
* **Small Features** can be crafted and directly [submitted as a Pull Request](#pull-requests).
|
|
33
|
+
|
|
34
|
+
# Submission Guidelines
|
|
35
|
+
|
|
36
|
+
## Issues
|
|
37
|
+
|
|
38
|
+
Before you submit an issue, please search the issue tracker, maybe an issue for your problem
|
|
39
|
+
already exists and the discussion might inform you of workarounds readily available.
|
|
40
|
+
|
|
41
|
+
We want to fix all the issues as soon as possible, but before fixing a bug we need to reproduce
|
|
42
|
+
and confirm it. In order to reproduce bugs we will need as much information as possible, and
|
|
43
|
+
preferably with an example.
|
|
44
|
+
|
|
45
|
+
## Pull Requests
|
|
46
|
+
|
|
47
|
+
When you wish to contribute to the code base, please consider the following guidelines:
|
|
48
|
+
|
|
49
|
+
* Make a [fork](https://guides.github.com/activities/forking/) of this repository.
|
|
50
|
+
* Make your changes in your fork, in a new git branch:
|
|
51
|
+
|
|
52
|
+
```shell
|
|
53
|
+
git checkout -b my-fix-branch master
|
|
54
|
+
```
|
|
55
|
+
* Create your patch, **including appropriate Python test cases**.
|
|
56
|
+
Please check the coding [conventions](#coding-conventions) for more information.
|
|
57
|
+
* Run the full test suite, and ensure that all tests pass.
|
|
58
|
+
* Commit your changes using a descriptive commit message.
|
|
59
|
+
|
|
60
|
+
```shell
|
|
61
|
+
git commit -a
|
|
62
|
+
```
|
|
63
|
+
* Push your branch to GitHub:
|
|
64
|
+
|
|
65
|
+
```shell
|
|
66
|
+
git push origin my-fix-branch
|
|
67
|
+
```
|
|
68
|
+
* In GitHub, send a Pull Request to the `master` branch of the upstream repository of the relevant component.
|
|
69
|
+
* If we suggest changes then:
|
|
70
|
+
* Make the required updates.
|
|
71
|
+
* Re-run the test suites to ensure tests are still passing.
|
|
72
|
+
* Rebase your branch and force push to your GitHub repository (this will update your Pull Request):
|
|
73
|
+
|
|
74
|
+
```shell
|
|
75
|
+
git rebase master -i
|
|
76
|
+
git push -f
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
That’s it! Thank you for your contribution!
|
|
80
|
+
|
|
81
|
+
### After your pull request is merged
|
|
82
|
+
|
|
83
|
+
After your pull request is merged, you can safely delete your branch and pull the changes from
|
|
84
|
+
the main (upstream) repository:
|
|
85
|
+
|
|
86
|
+
* Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:
|
|
87
|
+
|
|
88
|
+
```shell
|
|
89
|
+
git push origin --delete my-fix-branch
|
|
90
|
+
```
|
|
91
|
+
* Check out the master branch:
|
|
92
|
+
|
|
93
|
+
```shell
|
|
94
|
+
git checkout main -f
|
|
95
|
+
```
|
|
96
|
+
* Delete the local branch:
|
|
97
|
+
|
|
98
|
+
```shell
|
|
99
|
+
git branch -D my-fix-branch
|
|
100
|
+
```
|
|
101
|
+
* Update your main with the latest upstream version:
|
|
102
|
+
|
|
103
|
+
```shell
|
|
104
|
+
git pull --ff upstream main
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
[github]: https://github.com/BlueBrain/brainbuilder
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: brainbuilder
|
|
3
|
+
Version: 0.20.0
|
|
4
|
+
Summary: BrainBuilder is a tool to define the cells that will compose a circuit.
|
|
5
|
+
Author: Blue Brain Project, EPFL
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/BlueBrain/brainbuild
|
|
8
|
+
Project-URL: Repository, https://github.com/BlueBrain/brainbuild.git
|
|
9
|
+
Project-URL: Documentation, https://github.com/BlueBrain/brainbuild
|
|
10
|
+
Project-URL: Tracker, https://github.com/BlueBrain/brainbuild/issues
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Education
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
19
|
+
Requires-Python: >=3.9
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE.txt
|
|
22
|
+
Requires-Dist: bluepysnap>=1.0.3
|
|
23
|
+
Requires-Dist: click<9.0,>=7.0
|
|
24
|
+
Requires-Dist: h5py>=3.1.0
|
|
25
|
+
Requires-Dist: joblib>=1.0.1
|
|
26
|
+
Requires-Dist: jsonschema>=3.2.0
|
|
27
|
+
Requires-Dist: libsonata>=0.1.6
|
|
28
|
+
Requires-Dist: lxml>=3.3
|
|
29
|
+
Requires-Dist: morphio<4,>=3
|
|
30
|
+
Requires-Dist: numpy>=1.9
|
|
31
|
+
Requires-Dist: pandas>=1.0.0
|
|
32
|
+
Requires-Dist: pyyaml>=5.3.1
|
|
33
|
+
Requires-Dist: scipy>=0.13
|
|
34
|
+
Requires-Dist: tqdm>=4.0
|
|
35
|
+
Requires-Dist: voxcell>=3.1.1
|
|
36
|
+
Provides-Extra: all
|
|
37
|
+
Provides-Extra: reindex
|
|
38
|
+
|
|
39
|
+
# Introduction
|
|
40
|
+
|
|
41
|
+
BrainBuilder is a tool to define the cells that will compose a circuit.
|
|
42
|
+
It also houses utilities for working with SONATA circuits.
|
|
43
|
+
|
|
44
|
+
# Installation
|
|
45
|
+
|
|
46
|
+
```shell
|
|
47
|
+
$ pip install brainbuilder
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
# Contribution Guidelines
|
|
51
|
+
See CONTRIBUTING.md.
|
|
52
|
+
|
|
53
|
+
# Acknowledgment
|
|
54
|
+
|
|
55
|
+
The development of this software was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), from the Swiss government’s ETH Board of the Swiss Federal Institutes of Technology.
|
|
56
|
+
|
|
57
|
+
This project/research received funding from the European Union’s Horizon 2020 Framework Programme for Research and Innovation under the Framework Partnership Agreement No. 650003 (HBP FPA).
|
|
58
|
+
|
|
59
|
+
For license see LICENSE.txt.
|
|
60
|
+
|
|
61
|
+
Copyright © 2014-2023 Blue Brain Project/EPFL
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Introduction
|
|
2
|
+
|
|
3
|
+
BrainBuilder is a tool to define the cells that will compose a circuit.
|
|
4
|
+
It also houses utilities for working with SONATA circuits.
|
|
5
|
+
|
|
6
|
+
# Installation
|
|
7
|
+
|
|
8
|
+
```shell
|
|
9
|
+
$ pip install brainbuilder
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
# Contribution Guidelines
|
|
13
|
+
See CONTRIBUTING.md.
|
|
14
|
+
|
|
15
|
+
# Acknowledgment
|
|
16
|
+
|
|
17
|
+
The development of this software was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), from the Swiss government’s ETH Board of the Swiss Federal Institutes of Technology.
|
|
18
|
+
|
|
19
|
+
This project/research received funding from the European Union’s Horizon 2020 Framework Programme for Research and Innovation under the Framework Partnership Agreement No. 650003 (HBP FPA).
|
|
20
|
+
|
|
21
|
+
For license see LICENSE.txt.
|
|
22
|
+
|
|
23
|
+
Copyright © 2014-2023 Blue Brain Project/EPFL
|