Civet is a pipeline for analysis of brain imaging data. Civet is used to extract and analyze cortical surfaces from MR images and can be used to perform a number of volumetric and corticometric computations.
Allocate an interactive session and run the program. Sample session:
[user@biowulf]$ sinteractive salloc.exe: Pending job allocation 46116226 salloc.exe: job 46116226 queued and waiting for resources salloc.exe: job 46116226 has been allocated resources salloc.exe: Granted job allocation 46116226 salloc.exe: Waiting for resource configuration salloc.exe: Nodes cn4224 are ready for job [user@cn4224 ~]$ module load civet [+] Loading civet 2.1.1 on cn4224 [+] Loading singularity 3.7.1 on cn4224 [user@cn4224 ~]$ CIVET_Processing_Pipeline -help CIVET_Processing_Pipeline, version 2.1.1, released December, 2018. Takes any number of multi or single spectral input MINC volumes and extracts the cortical surfaces from them utilizing the PMP pipeline system. It then calculates cortical thickness at each vertex of the produced cortical surfaces (non-linearly registered) using the t-link metric (in both Talairach and native spaces). It can also produce ANIMAL segmentations, symmetry analyses, regional thickness, surface areas and volumes for brain lobes. On-line documentation is available at: http://www.bic.mni.mcgill.ca/ServicesSoftware/CIVET. [...]
Create a batch input file (e.g. civet.sh) similar to the following.
#! /bin/bash set -e module load civet CIVET_Processing_Pipeline -sourcedir /data/user/civet-data-sets \ -targetdir /data/user/civet-output-dir \ -prefix my_data -N3-distance 0 -area-fwhm 20 \ -thickness tlink 30 -VBM -resample-surfaces \ -combine-surfaces -id-file scans -run
Submit these jobs using the Slurm sbatch command.
Create a swarmfile for the first step of the pipeline (e.g. civet.swarm). For example:
CIVET_Processing_Pipeline -sourcedir /data/user/civet-data-set-01 \ -targetdir /data/user/civet-output-01 \ -prefix my_data -N3-distance 0 -area-fwhm 20 \ -thickness tlink 30 -VBM -resample-surfaces \ -combine-surfaces -id-file scans -run CIVET_Processing_Pipeline -sourcedir /data/user/civet-data-02 \ -targetdir /data/user/civet-output-02 \ -prefix my_data -N3-distance 0 -area-fwhm 20 \ -thickness tlink 30 -VBM -resample-surfaces \ -combine-surfaces -id-file scans -run
Submit this job using the swarm command.
swarm -f civet.swarm [-g #] --module civetwhere
-g # | Number of Gigabytes of memory required for each process (1 line in the swarm command file) |
--module civet | Loads the civet module for each subjob in the swarm |