AFNI

DataTable

3dMVM and 3dLME can take an input table like 3dMVM … -dataTable @myfile.tsv. Both are very particular about the format of the input file.

Building

Here's example GNU R code to add InputFile to an existing dataframe df 1)

path_prefix <- '/Volumes/Hera/Datasets/adept/data/tat2/sub-'
df <- df %>%
        mutate(InputFile = paste0(path_prefix, subjid, '_ses-0', visit, '_tat2.nii.gz')) %>%
        filter(file.exists(InputFile))
Other Tools
1)
from Finn circa 2023-09