Create image from data for QC - GarzaLab/Documentation GitHub Wiki

A quick way to do QC instead of looking at each image is to create JPG images for each.

For example:

for i in *_t1_pp.mnc; do 
    mincpik -scale 20 -t ${i} ${i%.*}.jpg;
done

You can use montage for more options.