File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 20
20
import nibabel as nb
21
21
import numpy as np
22
22
23
+ from ..external .due import due , Doi , BibTeX
23
24
from ..interfaces .base import (traits , TraitedSpec , BaseInterface ,
24
25
BaseInterfaceInputSpec , File )
25
26
@@ -49,6 +50,21 @@ class ComputeDVARS(BaseInterface):
49
50
"""
50
51
input_spec = ComputeDVARSInputSpec
51
52
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
+ }]
52
68
53
69
def __init__ (self , ** inputs ):
54
70
self ._results = {}
You can’t perform that action at this time.
0 commit comments