Help with amico.Evaluation #168
-
Hello, I am trying to use the function amico.Evaluation in the following way: ae = amico.Evaluation("Studyname", subj), where subj is a variable with the name of the subject folder, so the script could run for all the subjects in "Studyname" folder. However, the function is not working. I tried to use it in the simplest way proposed in the wiki: ae = amico.Evaluation("Studyname", "Subject01"), where the arguments are the names of the different folders (study and first subject), but is not working either. Am I using the function in a wrong way? I would appreciate any help. Thanks! Mar. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi, |
Beta Was this translation helpful? Give feedback.
You're right; after setting the
study_path
andsubject
arguments in yourEvaluation
object, you only have to specify the input file names for the methods of theEvaluation
class, e.g. theload_data
method.fsl2scheme
is not a method of theEvaluation
class, so you have to specify the entire path of yourbval
andbvec
files. This is because in a study, if the data were acquired with the same acquisition parameters, the subjects will share the samebval
andbvec
files. Therefore, one could generate a single scheme file and use it for all the subjects in the study.I agree with you that…