Skip to content

Commit 0d4b43f

Browse files
committed
brainprep: update URLs.
1 parent 2639ac1 commit 0d4b43f

16 files changed

Lines changed: 60 additions & 51 deletions

README.rst

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,28 @@
1414

1515
**Development**
1616

17-
.. image:: https://coveralls.io/repos/neurospin-deepinsight/brainprep/badge.svg?branch=dev&service=github
18-
:target: https://coveralls.io/github/neurospin-deepinsight/brainprep
17+
.. image:: https://coveralls.io/repos/brainprepdesk/brainprep/badge.svg?branch=dev&service=github
18+
:target: https://coveralls.io/github/brainprepdesk/brainprep
1919
:alt: Coveralls
2020

21-
.. image:: https://github.com/neurospin-deepinsight/brainprep/actions/workflows/testing.yml/badge.svg?branch=dev
22-
:target: https://github.com/neurospin-deepinsight/brainprep/actions
21+
.. image:: https://github.com/brainprepdesk/brainprep/actions/workflows/testing.yml/badge.svg?branch=dev
22+
:target: https://github.com/brainprepdesk/brainprep/actions
2323
:alt: Testing Status
2424

25-
.. image:: https://github.com/neurospin-deepinsight/brainprep/actions/workflows/pycodestyle.yml/badge.svg?branch=dev
26-
:target: https://github.com/neurospin-deepinsight/brainprep/actions
25+
.. image:: https://github.com/brainprepdesk/brainprep/actions/workflows/pycodestyle.yml/badge.svg?branch=dev
26+
:target: https://github.com/brainprepdesk/brainprep/actions
2727
:alt: PyCodeStyle
2828

29-
.. image:: https://github.com/neurospin-deepinsight/brainprep/actions/workflows/ruff.yml/badge.svg?branch=dev
30-
:target: https://github.com/neurospin-deepinsight/brainprep/actions
29+
.. image:: https://github.com/brainprepdesk/brainprep/actions/workflows/ruff.yml/badge.svg?branch=dev
30+
:target: https://github.com/brainprepdesk/brainprep/actions
3131
:alt: Ruff Linter
3232

33-
.. image:: https://github.com/neurospin-deepinsight/brainprep/actions/workflows/pydoclint.yml/badge.svg?branch=dev
34-
:target: https://github.com/neurospin-deepinsight/brainprep/actions
33+
.. image:: https://github.com/brainprepdesk/brainprep/actions/workflows/pydoclint.yml/badge.svg?branch=dev
34+
:target: https://github.com/brainprepdesk/brainprep/actions
3535
:alt: PyDocLint
3636

37-
.. image:: https://github.com/neurospin-deepinsight/brainprep/actions/workflows/documentation.yml/badge.svg?branch=dev
38-
:target: https://neurospin-deepinsight.github.io/brainprep
37+
.. image:: https://github.com/brainprepdesk/brainprep/actions/workflows/documentation.yml/badge.svg?branch=dev
38+
:target: https://brainprepdesk.github.io/brainprep
3939
:alt: Documentation Status
4040

4141
**Release**
@@ -96,9 +96,9 @@ scalable, and reproducible foundation to accelerate your research.
9696
Important Links
9797
===============
9898

99-
- Official source code repo: https://github.com/neurospin-deepinsight/brainprep
100-
- HTML documentation (stable release): https://neurospin-deepinsight.github.io/brainprep/stable
101-
- HTML documentation (dev): https://neurospin-deepinsight.github.io/brainprep/dev
99+
- Official source code repo: https://github.com/brainprepdesk/brainprep
100+
- HTML documentation (stable release): https://brainprepdesk.github.io/brainprep/stable
101+
- HTML documentation (dev): https://brainprepdesk.github.io/brainprep/dev
102102

103103

104104
Install
@@ -156,7 +156,7 @@ Dependencies
156156
============
157157

158158
The required dependencies to use the software are listed
159-
in the file `pyproject.toml <https://github.com/neurospin-deepinsight/brainprep/blob/main/pyproject.toml>`_.
159+
in the file `pyproject.toml <https://github.com/brainprepdesk/brainprep/blob/main/pyproject.toml>`_.
160160

161161

162162
Citation
@@ -171,5 +171,5 @@ repository. Thank you.
171171
@misc{brainprep,
172172
title = {{BrainPrep source code (Version 1.0.0)}},
173173
author = {Grigis, Antoine and Victor, Julie and Dorval, Loic and Duchesnay, Edouard},
174-
url = {https://github.com/neurospin-deepinsight/brainprep},
174+
url = {https://github.com/brainprepdesk/brainprep},
175175
}

brainprep/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def before_call(
485485
{
486486
"Name": "brainprep",
487487
"Version": __version__,
488-
"CodeURL": ("https://github.com/neurospin-deepinsight/"
488+
"CodeURL": ("https://github.com/brainprepdesk/"
489489
"brainprep"),
490490
}
491491
],

brainprep/reporting/data/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<link
3434
rel="icon"
3535
type="image/x-icon"
36-
href="https://raw.githubusercontent.com/neurospin-deepinsight/brainprep/refs/heads/dev/doc/logos/favicon.ico"
36+
href="https://raw.githubusercontent.com/brainprepdesk/brainprep/refs/heads/dev/doc/logos/favicon.ico"
3737
/>
3838
</head>
3939
<body>
@@ -62,7 +62,7 @@
6262
</div>
6363
<div class="col-6 text-right">
6464
<div class="mr-auto">
65-
<a href="https://github.com/neurospin-deepinsight/brainprep" class="p-2 pl-0"><i class="fa fa-github"></i></a>
65+
<a href="https://github.com/brainprepdesk/brainprep" class="p-2 pl-0"><i class="fa fa-github"></i></a>
6666
</div>
6767

6868
</div>

brainprep/reporting/data/body.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<section id="workflow-details-{{ uuid }}">
2424
<h3>Description</h3>
25-
Data were analyzed using <a href="https://neurospin-deepinsight/brainprep">BrainPrep</a>
25+
Data were analyzed using <a href="https://brainprepdesk/brainprep">BrainPrep</a>
2626
(version={{ version }}).
2727
<br/><br/>
2828
<pre><code class="language-html">

containers/Dockerfile.defacing

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ LABEL org.opencontainers.image.title="BrainPrep Defacing" \
8181
org.opencontainers.image.version="v2" \
8282
org.opencontainers.image.licenses="CeCILL-B" \
8383
org.opencontainers.image.authors="CEA/NeuroSpin/GAIA" \
84-
org.opencontainers.image.documentation="https://neurospin-deepinsight.github.io/brainprep/stable" \
85-
org.opencontainers.image.source="https://github.com/neurospin-deepinsight/brainprep" \
84+
org.opencontainers.image.documentation="https://brainprepdesk.github.io/brainprep/stable" \
85+
org.opencontainers.image.source="https://github.com/brainprepdesk/brainprep" \
8686
org.opencontainers.image.created="2025-01-15" \
8787
com.brainprep.fsl.version="${FSL_VERSION}"

containers/Dockerfile.fmriprep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ LABEL org.opencontainers.image.title="BrainPrep functional MRI preprocessings" \
3434
org.opencontainers.image.version="v2" \
3535
org.opencontainers.image.licenses="CeCILL-B" \
3636
org.opencontainers.image.authors="CEA/NeuroSpin/GAIA" \
37-
org.opencontainers.image.documentation="https://neurospin-deepinsight.github.io/brainprep/stable" \
38-
org.opencontainers.image.source="https://github.com/neurospin-deepinsight/brainprep" \
37+
org.opencontainers.image.documentation="https://brainprepdesk.github.io/brainprep/stable" \
38+
org.opencontainers.image.source="https://github.com/brainprepdesk/brainprep" \
3939
org.opencontainers.image.created="2025-01-15" \
4040
com.brainprep.fmriprep.version="25.2.4"

containers/Dockerfile.quality_assurance

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ LABEL org.opencontainers.image.title="BrainPrep Defacing" \
3434
org.opencontainers.image.version="v2" \
3535
org.opencontainers.image.licenses="CeCILL-B" \
3636
org.opencontainers.image.authors="CEA/NeuroSpin/GAIA" \
37-
org.opencontainers.image.documentation="https://neurospin-deepinsight.github.io/brainprep/stable" \
38-
org.opencontainers.image.source="https://github.com/neurospin-deepinsight/brainprep" \
37+
org.opencontainers.image.documentation="https://brainprepdesk.github.io/brainprep/stable" \
38+
org.opencontainers.image.source="https://github.com/brainprepdesk/brainprep" \
3939
org.opencontainers.image.created="2025-01-15" \
4040
com.brainprep.mriqc.version="24.0.2"

containers/Dockerfile.quasiraw

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ LABEL org.opencontainers.image.title="BrainPrep Quasi-Raw" \
206206
org.opencontainers.image.version="v2" \
207207
org.opencontainers.image.licenses="CeCILL-B" \
208208
org.opencontainers.image.authors="CEA/NeuroSpin/GAIA" \
209-
org.opencontainers.image.documentation="https://neurospin-deepinsight.github.io/brainprep/stable" \
210-
org.opencontainers.image.source="https://github.com/neurospin-deepinsight/brainprep" \
209+
org.opencontainers.image.documentation="https://brainprepdesk.github.io/brainprep/stable" \
210+
org.opencontainers.image.source="https://github.com/brainprepdesk/brainprep" \
211211
org.opencontainers.image.created="2025-01-15" \
212212
com.brainprep.fsl.version="${FSL_VERSION}" \
213213
com.brainprep.freesurfer.version="${FS_VERSION}" \

containers/Dockerfile.sbm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ LABEL org.opencontainers.image.title="BrainPrep SBM" \
169169
org.opencontainers.image.version="v2" \
170170
org.opencontainers.image.licenses="CeCILL-B" \
171171
org.opencontainers.image.authors="CEA/NeuroSpin/GAIA" \
172-
org.opencontainers.image.documentation="https://neurospin-deepinsight.github.io/brainprep/stable" \
173-
org.opencontainers.image.source="https://github.com/neurospin-deepinsight/brainprep" \
172+
org.opencontainers.image.documentation="https://brainprepdesk.github.io/brainprep/stable" \
173+
org.opencontainers.image.source="https://github.com/brainprepdesk/brainprep" \
174174
org.opencontainers.image.created="2025-01-15" \
175175
com.brainprep.freesurfer.version="$FS_VERSION"

containers/Dockerfile.vbm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ LABEL org.opencontainers.image.title="BrainPrep VBM" \
9898
org.opencontainers.image.version="v2" \
9999
org.opencontainers.image.licenses="CeCILL-B" \
100100
org.opencontainers.image.authors="CEA/NeuroSpin/GAIA" \
101-
org.opencontainers.image.documentation="https://neurospin-deepinsight.github.io/brainprep/stable" \
102-
org.opencontainers.image.source="https://github.com/neurospin-deepinsight/brainprep" \
101+
org.opencontainers.image.documentation="https://brainprepdesk.github.io/brainprep/stable" \
102+
org.opencontainers.image.source="https://github.com/brainprepdesk/brainprep" \
103103
org.opencontainers.image.created="2025-01-15" \
104104
com.brainprep.mcr.version="$MCR_VERSION" \
105105
com.brainprep.cat12.version="$CAT12_VERSION $CAT12_TAG" \

0 commit comments

Comments
 (0)