Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MAINT] add BIDS papers references in citation.cff #1743

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[codespell]
skip = *.js,*.svg,*.eps,.git,node_modules,env,venv,.mypy_cache,package-lock.json,CITATION.cff,tools/new_contributors.tsv,./tools/schemacode/docs/build
skip = *.js,*.svg,*.eps,.git,node_modules,env,venv,.mypy_cache,package-lock.json,CITATION.cff,tools/new_contributors.tsv,./tools/schemacode/docs/build,src/apa-6th-edition.csl,src/references.bib
ignore-words-list = fo,te,als,Acknowledgements,acknowledgements,weill,bu,winn,manuel
builtin = clear,rare,en-GB_to_en-US
# this overloads default dictionaries and I have not yet figured out
Expand Down
40 changes: 40 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,46 @@ identifiers:
- description: PDFs of the BIDS specification for versions 1.0.0 to 1.8.0
type: doi
value: 10.5281/zenodo.3686061
# papers to inject in the how to cite section
# ### Original publication
- description: Original publication
type: doi
value: 10.1038/sdata.2016.44
# ### Datatype specific publications
- description: EEG
type: doi
value: 10.1038/s41597-019-0104-8
- description: iEEG
type: doi
value: 10.1038/s41597-019-0105-7
- description: MEG
type: doi
value: 10.1038/sdata.2018.110
- description: PET
type: doi
value: 10.1038/s41597-022-01164-1
- description: PET guidelines
type: doi
value: 10.1177/0271678X20905433
- description: Genetics
type: doi
value: 10.1093/gigascience/giaa104
- description: Microscopy
type: doi
value: 10.3389/fnins.2022.871228
- description: qMRI
type: doi
value: 10.1038/s41597-022-01571-4
- description: ASL
type: doi
value: 10.1038/s41597-022-01615-9
- description: NIRS
type: doi
value: 10.31219/osf.io/7nmcp
- description: Motion
type: doi
value: 10.31234/osf.io/w6z79


keywords:
- brain imaging data structure
Expand Down
16 changes: 16 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: bids_spec
channels:
- defaults
dependencies:
- pip
- pypandoc
- numpy
- pip:
- tools/schemacode/[render]
- mkdocs>=1.1
- mkdocs-material>=5.4
- pymdown-extensions>=7.0.0
- mkdocs-branchcustomization-plugin~=0.1.3
- mkdocs-macros-plugin
- mkdocs-redirects
- mkdocs-bibtex
5 changes: 5 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ markdown_extensions:
- pymdownx.superfences
- admonition
- pymdownx.details
- footnotes
plugins:
- search
- branchcustomization:
Expand All @@ -112,6 +113,10 @@ plugins:
- css/watermark.css
- macros:
module_name: tools/mkdocs_macros_bids/main
- bibtex:
bib_file: "src/references.bib"
cite_inline: True
csl_file: src/apa-6th-edition.csl
- redirects:
redirect_maps:
"01-introduction.md": "introduction.md"
Expand Down
6 changes: 5 additions & 1 deletion readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ build:
apt_packages:
- jq
tools:
python: "3.11"
python: "mambaforge-22.9"

jobs:
pre_build:
- bst -v export --output src/schema.json
Expand All @@ -15,6 +16,9 @@ mkdocs:
configuration: mkdocs.yml
fail_on_warning: true

conda:
environment: environment.yml

python:
install:
- requirements: requirements.txt
8 changes: 0 additions & 8 deletions requirements.txt

This file was deleted.

Loading