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

set rat-specific defaults for FD calculations #1005

Merged
merged 3 commits into from Aug 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions mriqc/cli/parser.py
Expand Up @@ -559,6 +559,10 @@ def parse_args(args=None, namespace=None):
# TODO: add other species once rats are working
if opts.species.lower() == "rat":
config.workflow.template_id = "Fischer344"
# mean distance from the lateral edge to the center of the brain is
# ~ PA:10 mm, LR:7.5 mm, and IS:5 mm (see DOI: 10.1089/089771503770802853)
# roll movement is most likely to occur, so set to 7.5 mm
config.workflow.fd_radius = 7.5
config.workflow.headmask = "NoBET"
# block uploads for the moment; can be reversed before wider release
config.execution.no_sub = True
Expand Down