Skip to content

Commit 76e1626

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 368da2d commit 76e1626

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

doc/cpp_fmriprep.slurm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@
2222
# writtent by CPP people
2323
#
2424
# Submission command for Lemaitre3
25-
#
25+
#
2626
# sbatch cpp_fmriprep.slurm <subjID> <TaskName>
27-
#
27+
#
2828
# examples:
2929
# - 1 subject 1 task
3030
# sbatch cpp_fmriprep.slurm sub-01 visMotLocalizer
31-
#
31+
#
3232
# - 1 subject all task
3333
# sbatch cpp_fmriprep.slurm sub-01 ''
34-
#
34+
#
3535
# - all subjects 1 task
3636
# sbatch cpp_fmriprep.slurm '' visMotLocalizer
37-
#
37+
#
3838
# - multiple subjects
3939
# sbatch cpp_fmriprep.slurm 'sub-01 sub-02' visMotLocalizer
40-
#
40+
#
4141
# - multiple tasks
4242
# sbatch cpp_fmriprep.slurm sub-01 'visMotLocalizer audMotLocalizer'
4343
#

doc/cpp_mriqc.slurm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@
2222
# writtent by CPP people
2323
#
2424
# Submission command for Lemaitre3
25-
#
25+
#
2626
# sbatch cpp_mriqc.slurm <subjID>
27-
#
27+
#
2828
# examples:
2929
# - 1 subject
30-
# sbatch cpp_mriqc.slurm sub-01
31-
#
30+
# sbatch cpp_mriqc.slurm sub-01
31+
#
3232
# - all subjects
3333
# sbatch cpp_mriqc.slurm ''
34-
#
34+
#
3535
# - multiple subjects
36-
# sbatch cpp_mriqc.slurm 'sub-01 sub-02'
36+
# sbatch cpp_mriqc.slurm 'sub-01 sub-02'
3737
#
3838
# - submit all the subjects (1 per job) all at once
3939
# read subj list to submit each to a job
@@ -73,4 +73,4 @@ singularity run --cleanenv \
7373
"${path_to_singularity_image}" \
7474
/data \
7575
/out \
76-
participant --participant-label "${subjID}"
76+
participant --participant-label "${subjID}"

doc/cpp_mriqc_group.slurm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# writtent by CPP people
2323
#
2424
# Submission command for Lemaitre3 after running mriqc for each participant
25-
#
25+
#
2626
# sbatch cpp_mriqc_group.slurm
2727

2828
# create jobs_report folder in case they don't exist

doc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ To get an account and connect, follow the instructions in the
1919

2020
### How can I connect to a cluster from outside the UCLouvain network?
2121

22-
Use a a VPN to connect as-if you are within the UCLouvain network. Check [how to use UCLouvain VPN](https://intranet.uclouvain.be/fr/myucl/services-informatiques/vpn.html)
22+
Use a a VPN to connect as-if you are within the UCLouvain network. Check [how to use UCLouvain VPN](https://intranet.uclouvain.be/fr/myucl/services-informatiques/vpn.html)

doc/run_fmriprep.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ Content of the `cpp_fmriprep.slurm` file (download and edit from [here](cpp_fmri
6060
!!! Warning
6161

6262
1. Read the fmriprep documentation to know what you are doing and how the arguments of the run call effects the results
63-
2. All the paths and email are set afte Marco's users for demosntration.
64-
3. Edit the scripts with the info you need to make it run for your user from top to buttom of the script, do not over look the first "commented" chunk cause it is not a real commented section (check the email and job report path, data paths and the `username` etc.).
63+
2. All the paths and email are set afte Marco's users for demosntration.
64+
3. Edit the scripts with the info you need to make it run for your user from top to buttom of the script, do not over look the first "commented" chunk cause it is not a real commented section (check the email and job report path, data paths and the `username` etc.).
6565
6666
```bash
6767
{% include "cpp_fmriprep.slurm" %}

doc/run_mriqc.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ Content of the `cpp_mriqc.slurm` file (download and edit from [here](cpp_mriqc.s
6565
!!! Warning
6666

6767
1. Read the MRIqc documentation to know what you are doing and how the arguments of the run call effects the results
68-
2. All the paths and email are set afte Marco's users for demosntration.
69-
3. Edit the scripts with the info you need to make it run for your user from top to buttom of the script, do not over look the first "commented" chunk cause it is not a real commented section (check the email and job report path, data paths and the `username` etc.).
68+
2. All the paths and email are set afte Marco's users for demosntration.
69+
3. Edit the scripts with the info you need to make it run for your user from top to buttom of the script, do not over look the first "commented" chunk cause it is not a real commented section (check the email and job report path, data paths and the `username` etc.).
7070
7171
```bash
7272
{% include "cpp_mriqc.slurm" %}
@@ -92,15 +92,15 @@ sbatch cpp_mriqc.slurm sub-01
9292
ls -d sub* | xargs -n1 -I{} sbatch path/to/cpp_mriqc.slurm {}
9393
```
9494
95-
### Group level
95+
### Group level
9696
9797
Content of the `cpp_mriqc_group.slurm` file (download and edit from [here](cpp_mriqc_group.slurm))
9898
9999
!!! Warning
100100
101101
1. Read the MRIqc documentation to know what you are doing and how the arguments of the run call effects the results
102-
2. All the paths and email are set afte Marco's users for demosntration.
103-
3. Edit the scripts with the info you need to make it run for your user from top to buttom of the script, do not over look the first "commented" chunk cause it is not a real commented section (check the email and job report path, data paths and the `username` etc.).
102+
2. All the paths and email are set afte Marco's users for demosntration.
103+
3. Edit the scripts with the info you need to make it run for your user from top to buttom of the script, do not over look the first "commented" chunk cause it is not a real commented section (check the email and job report path, data paths and the `username` etc.).
104104

105105
```bash
106106
{% include "cpp_mriqc_group.slurm" %}

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ theme:
1414
primary: light blue
1515
accent: light blue
1616
features:
17-
- navigation.expand
17+
- navigation.expand
1818

1919
docs_dir: doc
2020

0 commit comments

Comments
 (0)