Skip to content

Commit

Permalink
Merge pull request #23 from kabilar/main
Browse files Browse the repository at this point in the history
Add Facemap citation
  • Loading branch information
dimitri-yatsenko authored May 23, 2023
2 parents a66b701 + 59aa55f commit 10550ad
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
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.1.6] - 2023-05-22

+ Add - Facemap citation
+ Update - mkdocs.yaml

## [0.1.5] - 2023-05-11

+ Fix - `.ipynb` dark mode output for all notebooks.
Expand Down Expand Up @@ -38,6 +43,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
the diagonal matrix
+ Add - Output directory inferral, if unspecified.

[0.1.6]: https://github.com/datajoint/element-facemap/releases/tag/0.1.6
[0.1.5]: https://github.com/datajoint/element-facemap/releases/tag/0.1.5
[0.1.4]: https://github.com/datajoint/element-facemap/releases/tag/0.1.4
[0.1.3]: https://github.com/datajoint/element-facemap/releases/tag/0.1.3
Expand Down
1 change: 1 addition & 0 deletions docs/.docker/pip_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ mkdocs-literate-nav
mkdocs-exclude-search
mkdocs-markdownextradata-plugin
mkdocs-jupyter
mkdocs-section-index
1 change: 0 additions & 1 deletion docs/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ services:
- PACKAGE
- UPSTREAM_REPO
- MODE
- GOOGLE_ANALYTICS_KEY
volumes:
- ../docs:/main/docs
- ../${PACKAGE}:/main/${PACKAGE}
Expand Down
21 changes: 7 additions & 14 deletions docs/mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,14 @@ nav:
# UPSTREAM_REPO=https://github.com/datajoint/element-{ELEMENT}.git \
# HOST_UID=$(id -u) docker compose -f docs/docker-compose.yaml up --build
# ```
# 02. Site analytics depend on a local environment variable GOOGLE_ANALYTICS_KEY
# You can find this in LastPass or declare with any string to suppress errors
# 03. The API section will pull docstrings.
# 02. The API section will pull docstrings.
# A. Follow google styleguide e.g.,
# https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html
# With typing suggestions: https://docs.python.org/3/library/typing.html
# B. To pull a specific workflow fork, change ./docs/src/api/make_pages.py#L19
# 04. To see your fork of the workflow-{element} in this render, change the
# 03. To see your fork of the workflow-{element} in this render, change the
# URL in ./docs/src/api/make_pages.py#L19 to your fork.
# 05. For redirecting options For redirect options, see 'redirects' below.
# 06. To deploy this site on your fork,
# 04. To deploy this site on your fork,
# A. declare a branch called gh-pages
# B. go to the your fork > settings > pages
# C. direct pages to render from the gh-pages branch at root
Expand Down Expand Up @@ -87,9 +84,6 @@ theme:
plugins:
- markdownextradata: {}
- search
# - redirects: # OPTIONAL REDIRECTS
# redirect_maps:
# "index.md": "getting_started.md"
- mkdocstrings:
default_handler: python
handlers:
Expand All @@ -109,6 +103,7 @@ plugins:
- mkdocs-jupyter: # For future tutorial notebooks
ignore_h1_titles: True
ignore: ["*make_pages.py"]
- section-index
markdown_extensions:
- attr_list
- md_in_html
Expand All @@ -133,14 +128,12 @@ markdown_extensions:
- pymdownx.snippets
- pymdownx.arithmatex:
generic: true


- pymdownx.magiclink # Displays bare URLs as links
- pymdownx.tasklist: # Renders check boxes in tasks lists
custom_checkbox: true
extra:
PATCH_VERSION: !ENV PATCH_VERSION
generator: false # Disable watermark
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
version:
provider: mike
social:
Expand Down
17 changes: 9 additions & 8 deletions docs/src/citation.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Citation

If your work uses this Element, please cite the following manuscript and Research
Resource Identifier (RRID).
If your work uses the following resources, please cite the respective manuscript and/or Research Resource Identifier (RRID):

+ Yatsenko D, Nguyen T, Shen S, Gunalan K, Turner CA, Guzman R, Sasaki M, Sitonic D,
Reimer J, Walker EY, Tolias AS. DataJoint Elements: Data Workflows for
Neurophysiology. bioRxiv. 2021 Jan 1. doi: https://doi.org/10.1101/2021.03.30.437358
+ DataJoint Element Facemap - Version {{ PATCH_VERSION }}
+ Yatsenko D, Nguyen T, Shen S, Gunalan K, Turner CA, Guzman R, Sasaki M, Sitonic D,
Reimer J, Walker EY, Tolias AS. DataJoint Elements: Data Workflows for
Neurophysiology. bioRxiv. 2021 Jan 1. doi: https://doi.org/10.1101/2021.03.30.437358

+ DataJoint Elements ([RRID:SCR_021894](https://scicrunch.org/resolver/SCR_021894)) -
Element Facemap (version {{ PATCH_VERSION }})

+ [RRID:SCR_021894](https://scicrunch.org/resolver/SCR_021894)

+ Facemap
+ [Manuscripts](https://github.com/MouseLand/facemap#citation)
2 changes: 1 addition & 1 deletion element_facemap/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = "0.1.5"
__version__ = "0.1.6"

0 comments on commit 10550ad

Please sign in to comment.