Skip to content

Commit 4dbad47

Browse files
author
Shoshana Berleant
committed
doi
2 parents bb45785 + b888419 commit 4dbad47

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

nipype/algorithms/compcor.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from ..pipeline import engine as pe
1717
from ..interfaces.utility import IdentityInterface
1818
from .misc import regress_poly
19+
from ..external.due import BibTeX, Doi, due
1920

2021
import nibabel as nb
2122
import numpy as np
@@ -57,6 +58,19 @@ class CompCor(BaseInterface):
5758
'''
5859
input_spec = CompCorInputSpec
5960
output_spec = CompCorOutputSpec
61+
references_ = [{'entry': BibTeX("@article{compcor_2007,"
62+
"title = {A component based noise correction method (CompCor) for BOLD and perfusion based},"
63+
"volume = {37},"
64+
"number = {1},"
65+
"doi = {10.1016/j.neuroimage.2007.04.042},"
66+
"urldate = {2016-08-13},"
67+
"journal = {NeuroImage},"
68+
"author = {Behzadi, Yashar and Restom, Khaled and Liau, Joy and Liu, Thomas T.},"
69+
"year = {2007},"
70+
"pages = {90-101},}"
71+
),
72+
'tags': ['method', 'implementation']
73+
}]
6074

6175
def _run_interface(self, runtime):
6276
imgseries = nb.load(self.inputs.realigned_file).get_data()

0 commit comments

Comments
 (0)