Skip to content

Commit 83046ff

Browse files
committed
add duecredit references
1 parent 5bd2c83 commit 83046ff

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

nipype/algorithms/confounds.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import nibabel as nb
2121
import numpy as np
2222

23+
from ..external.due import due, Doi, BibTeX
2324
from ..interfaces.base import (traits, TraitedSpec, BaseInterface,
2425
BaseInterfaceInputSpec, File)
2526

@@ -49,6 +50,21 @@ class ComputeDVARS(BaseInterface):
4950
"""
5051
input_spec = ComputeDVARSInputSpec
5152
output_spec = ComputeDVARSOutputSpec
53+
references_ = [{
54+
'entry': BibTex("""\
55+
@techreport{nichols_notes_2013,
56+
address = {Coventry, UK},
57+
title = {Notes on {Creating} a {Standardized} {Version} of {DVARS}},
58+
url = {http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic-\
59+
research/nichols/scripts/fsl/standardizeddvars.pdf},
60+
urldate = {2016-08-16},
61+
institution = {University of Warwick},
62+
author = {Nichols, Thomas},
63+
year = {2013}
64+
}"""),
65+
'tags': ['method']
66+
67+
}]
5268

5369
def __init__(self, **inputs):
5470
self._results = {}

0 commit comments

Comments
 (0)