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

How to run antsMultivariateTemplateConstruction2.sh in SLURM #1863

Open
Marjola89 opened this issue Mar 25, 2025 · 1 comment
Open

How to run antsMultivariateTemplateConstruction2.sh in SLURM #1863

Marjola89 opened this issue Mar 25, 2025 · 1 comment

Comments

@Marjola89
Copy link

Marjola89 commented Mar 25, 2025

Hi,
I was wondering how you run any ANTs script in SLURM?
I am trying to run antsMultivariateTemplateConstruction2.sh using the following slurm script:

#!/bin/bash
#SBATCH -N 1              # Number of nodes
#SBATCH -n 1              # Number of tasks
#SBATCH -c 7              # Number of cores
#SBATCH --mem=15000       # Memory in MB
#SBATCH --output=slurm_out/slurm_%j.out  # Output file
#SBATCH --error=slurm_out/slurm_%j.err   # Error file
#SBATCH -t 24:00:00       # Time requested in HH:MM:SS
#SBATCH [email protected]
#SBATCH --mail-type=END,FAIL

export ANTSPATH=/home/install/bin/
export PATH=${ANTSPATH}:$PATH

ANTSPATH=/home/install/bin

inputPath=/home/template
outputPath=/home/template_test/

"${ANTSPATH}"/antsMultivariateTemplateConstruction2.sh \
  -d 3 \
  -o ${outputPath}T_ \
  -i 4 \
  -g 0.2 \
  -c 5 \
  -k 1 \
  -y 1 \
  -w 1 \
  -q 100x70x50x10 \
  -n 0 \
  -r 1 \
  -m MI \
  -t BSplineSyN \
  ${inputPath}/*/analysis/organ.nii.gz

It reads the data ok:

$ cat slurm_out/slurm_3033309.out
....
reading /home/template_test/initialCOM0_299_organ.nii.gz
 writing output
Sharpening method none

--------------------------------------------------------------------------------------
 Starting ANTS rigid registration on SLURM cluster. Submitted 300 jobs
--------------------------------------------------------------------------------------
  Waiting for 1 jobs:  3033310 3033311 3033312 3033313 3033314 3033315 3033316 3033317 3033318 3033319 3033320 3033321 3033322 3033323 3033324 3033325 3033326 3033327 3033328 3033329 3033330 3033331 303333>
  No more jobs in queue


Building rigid template from /home/template_test/rigid0_0_organ.nii.gz ...

but I get error:

$ cat slurm_out/slurm_3033309.err
squeue: error: Unrecognized option: 3033311
 Cannot read input file: /home/template_test/rigid0_0_organ.nii.gz
 file /home/template_test/T_template0.nii.gz does not exist . 
terminate called after throwing an instance of 'itk::ExceptionObject'

and inside the individual jobs I get this error:

$ cat slurm-3033310.out
/var/spool/slurmd/job3033310/slurm_script: 3: antsRegistration: not found
/var/spool/slurmd/job3033310/slurm_script: 4: antsApplyTransforms: not found

So, I am not sure if it has to do with the way I run this using SLURM or there is anything else I am missing.
I have tried to run ANTs scripts using CPU cores and have run other ANTs functions inside SLURM but I do not get any errors regarding the script not found.
I would really appreciate your suggestions on this.

Thank you,
Maria

@cookpa
Copy link
Member

cookpa commented Mar 25, 2025

It looks like the jobs don't have ANTs on the PATH. You can try to fix this globally, or edit the script to set QSUBOPTS="PATH=${PATH}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants