Skip to content
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

add emomatching task to piop2 datagrabber #371

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/changes/newsfragments/370.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add ``'emomatching'`` task to :class:`DataladAOMICPIOP2` by `Leonard Sasse`_
3 changes: 2 additions & 1 deletion junifer/datagrabber/aomic/piop2.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DataladAOMICPIOP2(PatternDataladDataGrabber):
"FreeSurfer"} or list of the options, optional
AOMIC data types. If None, all available data types are selected.
(default None).
tasks : {"restingstate", "stopsignal", "workingmemory"} or \
tasks : {"restingstate", "stopsignal", "workingmemory", "emomatching"} or \
list of the options, optional
AOMIC PIOP2 task sessions. If None, all available task sessions are
selected (default None).
Expand All @@ -59,6 +59,7 @@ def __init__(
"restingstate",
"stopsignal",
"workingmemory",
"emomatching"
]
# Set default tasks
if tasks is None:
Expand Down
Loading