Skip to content

Commit

Permalink
Merge pull request #3 from datajoint/main
Browse files Browse the repository at this point in the history
pull from upstream
  • Loading branch information
Thinh Nguyen authored Jan 18, 2024
2 parents e13146f + 63ef0c9 commit e514ff7
Show file tree
Hide file tree
Showing 18 changed files with 1,659 additions and 14,056 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"editor.rulers": [
88
],
"python.formatting.provider": "black",
"python.formatting.provider": "none",
"[python]": {
"editor.defaultFormatter": null
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[markdown]": {
"editor.defaultFormatter": "disable"
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.9.2] - 2024-01-10

+ Fix - Imports and attribute values in notebooks to resolve DataJoint errors

## [0.9.1] - 2023-12-19

+ Update - Tutorial notebook
+ Fix - minor fixes in `setup.py` and `README`

## [0.9.0] - 2023-10-13

+ Add - Export to NWB and upload to DANDI

## [0.8.1] - 2023-08-31

+ Fix - Rename `get_image_files` to `get_calcium_imaging_files` where missed
Expand Down Expand Up @@ -177,6 +190,9 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
+ Add - `scan` and `imaging` modules
+ Add - Readers for `ScanImage`, `ScanBox`, `Suite2p`, `CaImAn`

[0.9.2]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.9.2
[0.9.1]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.9.1
[0.9.0]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.9.0
[0.8.1]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.8.1
[0.8.0]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.8.0
[0.7.9]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.9
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Contribution Guidelines

This project follows the
[DataJoint Contribution Guidelines](https://datajoint.com/docs/community/contribute/).
[DataJoint Contribution Guidelines](https://datajoint.com/docs/about/contribute/).
Please reference the link for more full details.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ documentation page.
+ Clone the repository to your computer

```bash
git clone https://github.com/<enter_github_username>/element-calcium-imaging
git clone https://github.com/<enter_github_username>/element-calcium-imaging.git
```

+ Install with `pip`
Expand Down
2 changes: 1 addition & 1 deletion docs/.docker/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mkdocs-material
mkdocs-material==9.1.17
mkdocs-redirects
mkdocstrings
mkdocstrings-python
Expand Down
3 changes: 1 addition & 2 deletions docs/src/.overrides/assets/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ html a[title="YouTube"].md-social__link svg {
/* --md-footer-fg-color: var(--dj-white); */
}

[data-md-color-scheme="slate"] td,
th {
[data-md-color-scheme="slate"] .jupyter-wrapper .Table Td {
color: var(--dj-black)
}
15 changes: 15 additions & 0 deletions docs/src/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,18 @@ segmented.
- Scanbox
- Nikon NIS-Elements
- Bruker Prairie View

## Data Export and Publishing

Element Calcium Imaging supports exporting of all data into standard Neurodata
Without Borders (NWB) files. This makes it easy to share files with collaborators and
publish results on [DANDI Archive](https://dandiarchive.org/).
[NWB](https://www.nwb.org/), as an organization, is dedicated to standardizing data
formats and maximizing interoperability across tools for neurophysiology.

To use the export functionality with additional related dependencies, install the
Element with the `nwb` option as follows:

```console
pip install element-calcium-imaging[nwb]
```
4 changes: 2 additions & 2 deletions docs/src/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ the common motifs to create Element Calcium Imaging. Major features include:
- [x] Quality metrics
- [ ] Data compression
- [ ] Deepinterpolation
- [ ] Data export to NWB
- [ ] Data publishing to DANDI
- [x] Data export to NWB
- [x] Data publishing to DANDI

Further development of this Element is community driven. Upon user requests and based on
guidance from the Scientific Steering Group we will continue adding features to this
Expand Down
Empty file.
1 change: 1 addition & 0 deletions element_calcium_imaging/export/nwb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .nwb import imaging_session_to_nwb, write_nwb
Loading

0 comments on commit e514ff7

Please sign in to comment.