Utilities library for aind ephys team.
Project description
aind-ephys-utils
Helpful methods for exploring in vivo electrophysiology data.
Installation
For users
pip install aind-ephys-utils
For developers
First, clone the repository. Then, from the aind-ephys-utils
directory, run:
pip install -e .[dev]
Note: On recent versions of macOS, you'll need to put the last argument in quotation marks: ".[dev]"
Contributing
Linters and testing
There are several libraries used to run linters, check documentation, and run tests.
- Please test your changes using the coverage library, which will run the tests and log a coverage report:
coverage run -m unittest discover && coverage report
- Use interrogate to check that modules, methods, etc. have been documented thoroughly:
interrogate .
- Use black to automatically format the code into PEP standards:
black .
- Use flake8 to check that code is up to standards (no unused imports, etc.):
flake8 .
- Use isort to automatically sort import statements:
isort .
Pull requests
For internal members, please create a branch. For external members, please fork the repository and open a pull request from the fork. We'll primarily use Angular style for commit messages. Roughly, they should follow the pattern:
<type>(<scope>): <short summary>
where scope (optional) describes the packages affected by the code changes and type (mandatory) is one of:
- build: Changes that affect build tools or external dependencies (example scopes: pyproject.toml, setup.py)
- ci: Changes to our CI configuration files and scripts (examples: .github/workflows/ci.yml)
- docs: Documentation only changes
- feat: A new feature
- fix: A bugfix
- perf: A code change that improves performance
- refactor: A code change that neither fixes a bug nor adds a feature
- test: Adding missing tests or correcting existing tests
Documentation
To generate the rst files source files for documentation, run
sphinx-apidoc -o doc_template/source/ src/aind_ephys_utils
Then to create the documentation HTML files, run
sphinx-build -b html doc_template/source/ doc_template/build/html
More info on sphinx installation can be found here.
Developing in Code Ocean
Members of the Allen Institute for Neural Dynamics can follow these steps to create a Code Ocean capsule from this repository:
- Click the ⨁ New Capsule button and select "Clone from AllenNeuralDynamics"
- Type in
aind-ephys-utils
and click "Clone" (this step requires that your GitHub credentials are configured properly) - Select a Python base image, and optionally change the compute resources
- Attach data to the capsule and any dependencies needed to load it (e.g.
pynwb
,hdmf-zarr
) - Add plotting dependencies (e.g.
ipympl
,plotly
) - Launch a Visual Studio Code cloud workstation
Inside Visual Studio Code, select "New Terminal" from the "Terminal" menu and run the following commands:
$ pip install -e .[dev]
$ git checkout -b <name of feature branch>
Now, you can create Jupyter notebooks in the "code" directory that can be used to test out new functions before updating the library. When prompted, install the "Python" extensions to be able to execute notebook cells.
Once you've finished writing your code and tests, run the following commands:
$ coverage run -m unittest discover && coverage report
$ interrogate .
$ black .
$ flake8 .
$ isort .
Assuming all of these pass, you're ready to push your changes:
$ git add <files to add>
$ git commit -m "Commit message"
$ git push -u origin <name of feature branch>
After doing this, you can open a pull request on GitHub.
Note that git
will only track files inside the aind-ephys-utils
directory, and will ignore everything else in the capsule. You will no longer be able to commit changes to the capsule itself, which is why this workflow should only be used for developing a library, and not for performing any type of data analysis.
When you're done working, it's recommended to put the workstation on hold rather than shutting it down, in order to keep Visual Studio Code in the same state.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aind_ephys_utils-0.0.15.tar.gz
.
File metadata
- Download URL: aind_ephys_utils-0.0.15.tar.gz
- Upload date:
- Size: 39.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22863361dbb546d5977a8b1ff2beedd7dc22c31b29b1be37e258eee207a54cba |
|
MD5 | cf70dfc32484c9879f1640c0454fd71b |
|
BLAKE2b-256 | 6a5e019792306c5f57e97dfc2b92854c4c3762bd55cf490e1fc1faaa931c39c6 |
File details
Details for the file aind_ephys_utils-0.0.15-py3-none-any.whl
.
File metadata
- Download URL: aind_ephys_utils-0.0.15-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9157145509862525ebb09a5333200b6ce21a5322faaa7c011ef0c1112e97125a |
|
MD5 | 9a1b3c2ea35fd416a28c9c48eab12f18 |
|
BLAKE2b-256 | ed9cafd00edc1eda384ee38686923fe8f00e3cf5c1b9e81c4d6a74d06f44920c |