Skip to content
Open
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
22 changes: 22 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Codespell

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Codespell
uses: codespell-project/actions-codespell@v2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ niCHART --data_file istaging.pkl.gz
```

## Build executable package for Windows 10/11
We use (beeware/briefcase)[https://github.com/beeware/briefcase)] to package
We use [beeware/briefcase](https://github.com/beeware/briefcase) to package
the software in Windows 10/11.

```shell
Expand Down
4 changes: 2 additions & 2 deletions docs/contents/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ directory.
python -m pip install https://github.com/CBICA/niCHART


Once installed, the GUI is accesible as command `niCHART`.
Once installed, the GUI is accessible as command `niCHART`.

.. code-block:: shell

Expand All @@ -65,7 +65,7 @@ Once installed, the GUI is accesible as command `niCHART`.
Build documentation locally
***************************

When ``sphinx-autobuild`` is installed, the documentation can bu built locally
When ``sphinx-autobuild`` is installed, the documentation can be built locally
and automatically updates when one of the source files changes.

.. code-block:: shell
Expand Down
6 changes: 3 additions & 3 deletions docs/contents/userguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ directory.
python -m pip install https://github.com/CBICA/niCHART


Once installed, the GUI is accesible as command `niCHART`.
Once installed, the GUI is accessible as command `niCHART`.

.. code-block:: shell

Expand Down Expand Up @@ -147,7 +147,7 @@ the ``SPARE-*`` plug in.

SPARE-*
=======
This plugin is used to load a SPARE-* model, apply it ot the data set, and
This plugin is used to load a SPARE-* model, apply it to the data set, and
optionally add the derived scores to the data set.
Currently only ``SPARE-AD`` and ``SPARE-BA`` are supported.
After loading the model, the plugin will verify that the loaded model is
Expand All @@ -156,7 +156,7 @@ To be applied to the data, harmonized features need to be present in the data
frame.
After running the plugin ``Harmonization``, the necessary standardized features
are available.
The computation of the scores runs asyncronously, which means that the rest of
The computation of the scores runs asynchronously, which means that the rest of
the user interface remains operational.

.. figure:: images/ScreenshotSPARE.png
2 changes: 1 addition & 1 deletion niCHART/core/baseplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self):

def activate(self):
"""
On activation tell that this has been successfull.
On activation tell that this has been successful.
"""
# get the automatic procedure from IPlugin
IPlugin.activate(self)
Expand Down
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,8 @@ documentation = "https://cbica.github.io/niCHART"

[tool.poetry.scripts]
niCHART = "niCHART:main"

[tool.codespell]
skip = '.git,*.pdf,*.svg,MUSE*.csv'
#
ignore-words-list = 'te'