Skip to content

Commit 837d87e

Browse files
committed
fix: add Zenodo to the citation boilerplate
1 parent d9d8050 commit 837d87e

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

dmriprep/data/boilerplate.bib

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
@article{dmriprep,
2+
author = {Lerma-Usabiaga, Garikoitz and Keshavan, Anisha and Richie-Halford, Adam and Rokem, Ariel and Esteban, Oscar},
3+
title = {{dMRIPrep: a robust preprocessing pipeline for diffusion MRI}},
4+
year = 2019,
5+
doi = {10.5281/zenodo.3392201},
6+
publisher = {Zenodo},
7+
journal = {Software}
8+
}
9+
110
@article{fmriprep1,
211
author = {Esteban, Oscar and Markiewicz, Christopher and Blair, Ross W and Moodie, Craig and Isik, Ayse Ilkay and Erramuzpe Aliaga, Asier and Kent, James and Goncalves, Mathias and DuPre, Elizabeth and Snyder, Madeleine and Oya, Hiroyuki and Ghosh, Satrajit and Wright, Jessey and Durnez, Joke and Poldrack, Russell and Gorgolewski, Krzysztof Jacek},
312
title = {{fMRIPrep}: a robust preprocessing pipeline for functional {MRI}},

dmriprep/workflows/base.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,9 @@ def init_single_subject_wf(
320320
subject_data = collect_data(layout, subject_id)[0]
321321

322322
# Make sure we always go through these two checks
323-
if not anat_only and subject_data['bold'] == []:
324-
raise Exception("No BOLD images found for participant {} and task {}. "
325-
"All workflows require BOLD images.".format(
326-
subject_id, task_id if task_id else '<all>'))
323+
if not anat_only and subject_data['dwi'] == []:
324+
raise Exception("No DWI data found for participant {}. "
325+
"All workflows require DWI images.".format(subject_id))
327326

328327
if not subject_data['t1w']:
329328
raise Exception("No T1w images found for participant {}. "
@@ -333,7 +332,7 @@ def init_single_subject_wf(
333332
workflow.__desc__ = """
334333
Results included in this manuscript come from preprocessing
335334
performed using *dMRIPrep* {dmriprep_ver}
336-
(@dmriprep1; @dmriprep2; RRID:SCR_016216),
335+
(@dmriprep; RRID:SCR_017412),
337336
which is based on *Nipype* {nipype_ver}
338337
(@nipype1; @nipype2; RRID:SCR_002502).
339338
@@ -346,7 +345,7 @@ def init_single_subject_wf(
346345
For more details of the pipeline, see [the section corresponding
347346
to workflows in *dMRIPrep*'s documentation]\
348347
(https://dmriprep.readthedocs.io/en/latest/workflows.html \
349-
"FMRIPrep's documentation").
348+
"dMRIPrep's documentation").
350349
351350
352351
### Copyright Waiver

0 commit comments

Comments
 (0)