Skip to content

Commit 74e3622

Browse files
committed
Merge branch 'dev' of https://github.com/hdmf-dev/nerd-examples into dev
2 parents 2f4d5db + 7f354ae commit 74e3622

File tree

4 files changed

+66
-11
lines changed

4 files changed

+66
-11
lines changed

.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Auto-generated files after running tutorials
2+
.tsv
3+
.zip
4+
5+
# Jupyter Notebook
6+
.ipynb_checkpoints
7+
8+
#PyCharm
9+
.idea/
10+
11+
# shell scripts (e.g. used with fswatch)
12+
*.sh
13+
14+
/docs/tmpl.conf.py
15+
/docs/tmpl.index.rst
16+
17+
# coverage output
18+
/tests/coverage/htmlcov
19+
.coverage*
20+
coverage.xml
21+
22+
# duecredit output
23+
.duecredit.p
24+
25+
# tox
26+
.tox
27+
28+
# vscode
29+
.vscode/
30+
31+
#mypy
32+
.mypy_cache/
33+
34+
#DS_Store
35+
.DS_Store
36+
37+
#sqlite
38+
.sqlite

LICENSE.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
“nerd” Copyright (c) 2017-2023, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4+
5+
(1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6+
7+
(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8+
9+
(3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, U.S. Dept. of Energy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10+
11+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
12+
13+
You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to Lawrence Berkeley National Laboratory, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form.

Legal.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
“nerd” Copyright (c) 2017-2023, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved.
2+
3+
If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Innovation & Partnerships Office at [email protected].
4+
5+
NOTICE. This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit other to do so.

README.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,18 @@ sharing and storing neurophysiology data, to facilitate adoption through integra
1313
data ecosystem, while also giving users a deep set of tools to more easily create and manage data in
1414
compliance with controlled term sets.
1515

16-
This repository hosts examples, tutorials, and the in development publication of NERD.
16+
This repository hosts examples, tutorials, and the in-development publication of NERD.
1717

1818
Installation
1919
============
20-
To run the tutorials, follow the instructions to install the latest version of HDMF and PyNWB.
20+
To run the tutorials, first install the latest versions of PyNWB and HDMF:
2121

22-
HDMF
23-
====
24-
- Documentation of HDMF can be found at https://hdmf.readthedocs.io.
25-
- The repository and install instructions for HDMF can be found at https://github.com/hdmf-dev/hdmf.
26-
27-
PyNWB
28-
=====
29-
- Documentation of HDMF can be found at https://pynwb.readthedocs.io.
30-
- The repository and install instructions for HDMF can be found at https://github.com/nwb/pynwb.
22+
```bash
23+
pip install -U pynwb hdmf
24+
```
3125

26+
API Documentation
27+
=================
28+
To learn more about the Python API for NWB (PyNWB) and the Hierarchical Data Modeling Framework (HDMF),
29+
which support NERD, see the [PyNWB documentation](https://pynwb.readthedocs.io/en/stable/) and the
30+
[HDMF documentation](https://hdmf.readthedocs.io/en/stable/).

0 commit comments

Comments
 (0)