Skip to content

Commit

Permalink
Merge pull request #501 from oist/roi-edit-description
Browse files Browse the repository at this point in the history
[#493] Edit roiによるNWBファイルの変更内容を明記
  • Loading branch information
emuemuJP authored May 22, 2023
2 parents 195cdb8 + 58af9b8 commit 9fc0149
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,9 @@ test_pypi:

.PHONY: push_pypi
push_pypi:
twine upload --repository pypi dist/*
twine upload --repository pypi dist/*

.PHONY: test_doc
test_doc:
python3 -m pip install -r docs/requirements.txt
sphinx-autobuild -b html docs docs/_build --port 8001
42 changes: 42 additions & 0 deletions docs/gui/visualize.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,48 @@ Press <strong>OK</strong> or <strong>Cancel</strong> button to Add or No
Or click on each cell ROI to delete ROI or merge ROIs (when you select 2 or more ROI cells)
Press <strong>Merge ROI</strong> or <strong>Delete ROI</strong> or <strong>Cancel</strong> button to Merge or Delete or No.

NWB file is overwirtten with the ROI edit information.

```{eval-rst}
.. note::
ROI edit information in NWB file
- common
- edited ROI ids are recorded in processing/optinist section
- specific
- merge
- iscell data of ROIs to be merged changes to False
- ROI after merge are added with new ID
- delete
- iscell data of deleted ROI changes to False.
```

```{eval-rst}
.. note::
ROI's id and index of viewer have different values!
- id
- The id of ROI, **starting from 1**.
- Shown in
- VISUALIZE tab.
- NWBfile's processing/optinist section.
- index
- Numbering of columns and rows in tables, **starting from 0**.
- Shown in
- table when you open NWBfile's timecourse data with viewers like `HDFView <https://www.hdfgroup.org/downloads/hdfview/>`_
```


## saving plots

Expand Down

0 comments on commit 9fc0149

Please sign in to comment.