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

3dTproject #180

Merged
merged 2 commits into from
Nov 19, 2024
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
24 changes: 18 additions & 6 deletions descriptors/afni/3dTproject.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "3dTproject",
"command-line": "3dTproject [TR] [AUTOMASK] [BANDPASS] [BLUR] [CENMODE] [CENSOR] [CENSORTR] [CONCAT] [DSORT] [IN_FILE] [MASK] [NOBLOCK] [NORM] [ORT] [POLORT] [STOPBAND]",
"command-line": "3dTproject [TR] [AUTOMASK] [BANDPASS] [BLUR] [CENMODE] [CENSOR] [CENSORTR] [CONCAT] [DSORT] [IN_FILE] [MASK] [NOBLOCK] [NORM] [ORT] [POLORT] [STOPBAND] [PREFIX]",
"author": "AFNI Developers",
"description": "This program projects (detrends) out various 'nuisance' time series from each voxel in the input dataset. Note that all the projections are done via linear regression, including the frequency-based options such as '-passband'. In this way, you can bandpass time-censored data, and at the same time, remove other time series of no interest (e.g., physiological estimates, motion parameters).",
"url": "https://afni.nimh.nih.gov/",
Expand Down Expand Up @@ -52,7 +52,11 @@
"command-line-flag": "-cenmode",
"description": "'kill' or 'zero' or 'ntrp'. Specifies how censored time points are treated in the output dataset:* mode = zero -- put zero values in their place; output dataset is same length as input* mode = kill -- remove those time points; output dataset is shorter than input* mode = ntrp -- censored values are replaced by interpolated neighboring (in time) non-censored values, before any projections, and then the analysis proceeds without actual removal of any time points -- this feature is to keep the spanish inquisition happy.* the default mode is kill !!!.",
"optional": true,
"value-choices": ["KILL", "ZERO", "NTRP"]
"value-choices": [
"kill",
"zero",
"ntrp"
]
},
{
"id": "censor",
Expand Down Expand Up @@ -158,15 +162,23 @@
"command-line-flag": "-stopband",
"description": "(a float, a float). Remove all frequencies in the range.",
"optional": true
},
{
"id": "prefix",
"name": "Prefix",
"type": "String",
"value-key": "[PREFIX]",
"command-line-flag": "-prefix",
"description": "Output file prefix.",
"optional": false
}
],
"output-files": [
{
"name": "Out file",
"id": "out_file",
"path-template": "[IN_FILE]",
"value-key": "[OUT_FILE]",
"command-line-flag": "-prefix",
"path-template": "[PREFIX]",
"value-key": "[PREFIX]",
"optional": true,
"description": "Output file."
}
Expand All @@ -180,4 +192,4 @@
"tags": {
"domain": "neuroinformatics"
}
}
}
Loading