Skip to content

Commit

Permalink
Fixing function call
Browse files Browse the repository at this point in the history
  • Loading branch information
DelinteNicolas committed Feb 28, 2024
1 parent f817a4a commit bc33beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elikopy/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ def dti(self,folder_path=None, patient_list_m=None, maskType="brain_mask_dilated

if slurm:
p_job = {
"wrap": "python -c 'from elikopy.individual_subject_processing import dti_solo; dti_solo(\"" + folder_path + "/\",\"" + p + "\",maskType=\"" + str(maskType) + "\", use_all_shells=\"" + str(use_all_shells) + "\")'",
"wrap": "python -c 'from elikopy.individual_subject_processing import dti_solo; dti_solo(\"" + folder_path + "/\",\"" + p + "\",maskType=\"" + str(maskType) + "\", use_all_shells=" + str(use_all_shells) +")'",
"job_name": "dti_" + p,
"ntasks": 1,
"cpus_per_task": 1,
Expand Down

0 comments on commit bc33beb

Please sign in to comment.