Skip to content

FIX doi for compcor #1630

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 15, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions nipype/algorithms/confounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,19 @@ class CompCor(BaseInterface):
'''
input_spec = CompCorInputSpec
output_spec = CompCorOutputSpec
references_ = [{'entry': BibTeX("@article{compcor_2007,"
"title = {A component based noise correction method (CompCor) for BOLD and perfusion based},"
"volume = {37},"
"number = {1},"
"doi = {10.1016/j.neuroimage.2007.04.042},"
"urldate = {2016-08-13},"
"journal = {NeuroImage},"
"author = {Behzadi, Yashar and Restom, Khaled and Liau, Joy and Liu, Thomas T.},"
"year = {2007},"
"pages = {90-101},}"
),
'tags': ['method', 'implementation']
}]

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