Skip to content

Commit af1f3af

Browse files
committed
FIX: Update outdated references to poldracklab organization
1 parent 0375f5d commit af1f3af

File tree

9 files changed

+56
-56
lines changed

9 files changed

+56
-56
lines changed

docs/apps/docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ role="ref"}).-->
5151
Taking *fMRIPrep* to illustrate the usage, first you might want to make sure of the exact version of the tool to be used:
5252

5353
``` Shell
54-
$ docker pull poldracklab/fmriprep:<latest-version>
54+
$ docker pull nipreps/fmriprep:<latest-version>
5555
```
5656

5757
You can run *NiPreps* interacting directly with the Docker Engine via the `docker run` interface.
@@ -67,7 +67,7 @@ When you run `fmriprep-docker`, it will generate a Docker command line for you,
6767
``` Shell
6868
$ fmriprep-docker /path/to/data/dir /path/to/output/dir participant
6969
RUNNING: docker run --rm -it -v /path/to/data/dir:/data:ro \
70-
-v /path/to_output/dir:/out poldracklab/fmriprep:1.0.0 \
70+
-v /path/to_output/dir:/out nipreps/fmriprep:20.2.2 \
7171
/data /out participant
7272
...
7373
```
@@ -118,7 +118,7 @@ You may also invoke `docker` directly:
118118
$ docker run -ti --rm \
119119
-v path/to/data:/data:ro \
120120
-v path/to/output:/out \
121-
poldracklab/fmriprep:<latest-version> \
121+
nipreps/fmriprep:<latest-version> \
122122
/data /out/out \
123123
participant
124124
```
@@ -130,7 +130,7 @@ $ docker run -ti --rm \
130130
-v $HOME/ds005:/data:ro \
131131
-v $HOME/ds005/derivatives:/out \
132132
-v $HOME/tmp/ds005-workdir:/work \
133-
poldracklab/fmriprep:<latest-version> \
133+
nipreps/fmriprep:<latest-version> \
134134
/data /out/fmriprep-<latest-version> \
135135
participant \
136136
-w /work
@@ -146,7 +146,7 @@ $ docker run -ti --rm \ # These lines
146146
-v $HOME/ds005:/data:ro \ # are equivalent to
147147
-v $HOME/ds005/derivatives:/out \ # a call to the App's
148148
-v $HOME/tmp/ds005-workdir:/work \ # entry-point.
149-
poldracklab/fmriprep:<latest-version> \ #
149+
nipreps/fmriprep:<latest-version> \ #
150150
\
151151
/data /out/fmriprep-<latest-version> \ # These lines correspond
152152
participant \ # to the particular BIDS

docs/apps/singularity.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ directly on the system. This is as simple as:
1212

1313
``` Shell
1414
$ singularity build /my_images/fmriprep-<version>.simg \
15-
docker://poldracklab/fmriprep:<version>
15+
docker://nipreps/fmriprep:<version>
1616
```
1717

1818
where `<version>` should be replaced with the desired version of
@@ -30,7 +30,7 @@ $ docker run --privileged -t --rm \
3030
-v /var/run/docker.sock:/var/run/docker.sock \
3131
-v D:\host\path\where\to\output\singularity\image:/output \
3232
singularityware/docker2singularity \
33-
poldracklab/fmriprep:<version>
33+
nipreps/fmriprep:<version>
3434
```
3535

3636
Where `<version>` should be replaced with the desired version of
@@ -44,14 +44,14 @@ $ docker run --privileged -t --rm \
4444
-v /var/run/docker.sock:/var/run/docker.sock \
4545
-v /absolute/path/to/output/folder:/output \
4646
singularityware/docker2singularity \
47-
poldracklab/fmriprep:<version>
47+
nipreps/fmriprep:<version>
4848
```
4949

5050
Transfer the resulting Singularity image to the HPC, for example, using
5151
`scp` or `rsync`:
5252

5353
``` Shell
54-
$ scp poldracklab_fmriprep*.img [email protected]:/my_images
54+
$ scp nipreps_fmriprep*.img [email protected]:/my_images
5555
```
5656

5757
## Running a Singularity Image
@@ -159,7 +159,7 @@ $ singularity run --cleanenv -B /work:/work fmriprep.simg \
159159
generally recommended to use binding scarcely and granting very limited
160160
access to the minimum necessary resources. In other words, it is
161161
preferred to bind just one subdirectory of `$HOME` than the full `$HOME`
162-
directory of the host (see [poldracklab/fmriprep#1778 (comment)](https://github.com/poldracklab/fmriprep/issues/1778\#issuecomment-538009563)).
162+
directory of the host (see [nipreps/fmriprep#1778 (comment)](https://github.com/nipreps/fmriprep/issues/1778\#issuecomment-538009563)).
163163

164164

165165
**Relevant aspects of the** `$HOME` **directory within the container**:
@@ -237,7 +237,7 @@ endpoints), then you can try the following:
237237

238238
* `VerifiedHTTPSConnection ... Failed to establish a new connection: [Errno 110] Connection timed out`.
239239
If you encounter an error like this, probably you'll need to set up an
240-
http proxy exporting `SINGULARITYENV_http_proxy` (see [poldracklab/fmriprep#1778 (comment)](https://github.com/poldracklab/fmriprep/issues/1778\#issuecomment-532297622).
240+
http proxy exporting `SINGULARITYENV_http_proxy` (see [nipreps/fmriprep#1778 (comment)](https://github.com/nipreps/fmriprep/issues/1778\#issuecomment-532297622).
241241
For example:
242242

243243
```Shell

docs/assets/fmriprep.slurm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# ------------------------------------------
1515

1616
BIDS_DIR="$STUDY/data"
17-
DERIVS_DIR="derivatives/fmriprep-1.5.0"
17+
DERIVS_DIR="derivatives/fmriprep-20.2.2"
1818
LOCAL_FREESURFER_DIR="$STUDY/data/derivatives/freesurfer-6.0.1"
1919

2020
# Prepare some writeable bind-mount points.
@@ -31,7 +31,7 @@ export SINGULARITYENV_FS_LICENSE=$HOME/.freesurfer.txt
3131

3232
# Designate a templateflow bind-mount point
3333
export SINGULARITYENV_TEMPLATEFLOW_HOME="/templateflow"
34-
SINGULARITY_CMD="singularity run --cleanenv -B $BIDS_DIR:/data -B ${TEMPLATEFLOW_HOST_HOME}:${SINGULARITYENV_TEMPLATEFLOW_HOME} -B $L_SCRATCH:/work -B ${LOCAL_FREESURFER_DIR}:/fsdir $STUDY/images/poldracklab_fmriprep_1.5.0.simg"
34+
SINGULARITY_CMD="singularity run --cleanenv -B $BIDS_DIR:/data -B ${TEMPLATEFLOW_HOST_HOME}:${SINGULARITYENV_TEMPLATEFLOW_HOME} -B $L_SCRATCH:/work -B ${LOCAL_FREESURFER_DIR}:/fsdir $STUDY/images/fmriprep_20.2.2.simg"
3535

3636
# Parse the participants.tsv file and extract one subject ID from the line corresponding to this SLURM task.
3737
subject=$( sed -n -E "$((${SLURM_ARRAY_TASK_ID} + 1))s/sub-(\S*)\>.*/\1/gp" ${BIDS_DIR}/participants.tsv )

docs/community/CONTRIBUTING.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -121,19 +121,19 @@ is difficult to describe as one unit of work, please consider splitting it into
121121

122122
The current list of issue labels are [here][link_labels] and include:
123123

124-
* [![Good first issue](https://img.shields.io/github/labels/poldracklab/fmriprep/good%20first%20issue)][link_firstissue] *These issues contain a task that is amenable to new contributors because it doesn't entail a steep learning curve.*
124+
* [![Good first issue](https://img.shields.io/github/labels/nipreps/fmriprep/good%20first%20issue)][link_firstissue] *These issues contain a task that is amenable to new contributors because it doesn't entail a steep learning curve.*
125125

126126
If you feel that you can contribute to one of these issues,
127127
we especially encourage you to do so!
128128

129-
* [![Bug](https://img.shields.io/github/labels/poldracklab/fmriprep/bug)][link_bugs] *These issues point to problems in the project.*
129+
* [![Bug](https://img.shields.io/github/labels/nipreps/fmriprep/bug)][link_bugs] *These issues point to problems in the project.*
130130

131131
If you find new a bug, please give as much detail as possible in your issue,
132132
including steps to recreate the error.
133133
If you experience the same bug as one already listed,
134134
please add any additional information that you have as a comment.
135135

136-
* [![Feature](https://img.shields.io/github/labels/poldracklab/fmriprep/feature)][link_enhancement] *These issues are asking for new features and improvements to be considered by the project.*
136+
* [![Feature](https://img.shields.io/github/labels/nipreps/fmriprep/feature)][link_enhancement] *These issues are asking for new features and improvements to be considered by the project.*
137137

138138
Please try to make sure that your requested feature is distinct from any others
139139
that have already been requested or implemented.
@@ -145,22 +145,22 @@ we have two sets of special labels:
145145

146146
| Label | Description |
147147
|--------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
148-
| ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/impact%3A%20high) <br> ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/impact%3A%20medium) <br> ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/impact%3A%20low) | Estimation of the downstream impact the proposed feature/bugfix will have. |
149-
| ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/effort%3A%20high) <br> ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/effort%3A%20medium) <br> ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/effort%3A%20low) | Estimation of effort required to implement the requested feature or fix the reported bug. |
148+
| ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/impact%3A%20high) <br> ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/impact%3A%20medium) <br> ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/impact%3A%20low) | Estimation of the downstream impact the proposed feature/bugfix will have. |
149+
| ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/effort%3A%20high) <br> ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/effort%3A%20medium) <br> ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/effort%3A%20low) | Estimation of effort required to implement the requested feature or fix the reported bug. |
150150

151151
One way to understand these labels is to consider how they would apply to an imaginary issue.
152152
For example, if -- after a release -- a bug is identified that re-introduces a previously solved issue
153153
(i.e., its regresses the code outputs to some undesired behavior), we might assign it the following labels:
154-
![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/bug)
155-
![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/impact%3A%20high)
156-
![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/effort%3A%20low).
154+
![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/bug)
155+
![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/impact%3A%20high)
156+
![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/effort%3A%20low).
157157
Its development priority would then be "high", since it is a low-effort, high-impact change.
158158

159159
Long-term goals may be labelled as a combination of:
160-
![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/effort%3A%20high) and ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/impact%3A%20medium) or ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/impact%3A%20high)
160+
![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/effort%3A%20high) and ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/impact%3A%20medium) or ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/impact%3A%20high)
161161
since they will have a high-impact on the code-base, but require a medium or high amount of effort.
162162
Of note, issues with the labels:
163-
![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/impact%3A%20low) or ![GitHub labels](https://img.shields.io/github/labels/poldracklab/fmriprep/effort%3A%20high)
163+
![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/impact%3A%20low) or ![GitHub labels](https://img.shields.io/github/labels/nipreps/fmriprep/effort%3A%20high)
164164
are less likely to be addressed because they are less likely to impact the code-base, or because they will require a very high activation energy to do so.
165165

166166
## Making a change
@@ -190,7 +190,7 @@ but those accepted fastest will follow a workflow similar to the following:
190190
add the ["upstream" NiPreps repository as a remote][link_addremote]
191191
to your locally cloned repository.
192192
```Shell
193-
git remote add upstream https://github.com/poldracklab/fmriprep.git
193+
git remote add upstream https://github.com/nipreps/fmriprep.git
194194
```
195195
Make sure to [keep your fork up to date][link_updateupstreamwiki] with the upstream repository.<br />
196196
For example, to update your master branch on your local cloned repository:
@@ -339,7 +339,7 @@ You're awesome. :wave::smiley:
339339
[MetPy project](https://github.com/Unidata/MetPy).
340340

341341
[link_github]: https://github.com/
342-
[link_fMRIPrep]: https://github.com/poldracklab/fmriprep
342+
[link_fMRIPrep]: https://github.com/nipreps/fmriprep
343343
[link_signupinstructions]: https://help.github.com/articles/signing-up-for-a-new-github-account
344344

345345
[link_neurostars]: https://neurostars.org/tags/fmriprep
@@ -352,13 +352,13 @@ You're awesome. :wave::smiley:
352352
[markdown]: https://daringfireball.net/projects/markdown
353353
[rick_roll]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
354354

355-
[link_issues]: https://github.com/poldracklab/fmriprep/issues
356-
[link_labels]: https://github.com/poldracklab/fmriprep/labels
355+
[link_issues]: https://github.com/nipreps/fmriprep/issues
356+
[link_labels]: https://github.com/nipreps/fmriprep/labels
357357
[link_discussingissues]: https://help.github.com/articles/discussing-projects-in-issues-and-pull-requests
358358

359-
[link_bugs]: https://github.com/poldracklab/fmriprep/labels/bug
360-
[link_firstissue]: https://github.com/poldracklab/fmriprep/labels/good%20first%20issue
361-
[link_enhancement]: https://github.com/poldracklab/fmriprep/labels/enhancement
359+
[link_bugs]: https://github.com/nipreps/fmriprep/labels/bug
360+
[link_firstissue]: https://github.com/nipreps/fmriprep/labels/good%20first%20issue
361+
[link_enhancement]: https://github.com/nipreps/fmriprep/labels/enhancement
362362

363363
[link_pullrequest]: https://help.github.com/articles/creating-a-pull-request-from-a-fork
364364
[link_fork]: https://help.github.com/articles/fork-a-repo/
@@ -372,19 +372,19 @@ You're awesome. :wave::smiley:
372372
[link_add_commit_push]: https://help.github.com/articles/adding-a-file-to-a-repository-using-the-command-line
373373
[link_updateupstreamwiki]: https://help.github.com/articles/syncing-a-fork/
374374
[link_stemmrolemodels]: https://github.com/KirstieJane/STEMMRoleModels
375-
[link_zenodo]: https://github.com/poldracklab/fmriprep/blob/master/.zenodo.json
376-
[link_update_script]: https://github.com/poldracklab/fmriprep/blob/master/.maintenance/update_zenodo.py
375+
[link_zenodo]: https://github.com/nipreps/fmriprep/blob/master/.zenodo.json
376+
[link_update_script]: https://github.com/nipreps/fmriprep/blob/master/.maintenance/update_zenodo.py
377377
[link_devel]: https://fmriprep.readthedocs.io/en/latest/contributors.html
378378
[link_fmriprep]: http://fmriprep.org
379379
[link_bidsapps]: https://bids-apps.neuroimaging.io
380380
[link_mattermost]: https://mattermost.brainhack.org/brainhack/channels/fmriprep
381381
[link_aroma]: https://fmriprep.readthedocs.io/en/stable/workflows.html#ica-aroma
382382

383-
[enh_ex]: https://github.com/poldracklab/fmriprep/pull/1508
384-
[fix_ex]: https://github.com/poldracklab/fmriprep/pull/1378
385-
[tst_ex]: https://github.com/poldracklab/fmriprep/pull/1098
386-
[doc_ex]: https://github.com/poldracklab/fmriprep/pull/1515
387-
[sty_ex]: https://github.com/poldracklab/fmriprep/pull/675
388-
[ref_ex]: https://github.com/poldracklab/fmriprep/pull/816
389-
[ci_ex]: https://github.com/poldracklab/fmriprep/pull/1048
390-
[maint_ex]: https://github.com/poldracklab/fmriprep/pull/1239
383+
[enh_ex]: https://github.com/nipreps/fmriprep/pull/1508
384+
[fix_ex]: https://github.com/nipreps/fmriprep/pull/1378
385+
[tst_ex]: https://github.com/nipreps/fmriprep/pull/1098
386+
[doc_ex]: https://github.com/nipreps/fmriprep/pull/1515
387+
[sty_ex]: https://github.com/nipreps/fmriprep/pull/675
388+
[ref_ex]: https://github.com/nipreps/fmriprep/pull/816
389+
[ci_ex]: https://github.com/nipreps/fmriprep/pull/1048
390+
[maint_ex]: https://github.com/nipreps/fmriprep/pull/1239

docs/community/features.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
> The one bit that worries me is that *fMRIPrep* may become a Swiss army knife. I think instead it should just be a paring knife (small, efficient, and works for many things).
33
>
4-
> -- <cite>Satra ([source](https://github.com/poldracklab/fmriprep/issues/1963#issuecomment-584455061))</cite>
4+
> -- <cite>Satra ([source](https://github.com/nipreps/fmriprep/issues/1963#issuecomment-584455061))</cite>
55
66
When projects grow large, many forking paths created by newly implemented features start
77
to open up.
@@ -14,7 +14,7 @@ Defining such a scope also aids the implementation of the ease-of-use principle:
1414
> in the acquisition, *NiPreps* should not add many additional knobs to those
1515
> for them to be considered a viable *augmentation* or extension of the scanner hw/sw.
1616
>
17-
> -- <cite>Oscar ([source](https://github.com/poldracklab/fmriprep/issues/1963#issuecomment-584455061))</cite>
17+
> -- <cite>Oscar ([source](https://github.com/nipreps/fmriprep/issues/1963#issuecomment-584455061))</cite>
1818
1919
## The problem of feature creep
2020
To avert [feature creep](https://en.wikipedia.org/wiki/Feature_creep) and
@@ -23,7 +23,7 @@ guidelines, with the hopes of keeping these tools in a healthy state.
2323

2424
> I'm worried *fMRIPrep* is catching a case of featuritis
2525
>
26-
> -- <cite>Mathias ([source](https://github.com/poldracklab/fmriprep/issues/1985#issuecomment-588493059))</cite>
26+
> -- <cite>Mathias ([source](https://github.com/nipreps/fmriprep/issues/1985#issuecomment-588493059))</cite>
2727
2828
These guidelines should also serve the community to transparently drive the process
2929
of including proposals into the road-map, set the ground for healthy conversation,
@@ -38,7 +38,7 @@ possible to rigorously follow them:
3838
> guarantee (or rule out) specific features when working with a small
3939
> development team.
4040
>
41-
> -- <cite>Elizabeth ([source](https://github.com/poldracklab/fmriprep/issues/1963#issuecomment-582453941))</cite>.
41+
> -- <cite>Elizabeth ([source](https://github.com/nipreps/fmriprep/issues/1963#issuecomment-582453941))</cite>.
4242
4343
## Proposing a new feature
4444

@@ -52,7 +52,7 @@ particular *NiPrep* repository.
5252
If no previous discussion about the new idea is found,
5353
the next step is ensuring the new feature aligns with the vision and
5454
the scope of the target tool, as
55-
[Elizabeth points out](https://github.com/poldracklab/fmriprep/issues/1963#issuecomment-582453941).
55+
[Elizabeth points out](https://github.com/nipreps/fmriprep/issues/1963#issuecomment-582453941).
5656
Taking a look into the Development Road-map of the particular project
5757
(if it exists), may help finding an answer.
5858

@@ -62,7 +62,7 @@ go ahead and post an issue requesting feedback on your proposal.
6262
Please make sure to clearly state why the new feature should be considered.
6363

6464
### Some questions will always be asked about a new feature
65-
[These questions by James](https://github.com/poldracklab/fmriprep/issues/1963#issuecomment-582220173)
65+
[These questions by James](https://github.com/nipreps/fmriprep/issues/1963#issuecomment-582220173)
6666
will certainly help build up the discourse in support of the new feature,
6767
as the *NiPreps* maintainers will consider them:
6868

@@ -75,7 +75,7 @@ as the *NiPreps* maintainers will consider them:
7575
> Especially when the CLI is affected, and yet another option is added,
7676
> that makes the tool more complex to use.
7777
>
78-
> -- <cite>Alejandro ([source](https://github.com/poldracklab/fmriprep/ issues/1963#issuecomment-582174814))</cite>.
78+
> -- <cite>Alejandro ([source](https://github.com/nipreps/fmriprep/ issues/1963#issuecomment-582174814))</cite>.
7979
8080
* Does the new feature substantially **increase the internal complexity**?
8181
Maintainers and developers will attempt to consolidate tools and lower the internal
@@ -97,7 +97,7 @@ as the *NiPreps* maintainers will consider them:
9797
* if so, can the procedure/value be determined algorithmically?
9898

9999
* Does the feature **interact with other settings**?
100-
For instance, [fmriprep#1962](https://github.com/poldracklab/fmriprep/pull/1962)
100+
For instance, [fmriprep#1962](https://github.com/nipreps/fmriprep/pull/1962)
101101
interacts with the a/tCompCor implementation.
102102

103103
* What is the **difficulty of implementing the procedure outside** of a *NiPrep*?

0 commit comments

Comments
 (0)