External Email - Use Caution        

Sure!

This is the job script:

#!/bin/bash

#

#SBATCH --ntasks=1

#SBATCH --mem-per-cpu=50000

#SBATCH --partition=medium

#SBATCH --time=48:00:00

#SBATCH --mail-type=FAIL

#SBATCH --mail-user=snolin@uab.edu

#SBATCH --job-name=DMNfclhmris_preproc

#SBATCH --output=mris_preprocDMNfclh.txt

export PATH=/home/snolin/Freesurfer_exec/:$PATH

 

#DMN fc#

parentdir=/data/project/vislab/a/HCP_diff_Sara/V1stoFNtprob

recon=/data/project/vislab/a/HCP_diff_Sara/subjects_reconall_postcheckcopy

#make folder to populate with data files

in=$parentdir/surface_analysis

cd $in

mkdir DMN

 

#copy fsaverage folder to analysis folder

cp -R $recon/fsaverage $in/DMN

 

#set as Freesurfer subjects directory

unset SUBJECTS_DIR

SUBJECTS_DIR=$in/DMN

export SUBJECTS_DIR

 

#make mris_preproc output folder

out=$parentdir/surface_analysis

cd $out

mkdir preproc_DMN_fc

 

#location of participants you want to pull

diff=/data/project/vislab/a/HCP_diff_Sara/subjects_reconall_postcheckcopy

 

#copy data into correct structure for mris_preproc to be happy

for patient in `ls -1 $diff`

do

#copy newfar data

cd $in/DMN

mkdir $patient.newfar

cp $parentdir/newfartoDMN_surf/newfartoDMNlhsurf_$patient.mgh $in/DMN/$patient.newfar/

mv $in/DMN/$patient.newfar/newfartoDMNlhsurf_$patient.mgh $in/DMN/$patient.newfar/lhsurf.mgh

 

#copy newcentral data

cd $in/DMN

mkdir $patient.newcentral

cp $parentdir/newcentraltoDMN_surf/newcentraltoDMNlhsurf_$patient.mgh $in/DMN/$patient.newcentral/

mv $in/DMN/$patient.newcentral/newcentraltoDMNlhsurf_$patient.mgh $in/DMN/$patient.newcentral/lhsurf.mgh

 

#copy surf folder into both newfar and newcentral folders

cp -R $recon/$patient/surf $in/DMN/$patient.newfar/

cp -R $recon/$patient/surf $in/DMN/$patient.newcentral/

 

#copy label folder into both newfar and newcentral folders

cp -R $recon/$patient/label $in/DMN/$patient.newfar/

cp -R $recon/$patient/label $in/DMN/$patient.newcentral/

done

 

#actually finally run mris_preproc with isp flags in exact same order as subject file list

#see makingsublist.m for generating sublist for mris_preproc

sublist=$in/sublistfc.txt

 

mris_preproc --target fsaverage --hemi lh --no-prune --isp $in/DMN/100206.newfar/lhsurf.mgh --isp $in/DMN/100206.newcentral/lhsurf.mgh --isp $in/DMN/100307.newfar/lhsurf.mgh --isp $in/DMN/100307.newcentral/lhsurf.mgh --isp $in/DMN/100408.newfar/lhsurf.mgh --isp $in/DMN/100408.newcentral/lhsurf.mgh --isp $in/DMN/100610.newfar/lhsurf.mgh --isp $in/DMN/100610.newcentral/lhsurf.mgh --isp $in/DMN/101006.newfar/lhsurf.mgh --isp $in/DMN/101006.newcentral/lhsurf.mgh --isp $in/DMN/101107.newfar/lhsurf.mgh --isp $in/DMN/101107.newcentral/lhsurf.mgh --isp $in/DMN/101309.newfar/lhsurf.mgh --isp $in/DMN/101309.newcentral/lhsurf.mgh --isp $in/DMN/101410.newfar/lhsurf.mgh --isp $in/DMN/101410.newcentral/lhsurf.mgh --isp $in/DMN/101915.newfar/lhsurf.mgh --isp $in/DMN/101915.newcentral/lhsurf.mgh --isp $in/DMN/102008.newfar/lhsurf.mgh --isp $in/DMN/102008.newcentral/lhsurf.mgh --isp $in/DMN/102311.newfar/lhsurf.mgh --isp $in/DMN/102311.newcentral/lhsurf.mgh --isp $in/DMN/102513.newfar/lhsurf.mgh --isp $in/DMN/102513.newcentral/lhsurf.mgh --isp $in/DMN/102816.newfar/lhsurf.mgh --isp $in/DMN/102816.newcentral/lhsurf.mgh --isp $in/DMN/103111.newfar/lhsurf.mgh --isp $in/DMN/103111.newcentral/lhsurf.mgh --isp $in/DMN/103414.newfar/lhsurf.mgh --isp $in/DMN/103414.newcentral/lhsurf.mgh --isp $in/DMN/103515.newfar/lhsurf.mgh --isp $in/DMN/103515.newcentral/lhsurf.mgh --isp $in/DMN/103818.newfar/lhsurf.mgh --isp $in/DMN/103818.newcentral/lhsurf.mgh --isp $in/DMN/104012.newfar/lhsurf.mgh --isp $in/DMN/104012.newcentral/lhsurf.mgh --isp $in/DMN/104416.newfar/lhsurf.mgh --isp $in/DMN/104416.newcentral/lhsurf.mgh --isp $in/DMN/104820.newfar/lhsurf.mgh --isp $in/DMN/104820.newcentral/lhsurf.mgh --isp $in/DMN/105014.newfar/lhsurf.mgh --isp $in/DMN/105014.newcentral/lhsurf.mgh --isp $in/DMN/105115.newfar/lhsurf.mgh --isp $in/DMN/105115.newcentral/lhsurf.mgh --isp $in/DMN/105216.newfar/lhsurf.mgh --isp $in/DMN/105216.newcentral/lhsurf.mgh --isp $in/DMN/105923.newfar/lhsurf.mgh --isp $in/DMN/105923.newcentral/lhsurf.mgh --isp $in/DMN/106016.newfar/lhsurf.mgh --isp $in/DMN/106016.newcentral/lhsurf.mgh --isp $in/DMN/106319.newfar/lhsurf.mgh --isp $in/DMN/106319.newcentral/lhsurf.mgh --isp $in/DMN/106521.newfar/lhsurf.mgh --isp $in/DMN/106521.newcentral/lhsurf.mgh --isp $in/DMN/107018.newfar/lhsurf.mgh --isp $in/DMN/107018.newcentral/lhsurf.mgh --isp $in/DMN/107321.newfar/lhsurf.mgh --isp $in/DMN/107321.newcentral/lhsurf.mgh --isp $in/DMN/107422.newfar/lhsurf.mgh --isp $in/DMN/107422.newcentral/lhsurf.mgh --isp $in/DMN/107725.newfar/lhsurf.mgh --isp $in/DMN/107725.newcentral/lhsurf.mgh --isp $in/DMN/108121.newfar/lhsurf.mgh --isp $in/DMN/108121.newcentral/lhsurf.mgh --isp $in/DMN/108222.newfar/lhsurf.mgh --isp $in/DMN/108222.newcentral/lhsurf.mgh --isp $in/DMN/108323.newfar/lhsurf.mgh --isp $in/DMN/108323.newcentral/lhsurf.mgh --isp $in/DMN/108525.newfar/lhsurf.mgh --isp $in/DMN/108525.newcentral/lhsurf.mgh --isp $in/DMN/108828.newfar/lhsurf.mgh --isp $in/DMN/108828.newcentral/lhsurf.mgh --isp $in/DMN/109123.newfar/lhsurf.mgh --isp $in/DMN/109123.newcentral/lhsurf.mgh --isp $in/DMN/109830.newfar/lhsurf.mgh --isp $in/DMN/109830.newcentral/lhsurf.mgh --isp $in/DMN/110007.newfar/lhsurf.mgh --isp $in/DMN/110007.newcentral/lhsurf.mgh --isp $in/DMN/110411.newfar/lhsurf.mgh --isp $in/DMN/110411.newcentral/lhsurf.mgh --isp $in/DMN/111009.newfar/lhsurf.mgh --isp $in/DMN/111009.newcentral/lhsurf.mgh --isp $in/DMN/111413.newfar/lhsurf.mgh --isp $in/DMN/111413.newcentral/lhsurf.mgh --isp $in/DMN/111514.newfar/lhsurf.mgh --isp $in/DMN/111514.newcentral/lhsurf.mgh --isp $in/DMN/111716.newfar/lhsurf.mgh --isp $in/DMN/111716.newcentral/lhsurf.mgh --isp $in/DMN/112314.newfar/lhsurf.mgh --isp $in/DMN/112314.newcentral/lhsurf.mgh --isp $in/DMN/112516.newfar/lhsurf.mgh --isp $in/DMN/112516.newcentral/lhsurf.mgh --isp $in/DMN/112819.newfar/lhsurf.mgh --isp $in/DMN/112819.newcentral/lhsurf.mgh --isp $in/DMN/112920.newfar/lhsurf.mgh --isp $in/DMN/112920.newcentral/lhsurf.mgh --isp $in/DMN/113215.newfar/lhsurf.mgh --isp $in/DMN/113215.newcentral/lhsurf.mgh --isp $in/DMN/113619.newfar/lhsurf.mgh --isp $in/DMN/113619.newcentral/lhsurf.mgh --isp $in/DMN/113821.newfar/lhsurf.mgh --isp $in/DMN/113821.newcentral/lhsurf.mgh --isp $in/DMN/113922.newfar/lhsurf.mgh --isp $in/DMN/113922.newcentral/lhsurf.mgh --isp $in/DMN/114217.newfar/lhsurf.mgh --isp $in/DMN/114217.newcentral/lhsurf.mgh --isp $in/DMN/114318.newfar/lhsurf.mgh --isp $in/DMN/114318.newcentral/lhsurf.mgh --isp $in/DMN/114419.newfar/lhsurf.mgh --isp $in/DMN/114419.newcentral/lhsurf.mgh --isp $in/DMN/114621.newfar/lhsurf.mgh --isp $in/DMN/114621.newcentral/lhsurf.mgh --isp $in/DMN/114823.newfar/lhsurf.mgh --isp $in/DMN/114823.newcentral/lhsurf.mgh --isp $in/DMN/115017.newfar/lhsurf.mgh --isp $in/DMN/115017.newcentral/lhsurf.mgh --isp $in/DMN/115219.newfar/lhsurf.mgh --isp $in/DMN/115219.newcentral/lhsurf.mgh --isp $in/DMN/115320.newfar/lhsurf.mgh --isp $in/DMN/115320.newcentral/lhsurf.mgh --isp $in/DMN/115825.newfar/lhsurf.mgh --isp $in/DMN/115825.newcentral/lhsurf.mgh --isp $in/DMN/116221.newfar/lhsurf.mgh --isp $in/DMN/116221.newcentral/lhsurf.mgh --isp $in/DMN/116524.newfar/lhsurf.mgh --isp $in/DMN/116524.newcentral/lhsurf.mgh --isp $in/DMN/116726.newfar/lhsurf.mgh --isp $in/DMN/116726.newcentral/lhsurf.mgh --isp $in/DMN/117122.newfar/lhsurf.mgh --isp $in/DMN/117122.newcentral/lhsurf.mgh --isp $in/DMN/117324.newfar/lhsurf.mgh --isp $in/DMN/117324.newcentral/lhsurf.mgh --isp $in/DMN/117930.newfar/lhsurf.mgh --isp $in/DMN/117930.newcentral/lhsurf.mgh --isp $in/DMN/118023.newfar/lhsurf.mgh --isp $in/DMN/118023.newcentral/lhsurf.mgh --isp $in/DMN/118124.newfar/lhsurf.mgh --isp $in/DMN/118124.newcentral/lhsurf.mgh --isp $in/DMN/118225.newfar/lhsurf.mgh --isp $in/DMN/118225.newcentral/lhsurf.mgh --isp $in/DMN/118528.newfar/lhsurf.mgh --isp $in/DMN/118528.newcentral/lhsurf.mgh --isp $in/DMN/118730.newfar/lhsurf.mgh --isp $in/DMN/118730.newcentral/lhsurf.mgh --isp $in/DMN/118932.newfar/lhsurf.mgh --isp $in/DMN/118932.newcentral/lhsurf.mgh --isp $in/DMN/119126.newfar/lhsurf.mgh --isp $in/DMN/119126.newcentral/lhsurf.mgh --isp $in/DMN/119732.newfar/lhsurf.mgh --isp $in/DMN/119732.newcentral/lhsurf.mgh --isp $in/DMN/119833.newfar/lhsurf.mgh --isp $in/DMN/119833.newcentral/lhsurf.mgh --isp $in/DMN/120111.newfar/lhsurf.mgh --isp $in/DMN/120111.newcentral/lhsurf.mgh --isp $in/DMN/120212.newfar/lhsurf.mgh --isp $in/DMN/120212.newcentral/lhsurf.mgh --isp $in/DMN/120515.newfar/lhsurf.mgh --isp $in/DMN/120515.newcentral/lhsurf.mgh --isp $in/DMN/120717.newfar/lhsurf.mgh --isp $in/DMN/120717.newcentral/lhsurf.mgh --isp $in/DMN/121416.newfar/lhsurf.mgh --isp $in/DMN/121416.newcentral/lhsurf.mgh --isp $in/DMN/121618.newfar/lhsurf.mgh --isp $in/DMN/121618.newcentral/lhsurf.mgh --isp $in/DMN/121921.newfar/lhsurf.mgh --isp $in/DMN/121921.newcentral/lhsurf.mgh --isp $in/DMN/122822.newfar/lhsurf.mgh --isp $in/DMN/122822.newcentral/lhsurf.mgh --isp $in/DMN/123117.newfar/lhsurf.mgh --isp $in/DMN/123117.newcentral/lhsurf.mgh --isp $in/DMN/123420.newfar/lhsurf.mgh --isp $in/DMN/123420.newcentral/lhsurf.mgh --isp $in/DMN/123521.newfar/lhsurf.mgh --isp $in/DMN/123521.newcentral/lhsurf.mgh --isp $in/DMN/123824.newfar/lhsurf.mgh --isp $in/DMN/123824.newcentral/lhsurf.mgh --isp $in/DMN/123925.newfar/lhsurf.mgh --isp $in/DMN/123925.newcentral/lhsurf.mgh --isp $in/DMN/124220.newfar/lhsurf.mgh --isp $in/DMN/124220.newcentral/lhsurf.mgh --isp $in/DMN/124624.newfar/lhsurf.mgh --isp $in/DMN/124624.newcentral/lhsurf.mgh --isp $in/DMN/124826.newfar/lhsurf.mgh --isp $in/DMN/124826.newcentral/lhsurf.mgh --isp $in/DMN/125525.newfar/lhsurf.mgh --isp $in/DMN/125525.newcentral/lhsurf.mgh --isp $in/DMN/126325.newfar/lhsurf.mgh --isp $in/DMN/126325.newcentral/lhsurf.mgh --isp $in/DMN/126628.newfar/lhsurf.mgh --isp $in/DMN/126628.newcentral/lhsurf.mgh --isp $in/DMN/127327.newfar/lhsurf.mgh --isp $in/DMN/127327.newcentral/lhsurf.mgh --isp $in/DMN/127630.newfar/lhsurf.mgh --isp $in/DMN/127630.newcentral/lhsurf.mgh --isp $in/DMN/127933.newfar/lhsurf.mgh --isp $in/DMN/127933.newcentral/lhsurf.mgh --isp $in/DMN/128026.newfar/lhsurf.mgh --isp $in/DMN/128026.newcentral/lhsurf.mgh --isp $in/DMN/128127.newfar/lhsurf.mgh --isp $in/DMN/128127.newcentral/lhsurf.mgh --isp $in/DMN/128632.newfar/lhsurf.mgh --isp $in/DMN/128632.newcentral/lhsurf.mgh --isp $in/DMN/128935.newfar/lhsurf.mgh --isp $in/DMN/128935.newcentral/lhsurf.mgh --isp $in/DMN/129028.newfar/lhsurf.mgh --isp $in/DMN/129028.newcentral/lhsurf.mgh --isp $in/DMN/129129.newfar/lhsurf.mgh --isp $in/DMN/129129.newcentral/lhsurf.mgh --isp $in/DMN/129331.newfar/lhsurf.mgh --isp $in/DMN/129331.newcentral/lhsurf.mgh --isp $in/DMN/129634.newfar/lhsurf.mgh --isp $in/DMN/129634.newcentral/lhsurf.mgh --isp $in/DMN/129937.newfar/lhsurf.mgh --isp $in/DMN/129937.newcentral/lhsurf.mgh --isp $in/DMN/130013.newfar/lhsurf.mgh --isp $in/DMN/130013.newcentral/lhsurf.mgh --isp $in/DMN/130316.newfar/lhsurf.mgh --isp $in/DMN/130316.newcentral/lhsurf.mgh --isp $in/DMN/130619.newfar/lhsurf.mgh --isp $in/DMN/130619.newcentral/lhsurf.mgh --isp $in/DMN/130821.newfar/lhsurf.mgh --isp $in/DMN/130821.newcentral/lhsurf.mgh --isp $in/DMN/130922.newfar/lhsurf.mgh --isp $in/DMN/130922.newcentral/lhsurf.mgh --isp $in/DMN/131217.newfar/lhsurf.mgh --isp $in/DMN/131217.newcentral/lhsurf.mgh --isp $in/DMN/131419.newfar/lhsurf.mgh --isp $in/DMN/131419.newcentral/lhsurf.mgh --isp $in/DMN/131722.newfar/lhsurf.mgh --isp $in/DMN/131722.newcentral/lhsurf.mgh --isp $in/DMN/131823.newfar/lhsurf.mgh --isp $in/DMN/131823.newcentral/lhsurf.mgh --isp $in/DMN/131924.newfar/lhsurf.mgh --isp $in/DMN/131924.newcentral/lhsurf.mgh --isp $in/DMN/132017.newfar/lhsurf.mgh --isp $in/DMN/132017.newcentral/lhsurf.mgh --isp $in/DMN/132118.newfar/lhsurf.mgh --isp $in/DMN/132118.newcentral/lhsurf.mgh --isp $in/DMN/133019.newfar/lhsurf.mgh --isp $in/DMN/133019.newcentral/lhsurf.mgh --isp $in/DMN/133625.newfar/lhsurf.mgh --isp $in/DMN/133625.newcentral/lhsurf.mgh --isp $in/DMN/133827.newfar/lhsurf.mgh --isp $in/DMN/133827.newcentral/lhsurf.mgh --isp $in/DMN/134021.newfar/lhsurf.mgh --isp $in/DMN/134021.newcentral/lhsurf.mgh --isp $in/DMN/134223.newfar/lhsurf.mgh --isp $in/DMN/134223.newcentral/lhsurf.mgh --isp $in/DMN/134324.newfar/lhsurf.mgh --isp $in/DMN/134324.newcentral/lhsurf.mgh --isp $in/DMN/134425.newfar/lhsurf.mgh --isp $in/DMN/134425.newcentral/lhsurf.mgh --isp $in/DMN/134728.newfar/lhsurf.mgh --isp $in/DMN/134728.newcentral/lhsurf.mgh --isp $in/DMN/135225.newfar/lhsurf.mgh --isp $in/DMN/135225.newcentral/lhsurf.mgh --isp $in/DMN/135528.newfar/lhsurf.mgh --isp $in/DMN/135528.newcentral/lhsurf.mgh --isp $in/DMN/135730.newfar/lhsurf.mgh --isp $in/DMN/135730.newcentral/lhsurf.mgh --isp $in/DMN/136227.newfar/lhsurf.mgh --isp $in/DMN/136227.newcentral/lhsurf.mgh --isp $in/DMN/136732.newfar/lhsurf.mgh --isp $in/DMN/136732.newcentral/lhsurf.mgh --isp $in/DMN/136833.newfar/lhsurf.mgh --isp $in/DMN/136833.newcentral/lhsurf.mgh --isp $in/DMN/137027.newfar/lhsurf.mgh --isp $in/DMN/137027.newcentral/lhsurf.mgh --isp $in/DMN/137128.newfar/lhsurf.mgh --isp $in/DMN/137128.newcentral/lhsurf.mgh --isp $in/DMN/137229.newfar/lhsurf.mgh --isp $in/DMN/137229.newcentral/lhsurf.mgh --isp $in/DMN/137633.newfar/lhsurf.mgh --isp $in/DMN/137633.newcentral/lhsurf.mgh --isp $in/DMN/138231.newfar/lhsurf.mgh --isp $in/DMN/138231.newcentral/lhsurf.mgh --isp $in/DMN/138534.newfar/lhsurf.mgh --isp $in/DMN/138534.newcentral/lhsurf.mgh --isp $in/DMN/138837.newfar/lhsurf.mgh --isp $in/DMN/138837.newcentral/lhsurf.mgh --isp $in/DMN/139233.newfar/lhsurf.mgh --isp $in/DMN/139233.newcentral/lhsurf.mgh --isp $in/DMN/139839.newfar/lhsurf.mgh --isp $in/DMN/139839.newcentral/lhsurf.mgh --isp $in/DMN/140319.newfar/lhsurf.mgh --isp $in/DMN/140319.newcentral/lhsurf.mgh --isp $in/DMN/140420.newfar/lhsurf.mgh --isp $in/DMN/140420.newcentral/lhsurf.mgh --isp $in/DMN/140824.newfar/lhsurf.mgh --isp $in/DMN/140824.newcentral/lhsurf.mgh --isp $in/DMN/140925.newfar/lhsurf.mgh --isp $in/DMN/140925.newcentral/lhsurf.mgh --isp $in/DMN/141119.newfar/lhsurf.mgh --isp $in/DMN/141119.newcentral/lhsurf.mgh --isp $in/DMN/141422.newfar/lhsurf.mgh --isp $in/DMN/141422.newcentral/lhsurf.mgh --isp $in/DMN/141826.newfar/lhsurf.mgh --isp $in/DMN/141826.newcentral/lhsurf.mgh --isp $in/DMN/142828.newfar/lhsurf.mgh --isp $in/DMN/142828.newcentral/lhsurf.mgh --isp $in/DMN/143325.newfar/lhsurf.mgh --isp $in/DMN/143325.newcentral/lhsurf.mgh --isp $in/DMN/143426.newfar/lhsurf.mgh --isp $in/DMN/143426.newcentral/lhsurf.mgh --isp $in/DMN/144125.newfar/lhsurf.mgh --isp $in/DMN/144125.newcentral/lhsurf.mgh --isp $in/DMN/144226.newfar/lhsurf.mgh --isp $in/DMN/144226.newcentral/lhsurf.mgh --isp $in/DMN/144428.newfar/lhsurf.mgh --isp $in/DMN/144428.newcentral/lhsurf.mgh --isp $in/DMN/144731.newfar/lhsurf.mgh --isp $in/DMN/144731.newcentral/lhsurf.mgh --isp $in/DMN/144832.newfar/lhsurf.mgh --isp $in/DMN/144832.newcentral/lhsurf.mgh --isp $in/DMN/145834.newfar/lhsurf.mgh --isp $in/DMN/145834.newcentral/lhsurf.mgh --isp $in/DMN/146129.newfar/lhsurf.mgh --isp $in/DMN/146129.newcentral/lhsurf.mgh --isp $in/DMN/146331.newfar/lhsurf.mgh --isp $in/DMN/146331.newcentral/lhsurf.mgh --isp $in/DMN/146432.newfar/lhsurf.mgh --isp $in/DMN/146432.newcentral/lhsurf.mgh --isp $in/DMN/146533.newfar/lhsurf.mgh --isp $in/DMN/146533.newcentral/lhsurf.mgh --isp $in/DMN/146634.newfar/lhsurf.mgh --isp $in/DMN/146634.newcentral/lhsurf.mgh --isp $in/DMN/146937.newfar/lhsurf.mgh --isp $in/DMN/146937.newcentral/lhsurf.mgh --isp $in/DMN/147030.newfar/lhsurf.mgh --isp $in/DMN/147030.newcentral/lhsurf.mgh --isp $in/DMN/148032.newfar/lhsurf.mgh --isp $in/DMN/148032.newcentral/lhsurf.mgh --isp $in/DMN/148133.newfar/lhsurf.mgh --isp $in/DMN/148133.newcentral/lhsurf.mgh --isp $in/DMN/148436.newfar/lhsurf.mgh --isp $in/DMN/148436.newcentral/lhsurf.mgh --isp $in/DMN/149337.newfar/lhsurf.mgh --isp $in/DMN/149337.newcentral/lhsurf.mgh --isp $in/DMN/149539.newfar/lhsurf.mgh --isp $in/DMN/149539.newcentral/lhsurf.mgh --isp $in/DMN/149741.newfar/lhsurf.mgh --isp $in/DMN/149741.newcentral/lhsurf.mgh --isp $in/DMN/149842.newfar/lhsurf.mgh --isp $in/DMN/149842.newcentral/lhsurf.mgh --isp $in/DMN/150423.newfar/lhsurf.mgh --isp $in/DMN/150423.newcentral/lhsurf.mgh --isp $in/DMN/150524.newfar/lhsurf.mgh --isp $in/DMN/150524.newcentral/lhsurf.mgh --isp $in/DMN/150625.newfar/lhsurf.mgh --isp $in/DMN/150625.newcentral/lhsurf.mgh --isp $in/DMN/150726.newfar/lhsurf.mgh --isp $in/DMN/150726.newcentral/lhsurf.mgh --isp $in/DMN/150928.newfar/lhsurf.mgh --isp $in/DMN/150928.newcentral/lhsurf.mgh --isp $in/DMN/151223.newfar/lhsurf.mgh --isp $in/DMN/151223.newcentral/lhsurf.mgh --isp $in/DMN/151425.newfar/lhsurf.mgh --isp $in/DMN/151425.newcentral/lhsurf.mgh --isp $in/DMN/151526.newfar/lhsurf.mgh --isp $in/DMN/151526.newcentral/lhsurf.mgh --isp $in/DMN/151627.newfar/lhsurf.mgh --isp $in/DMN/151627.newcentral/lhsurf.mgh --isp $in/DMN/151728.newfar/lhsurf.mgh --isp $in/DMN/151728.newcentral/lhsurf.mgh --isp $in/DMN/151829.newfar/lhsurf.mgh --isp $in/DMN/151829.newcentral/lhsurf.mgh --isp $in/DMN/152831.newfar/lhsurf.mgh --isp $in/DMN/152831.newcentral/lhsurf.mgh --isp $in/DMN/153025.newfar/lhsurf.mgh --isp $in/DMN/153025.newcentral/lhsurf.mgh --isp $in/DMN/153227.newfar/lhsurf.mgh --isp $in/DMN/153227.newcentral/lhsurf.mgh --isp $in/DMN/153732.newfar/lhsurf.mgh --isp $in/DMN/153732.newcentral/lhsurf.mgh --isp $in/DMN/153833.newfar/lhsurf.mgh --isp $in/DMN/153833.newcentral/lhsurf.mgh --isp $in/DMN/154229.newfar/lhsurf.mgh --isp $in/DMN/154229.newcentral/lhsurf.mgh --isp $in/DMN/154431.newfar/lhsurf.mgh --isp $in/DMN/154431.newcentral/lhsurf.mgh --isp $in/DMN/154532.newfar/lhsurf.mgh --isp $in/DMN/154532.newcentral/lhsurf.mgh --isp $in/DMN/154734.newfar/lhsurf.mgh --isp $in/DMN/154734.newcentral/lhsurf.mgh --isp $in/DMN/154835.newfar/lhsurf.mgh --isp $in/DMN/154835.newcentral/lhsurf.mgh --isp $in/DMN/154936.newfar/lhsurf.mgh --isp $in/DMN/154936.newcentral/lhsurf.mgh --isp $in/DMN/155231.newfar/lhsurf.mgh --isp $in/DMN/155231.newcentral/lhsurf.mgh --isp $in/DMN/155635.newfar/lhsurf.mgh --isp $in/DMN/155635.newcentral/lhsurf.mgh --isp $in/DMN/155938.newfar/lhsurf.mgh --isp $in/DMN/155938.newcentral/lhsurf.mgh --isp $in/DMN/156031.newfar/lhsurf.mgh --isp $in/DMN/156031.newcentral/lhsurf.mgh --isp $in/DMN/156233.newfar/lhsurf.mgh --isp $in/DMN/156233.newcentral/lhsurf.mgh --isp $in/DMN/156334.newfar/lhsurf.mgh --isp $in/DMN/156334.newcentral/lhsurf.mgh --isp $in/DMN/156536.newfar/lhsurf.mgh --isp $in/DMN/156536.newcentral/lhsurf.mgh --isp $in/DMN/157336.newfar/lhsurf.mgh --isp $in/DMN/157336.newcentral/lhsurf.mgh --isp $in/DMN/157437.newfar/lhsurf.mgh --isp $in/DMN/157437.newcentral/lhsurf.mgh --isp $in/DMN/157942.newfar/lhsurf.mgh --isp $in/DMN/157942.newcentral/lhsurf.mgh --isp $in/DMN/158035.newfar/lhsurf.mgh --isp $in/DMN/158035.newcentral/lhsurf.mgh --isp $in/DMN/158136.newfar/lhsurf.mgh --isp $in/DMN/158136.newcentral/lhsurf.mgh --isp $in/DMN/158338.newfar/lhsurf.mgh --isp $in/DMN/158338.newcentral/lhsurf.mgh --isp $in/DMN/158540.newfar/lhsurf.mgh --isp $in/DMN/158540.newcentral/lhsurf.mgh --isp $in/DMN/158843.newfar/lhsurf.mgh --isp $in/DMN/158843.newcentral/lhsurf.mgh --isp $in/DMN/159138.newfar/lhsurf.mgh --isp $in/DMN/159138.newcentral/lhsurf.mgh --isp $in/DMN/159239.newfar/lhsurf.mgh --isp $in/DMN/159239.newcentral/lhsurf.mgh --isp $in/DMN/159340.newfar/lhsurf.mgh --isp $in/DMN/159340.newcentral/lhsurf.mgh --isp $in/DMN/159441.newfar/lhsurf.mgh --isp $in/DMN/159441.newcentral/lhsurf.mgh --isp $in/DMN/159744.newfar/lhsurf.mgh --isp $in/DMN/159744.newcentral/lhsurf.mgh --isp $in/DMN/159946.newfar/lhsurf.mgh --isp $in/DMN/159946.newcentral/lhsurf.mgh --isp $in/DMN/160123.newfar/lhsurf.mgh --isp $in/DMN/160123.newcentral/lhsurf.mgh --isp $in/DMN/160729.newfar/lhsurf.mgh --isp $in/DMN/160729.newcentral/lhsurf.mgh --isp $in/DMN/160830.newfar/lhsurf.mgh --isp $in/DMN/160830.newcentral/lhsurf.mgh --isp $in/DMN/160931.newfar/lhsurf.mgh --isp $in/DMN/160931.newcentral/lhsurf.mgh --isp $in/DMN/161327.newfar/lhsurf.mgh --isp $in/DMN/161327.newcentral/lhsurf.mgh --isp $in/DMN/161630.newfar/lhsurf.mgh --isp $in/DMN/161630.newcentral/lhsurf.mgh --isp $in/DMN/161731.newfar/lhsurf.mgh --isp $in/DMN/161731.newcentral/lhsurf.mgh --isp $in/DMN/162026.newfar/lhsurf.mgh --isp $in/DMN/162026.newcentral/lhsurf.mgh --isp $in/DMN/162228.newfar/lhsurf.mgh --isp $in/DMN/162228.newcentral/lhsurf.mgh --isp $in/DMN/162329.newfar/lhsurf.mgh --isp $in/DMN/162329.newcentral/lhsurf.mgh --isp $in/DMN/162733.newfar/lhsurf.mgh --isp $in/DMN/162733.newcentral/lhsurf.mgh --isp $in/DMN/162935.newfar/lhsurf.mgh --isp $in/DMN/162935.newcentral/lhsurf.mgh --isp $in/DMN/163129.newfar/lhsurf.mgh --isp $in/DMN/163129.newcentral/lhsurf.mgh --isp $in/DMN/163331.newfar/lhsurf.mgh --isp $in/DMN/163331.newcentral/lhsurf.mgh --isp $in/DMN/164030.newfar/lhsurf.mgh --isp $in/DMN/164030.newcentral/lhsurf.mgh --isp $in/DMN/164131.newfar/lhsurf.mgh --isp $in/DMN/164131.newcentral/lhsurf.mgh --isp $in/DMN/164636.newfar/lhsurf.mgh --isp $in/DMN/164636.newcentral/lhsurf.mgh --isp $in/DMN/164939.newfar/lhsurf.mgh --isp $in/DMN/164939.newcentral/lhsurf.mgh --isp $in/DMN/165032.newfar/lhsurf.mgh --isp $in/DMN/165032.newcentral/lhsurf.mgh --isp $in/DMN/165638.newfar/lhsurf.mgh --isp $in/DMN/165638.newcentral/lhsurf.mgh --isp $in/DMN/165840.newfar/lhsurf.mgh --isp $in/DMN/165840.newcentral/lhsurf.mgh --isp $in/DMN/166640.newfar/lhsurf.mgh --isp $in/DMN/166640.newcentral/lhsurf.mgh --isp $in/DMN/167238.newfar/lhsurf.mgh --isp $in/DMN/167238.newcentral/lhsurf.mgh --isp $in/DMN/167743.newfar/lhsurf.mgh --isp $in/DMN/167743.newcentral/lhsurf.mgh --isp $in/DMN/168240.newfar/lhsurf.mgh --isp $in/DMN/168240.newcentral/lhsurf.mgh --isp $in/DMN/168341.newfar/lhsurf.mgh --isp $in/DMN/168341.newcentral/lhsurf.mgh --isp $in/DMN/168745.newfar/lhsurf.mgh --isp $in/DMN/168745.newcentral/lhsurf.mgh --isp $in/DMN/169343.newfar/lhsurf.mgh --isp $in/DMN/169343.newcentral/lhsurf.mgh --isp $in/DMN/169444.newfar/lhsurf.mgh --isp $in/DMN/169444.newcentral/lhsurf.mgh --isp $in/DMN/169747.newfar/lhsurf.mgh --isp $in/DMN/169747.newcentral/lhsurf.mgh --isp $in/DMN/169949.newfar/lhsurf.mgh --isp $in/DMN/169949.newcentral/lhsurf.mgh --isp $in/DMN/170631.newfar/lhsurf.mgh --isp $in/DMN/170631.newcentral/lhsurf.mgh --isp $in/DMN/170934.newfar/lhsurf.mgh --isp $in/DMN/170934.newcentral/lhsurf.mgh --isp $in/DMN/171330.newfar/lhsurf.mgh --isp $in/DMN/171330.newcentral/lhsurf.mgh --isp $in/DMN/171431.newfar/lhsurf.mgh --isp $in/DMN/171431.newcentral/lhsurf.mgh --isp $in/DMN/171532.newfar/lhsurf.mgh --isp $in/DMN/171532.newcentral/lhsurf.mgh --isp $in/DMN/171633.newfar/lhsurf.mgh --isp $in/DMN/171633.newcentral/lhsurf.mgh --isp $in/DMN/172130.newfar/lhsurf.mgh --isp $in/DMN/172130.newcentral/lhsurf.mgh --isp $in/DMN/172332.newfar/lhsurf.mgh --isp $in/DMN/172332.newcentral/lhsurf.mgh --isp $in/DMN/172433.newfar/lhsurf.mgh --isp $in/DMN/172433.newcentral/lhsurf.mgh --isp $in/DMN/172534.newfar/lhsurf.mgh --isp $in/DMN/172534.newcentral/lhsurf.mgh --isp $in/DMN/172938.newfar/lhsurf.mgh --isp $in/DMN/172938.newcentral/lhsurf.mgh --isp $in/DMN/173132.newfar/lhsurf.mgh --isp $in/DMN/173132.newcentral/lhsurf.mgh --isp $in/DMN/173233.newfar/lhsurf.mgh --isp $in/DMN/173233.newcentral/lhsurf.mgh --isp $in/DMN/173334.newfar/lhsurf.mgh --isp $in/DMN/173334.newcentral/lhsurf.mgh --isp $in/DMN/173435.newfar/lhsurf.mgh --isp $in/DMN/173435.newcentral/lhsurf.mgh --isp $in/DMN/173536.newfar/lhsurf.mgh --isp $in/DMN/173536.newcentral/lhsurf.mgh --isp $in/DMN/173637.newfar/lhsurf.mgh --isp $in/DMN/173637.newcentral/lhsurf.mgh --isp $in/DMN/173738.newfar/lhsurf.mgh --isp $in/DMN/173738.newcentral/lhsurf.mgh --isp $in/DMN/173839.newfar/lhsurf.mgh --isp $in/DMN/173839.newcentral/lhsurf.mgh --isp $in/DMN/173940.newfar/lhsurf.mgh --isp $in/DMN/173940.newcentral/lhsurf.mgh --isp $in/DMN/174437.newfar/lhsurf.mgh --isp $in/DMN/174437.newcentral/lhsurf.mgh --isp $in/DMN/174841.newfar/lhsurf.mgh --isp $in/DMN/174841.newcentral/lhsurf.mgh --isp $in/DMN/175035.newfar/lhsurf.mgh --isp $in/DMN/175035.newcentral/lhsurf.mgh --isp $in/DMN/175237.newfar/lhsurf.mgh --isp $in/DMN/175237.newcentral/lhsurf.mgh --isp $in/DMN/175338.newfar/lhsurf.mgh --isp $in/DMN/175338.newcentral/lhsurf.mgh --isp $in/DMN/175439.newfar/lhsurf.mgh --isp $in/DMN/175439.newcentral/lhsurf.mgh --isp $in/DMN/175540.newfar/lhsurf.mgh --isp $in/DMN/175540.newcentral/lhsurf.mgh --isp $in/DMN/175742.newfar/lhsurf.mgh --isp $in/DMN/175742.newcentral/lhsurf.mgh --isp $in/DMN/176037.newfar/lhsurf.mgh --isp $in/DMN/176037.newcentral/lhsurf.mgh --isp $in/DMN/176239.newfar/lhsurf.mgh --isp $in/DMN/176239.newcentral/lhsurf.mgh --isp $in/DMN/176441.newfar/lhsurf.mgh --isp $in/DMN/176441.newcentral/lhsurf.mgh --isp $in/DMN/176542.newfar/lhsurf.mgh --isp $in/DMN/176542.newcentral/lhsurf.mgh --isp $in/DMN/176744.newfar/lhsurf.mgh --isp $in/DMN/176744.newcentral/lhsurf.mgh --isp $in/DMN/177241.newfar/lhsurf.mgh --isp $in/DMN/177241.newcentral/lhsurf.mgh --isp $in/DMN/177342.newfar/lhsurf.mgh --isp $in/DMN/177342.newcentral/lhsurf.mgh --isp $in/DMN/177645.newfar/lhsurf.mgh --isp $in/DMN/177645.newcentral/lhsurf.mgh --isp $in/DMN/177746.newfar/lhsurf.mgh --isp $in/DMN/177746.newcentral/lhsurf.mgh --isp $in/DMN/178142.newfar/lhsurf.mgh --isp $in/DMN/178142.newcentral/lhsurf.mgh --isp $in/DMN/178243.newfar/lhsurf.mgh --isp $in/DMN/178243.newcentral/lhsurf.mgh --isp $in/DMN/178647.newfar/lhsurf.mgh --isp $in/DMN/178647.newcentral/lhsurf.mgh --isp $in/DMN/178748.newfar/lhsurf.mgh --isp $in/DMN/178748.newcentral/lhsurf.mgh --isp $in/DMN/178950.newfar/lhsurf.mgh --isp $in/DMN/178950.newcentral/lhsurf.mgh --isp $in/DMN/179245.newfar/lhsurf.mgh --isp $in/DMN/179245.newcentral/lhsurf.mgh --isp $in/DMN/179346.newfar/lhsurf.mgh --isp $in/DMN/179346.newcentral/lhsurf.mgh --isp $in/DMN/179548.newfar/lhsurf.mgh --isp $in/DMN/179548.newcentral/lhsurf.mgh --isp $in/DMN/179952.newfar/lhsurf.mgh --isp $in/DMN/179952.newcentral/lhsurf.mgh --isp $in/DMN/180129.newfar/lhsurf.mgh --isp $in/DMN/180129.newcentral/lhsurf.mgh --isp $in/DMN/180432.newfar/lhsurf.mgh --isp $in/DMN/180432.newcentral/lhsurf.mgh --isp $in/DMN/180937.newfar/lhsurf.mgh --isp $in/DMN/180937.newcentral/lhsurf.mgh --isp $in/DMN/181232.newfar/lhsurf.mgh --isp $in/DMN/181232.newcentral/lhsurf.mgh --isp $in/DMN/181636.newfar/lhsurf.mgh --isp $in/DMN/181636.newcentral/lhsurf.mgh --isp $in/DMN/182032.newfar/lhsurf.mgh --isp $in/DMN/182032.newcentral/lhsurf.mgh --isp $in/DMN/182436.newfar/lhsurf.mgh --isp $in/DMN/182436.newcentral/lhsurf.mgh --isp $in/DMN/182739.newfar/lhsurf.mgh --isp $in/DMN/182739.newcentral/lhsurf.mgh --isp $in/DMN/183034.newfar/lhsurf.mgh --isp $in/DMN/183034.newcentral/lhsurf.mgh --isp $in/DMN/183337.newfar/lhsurf.mgh --isp $in/DMN/183337.newcentral/lhsurf.mgh --isp $in/DMN/185139.newfar/lhsurf.mgh --isp $in/DMN/185139.newcentral/lhsurf.mgh --isp $in/DMN/185341.newfar/lhsurf.mgh --isp $in/DMN/185341.newcentral/lhsurf.mgh --isp $in/DMN/185442.newfar/lhsurf.mgh --isp $in/DMN/185442.newcentral/lhsurf.mgh --isp $in/DMN/185846.newfar/lhsurf.mgh --isp $in/DMN/185846.newcentral/lhsurf.mgh --isp $in/DMN/185947.newfar/lhsurf.mgh --isp $in/DMN/185947.newcentral/lhsurf.mgh --isp $in/DMN/186141.newfar/lhsurf.mgh --isp $in/DMN/186141.newcentral/lhsurf.mgh --isp $in/DMN/186444.newfar/lhsurf.mgh --isp $in/DMN/186444.newcentral/lhsurf.mgh --isp $in/DMN/187143.newfar/lhsurf.mgh --isp $in/DMN/187143.newcentral/lhsurf.mgh --isp $in/DMN/187345.newfar/lhsurf.mgh --isp $in/DMN/187345.newcentral/lhsurf.mgh --isp $in/DMN/187547.newfar/lhsurf.mgh --isp $in/DMN/187547.newcentral/lhsurf.mgh --isp $in/DMN/187850.newfar/lhsurf.mgh --isp $in/DMN/187850.newcentral/lhsurf.mgh --isp $in/DMN/188347.newfar/lhsurf.mgh --isp $in/DMN/188347.newcentral/lhsurf.mgh --isp $in/DMN/188448.newfar/lhsurf.mgh --isp $in/DMN/188448.newcentral/lhsurf.mgh --isp $in/DMN/188751.newfar/lhsurf.mgh --isp $in/DMN/188751.newcentral/lhsurf.mgh --isp $in/DMN/189349.newfar/lhsurf.mgh --isp $in/DMN/189349.newcentral/lhsurf.mgh --isp $in/DMN/190031.newfar/lhsurf.mgh --isp $in/DMN/190031.newcentral/lhsurf.mgh --isp $in/DMN/191033.newfar/lhsurf.mgh --isp $in/DMN/191033.newcentral/lhsurf.mgh --isp $in/DMN/191336.newfar/lhsurf.mgh --isp $in/DMN/191336.newcentral/lhsurf.mgh --isp $in/DMN/191437.newfar/lhsurf.mgh --isp $in/DMN/191437.newcentral/lhsurf.mgh --isp $in/DMN/191841.newfar/lhsurf.mgh --isp $in/DMN/191841.newcentral/lhsurf.mgh --isp $in/DMN/191942.newfar/lhsurf.mgh --isp $in/DMN/191942.newcentral/lhsurf.mgh --isp $in/DMN/192035.newfar/lhsurf.mgh --isp $in/DMN/192035.newcentral/lhsurf.mgh --isp $in/DMN/192136.newfar/lhsurf.mgh --isp $in/DMN/192136.newcentral/lhsurf.mgh --isp $in/DMN/192439.newfar/lhsurf.mgh --isp $in/DMN/192439.newcentral/lhsurf.mgh --isp $in/DMN/192540.newfar/lhsurf.mgh --isp $in/DMN/192540.newcentral/lhsurf.mgh --isp $in/DMN/192641.newfar/lhsurf.mgh --isp $in/DMN/192641.newcentral/lhsurf.mgh --isp $in/DMN/192843.newfar/lhsurf.mgh --isp $in/DMN/192843.newcentral/lhsurf.mgh --isp $in/DMN/193239.newfar/lhsurf.mgh --isp $in/DMN/193239.newcentral/lhsurf.mgh --isp $in/DMN/193441.newfar/lhsurf.mgh --isp $in/DMN/193441.newcentral/lhsurf.mgh --isp $in/DMN/194140.newfar/lhsurf.mgh --isp $in/DMN/194140.newcentral/lhsurf.mgh --isp $in/DMN/194645.newfar/lhsurf.mgh --isp $in/DMN/194645.newcentral/lhsurf.mgh --isp $in/DMN/194746.newfar/lhsurf.mgh --isp $in/DMN/194746.newcentral/lhsurf.mgh --isp $in/DMN/194847.newfar/lhsurf.mgh --isp $in/DMN/194847.newcentral/lhsurf.mgh --isp $in/DMN/195041.newfar/lhsurf.mgh --isp $in/DMN/195041.newcentral/lhsurf.mgh --isp $in/DMN/195445.newfar/lhsurf.mgh --isp $in/DMN/195445.newcentral/lhsurf.mgh --isp $in/DMN/195647.newfar/lhsurf.mgh --isp $in/DMN/195647.newcentral/lhsurf.mgh --isp $in/DMN/195950.newfar/lhsurf.mgh --isp $in/DMN/195950.newcentral/lhsurf.mgh --isp $in/DMN/196144.newfar/lhsurf.mgh --isp $in/DMN/196144.newcentral/lhsurf.mgh --isp $in/DMN/196346.newfar/lhsurf.mgh --isp $in/DMN/196346.newcentral/lhsurf.mgh --isp $in/DMN/196750.newfar/lhsurf.mgh --isp $in/DMN/196750.newcentral/lhsurf.mgh --isp $in/DMN/197348.newfar/lhsurf.mgh --isp $in/DMN/197348.newcentral/lhsurf.mgh --isp $in/DMN/197550.newfar/lhsurf.mgh --isp $in/DMN/197550.newcentral/lhsurf.mgh --isp $in/DMN/197651.newfar/lhsurf.mgh --isp $in/DMN/197651.newcentral/lhsurf.mgh --isp $in/DMN/198249.newfar/lhsurf.mgh --isp $in/DMN/198249.newcentral/lhsurf.mgh --isp $in/DMN/198350.newfar/lhsurf.mgh --isp $in/DMN/198350.newcentral/lhsurf.mgh --isp $in/DMN/198451.newfar/lhsurf.mgh --isp $in/DMN/198451.newcentral/lhsurf.mgh --isp $in/DMN/198653.newfar/lhsurf.mgh --isp $in/DMN/198653.newcentral/lhsurf.mgh --isp $in/DMN/198855.newfar/lhsurf.mgh --isp $in/DMN/198855.newcentral/lhsurf.mgh --isp $in/DMN/199150.newfar/lhsurf.mgh --isp $in/DMN/199150.newcentral/lhsurf.mgh --isp $in/DMN/199251.newfar/lhsurf.mgh --isp $in/DMN/199251.newcentral/lhsurf.mgh --isp $in/DMN/199453.newfar/lhsurf.mgh --isp $in/DMN/199453.newcentral/lhsurf.mgh --isp $in/DMN/199958.newfar/lhsurf.mgh --isp $in/DMN/199958.newcentral/lhsurf.mgh --isp $in/DMN/200008.newfar/lhsurf.mgh --isp $in/DMN/200008.newcentral/lhsurf.mgh --isp $in/DMN/200109.newfar/lhsurf.mgh --isp $in/DMN/200109.newcentral/lhsurf.mgh --isp $in/DMN/200311.newfar/lhsurf.mgh --isp $in/DMN/200311.newcentral/lhsurf.mgh --isp $in/DMN/200917.newfar/lhsurf.mgh --isp $in/DMN/200917.newcentral/lhsurf.mgh --isp $in/DMN/201111.newfar/lhsurf.mgh --isp $in/DMN/201111.newcentral/lhsurf.mgh --isp $in/DMN/201414.newfar/lhsurf.mgh --isp $in/DMN/201414.newcentral/lhsurf.mgh --isp $in/DMN/201818.newfar/lhsurf.mgh --isp $in/DMN/201818.newcentral/lhsurf.mgh --isp $in/DMN/202113.newfar/lhsurf.mgh --isp $in/DMN/202113.newcentral/lhsurf.mgh --isp $in/DMN/202719.newfar/lhsurf.mgh --isp $in/DMN/202719.newcentral/lhsurf.mgh --isp $in/DMN/203418.newfar/lhsurf.mgh --isp $in/DMN/203418.newcentral/lhsurf.mgh --isp $in/DMN/203923.newfar/lhsurf.mgh --isp $in/DMN/203923.newcentral/lhsurf.mgh --isp $in/DMN/204016.newfar/lhsurf.mgh --isp $in/DMN/204016.newcentral/lhsurf.mgh --isp $in/DMN/204319.newfar/lhsurf.mgh --isp $in/DMN/204319.newcentral/lhsurf.mgh --isp $in/DMN/204420.newfar/lhsurf.mgh --isp $in/DMN/204420.newcentral/lhsurf.mgh --isp $in/DMN/204521.newfar/lhsurf.mgh --isp $in/DMN/204521.newcentral/lhsurf.mgh --isp $in/DMN/204622.newfar/lhsurf.mgh --isp $in/DMN/204622.newcentral/lhsurf.mgh --isp $in/DMN/205119.newfar/lhsurf.mgh --isp $in/DMN/205119.newcentral/lhsurf.mgh --isp $in/DMN/205725.newfar/lhsurf.mgh --isp $in/DMN/205725.newcentral/lhsurf.mgh --isp $in/DMN/205826.newfar/lhsurf.mgh --isp $in/DMN/205826.newcentral/lhsurf.mgh --isp $in/DMN/206222.newfar/lhsurf.mgh --isp $in/DMN/206222.newcentral/lhsurf.mgh --isp $in/DMN/207123.newfar/lhsurf.mgh --isp $in/DMN/207123.newcentral/lhsurf.mgh --isp $in/DMN/207426.newfar/lhsurf.mgh --isp $in/DMN/207426.newcentral/lhsurf.mgh --isp $in/DMN/208024.newfar/lhsurf.mgh --isp $in/DMN/208024.newcentral/lhsurf.mgh --isp $in/DMN/208125.newfar/lhsurf.mgh --isp $in/DMN/208125.newcentral/lhsurf.mgh --isp $in/DMN/208226.newfar/lhsurf.mgh --isp $in/DMN/208226.newcentral/lhsurf.mgh --isp $in/DMN/208327.newfar/lhsurf.mgh --isp $in/DMN/208327.newcentral/lhsurf.mgh --isp $in/DMN/208428.newfar/lhsurf.mgh --isp $in/DMN/208428.newcentral/lhsurf.mgh --isp $in/DMN/209127.newfar/lhsurf.mgh --isp $in/DMN/209127.newcentral/lhsurf.mgh --isp $in/DMN/209228.newfar/lhsurf.mgh --isp $in/DMN/209228.newcentral/lhsurf.mgh --isp $in/DMN/209329.newfar/lhsurf.mgh --isp $in/DMN/209329.newcentral/lhsurf.mgh --isp $in/DMN/209834.newfar/lhsurf.mgh --isp $in/DMN/209834.newcentral/lhsurf.mgh --isp $in/DMN/209935.newfar/lhsurf.mgh --isp $in/DMN/209935.newcentral/lhsurf.mgh --isp $in/DMN/210011.newfar/lhsurf.mgh --isp $in/DMN/210011.newcentral/lhsurf.mgh --isp $in/DMN/210415.newfar/lhsurf.mgh --isp $in/DMN/210415.newcentral/lhsurf.mgh --isp $in/DMN/210617.newfar/lhsurf.mgh --isp $in/DMN/210617.newcentral/lhsurf.mgh --isp $in/DMN/211114.newfar/lhsurf.mgh --isp $in/DMN/211114.newcentral/lhsurf.mgh --isp $in/DMN/211215.newfar/lhsurf.mgh --isp $in/DMN/211215.newcentral/lhsurf.mgh --isp $in/DMN/211316.newfar/lhsurf.mgh --isp $in/DMN/211316.newcentral/lhsurf.mgh --isp $in/DMN/211417.newfar/lhsurf.mgh --isp $in/DMN/211417.newcentral/lhsurf.mgh --isp $in/DMN/211720.newfar/lhsurf.mgh --isp $in/DMN/211720.newcentral/lhsurf.mgh --isp $in/DMN/211922.newfar/lhsurf.mgh --isp $in/DMN/211922.newcentral/lhsurf.mgh --isp $in/DMN/212015.newfar/lhsurf.mgh --isp $in/DMN/212015.newcentral/lhsurf.mgh --isp $in/DMN/212116.newfar/lhsurf.mgh --isp $in/DMN/212116.newcentral/lhsurf.mgh --isp $in/DMN/212217.newfar/lhsurf.mgh --isp $in/DMN/212217.newcentral/lhsurf.mgh --isp $in/DMN/212318.newfar/lhsurf.mgh --isp $in/DMN/212318.newcentral/lhsurf.mgh --isp $in/DMN/212419.newfar/lhsurf.mgh --isp $in/DMN/212419.newcentral/lhsurf.mgh --isp $in/DMN/212823.newfar/lhsurf.mgh --isp $in/DMN/212823.newcentral/lhsurf.mgh --isp $in/DMN/213421.newfar/lhsurf.mgh --isp $in/DMN/213421.newcentral/lhsurf.mgh --isp $in/DMN/214019.newfar/lhsurf.mgh --isp $in/DMN/214019.newcentral/lhsurf.mgh --isp $in/DMN/214221.newfar/lhsurf.mgh --isp $in/DMN/214221.newcentral/lhsurf.mgh --isp $in/DMN/214423.newfar/lhsurf.mgh --isp $in/DMN/214423.newcentral/lhsurf.mgh --isp $in/DMN/214524.newfar/lhsurf.mgh --isp $in/DMN/214524.newcentral/lhsurf.mgh --isp $in/DMN/214625.newfar/lhsurf.mgh --isp $in/DMN/214625.newcentral/lhsurf.mgh --isp $in/DMN/214726.newfar/lhsurf.mgh --isp $in/DMN/214726.newcentral/lhsurf.mgh --isp $in/DMN/217126.newfar/lhsurf.mgh --isp $in/DMN/217126.newcentral/lhsurf.mgh --isp $in/DMN/217429.newfar/lhsurf.mgh --isp $in/DMN/217429.newcentral/lhsurf.mgh --isp $in/DMN/220721.newfar/lhsurf.mgh --isp $in/DMN/220721.newcentral/lhsurf.mgh --isp $in/DMN/221319.newfar/lhsurf.mgh --isp $in/DMN/221319.newcentral/lhsurf.mgh --isp $in/DMN/223929.newfar/lhsurf.mgh --isp $in/DMN/223929.newcentral/lhsurf.mgh --isp $in/DMN/227432.newfar/lhsurf.mgh --isp $in/DMN/227432.newcentral/lhsurf.mgh --isp $in/DMN/228434.newfar/lhsurf.mgh --isp $in/DMN/228434.newcentral/lhsurf.mgh --isp $in/DMN/231928.newfar/lhsurf.mgh --isp $in/DMN/231928.newcentral/lhsurf.mgh --isp $in/DMN/233326.newfar/lhsurf.mgh --isp $in/DMN/233326.newcentral/lhsurf.mgh --isp $in/DMN/236130.newfar/lhsurf.mgh --isp $in/DMN/236130.newcentral/lhsurf.mgh --isp $in/DMN/237334.newfar/lhsurf.mgh --isp $in/DMN/237334.newcentral/lhsurf.mgh --isp $in/DMN/239944.newfar/lhsurf.mgh --isp $in/DMN/239944.newcentral/lhsurf.mgh --isp $in/DMN/245333.newfar/lhsurf.mgh --isp $in/DMN/245333.newcentral/lhsurf.mgh --isp $in/DMN/246133.newfar/lhsurf.mgh --isp $in/DMN/246133.newcentral/lhsurf.mgh --isp $in/DMN/249947.newfar/lhsurf.mgh --isp $in/DMN/249947.newcentral/lhsurf.mgh --isp $in/DMN/250427.newfar/lhsurf.mgh --isp $in/DMN/250427.newcentral/lhsurf.mgh --isp $in/DMN/250932.newfar/lhsurf.mgh --isp $in/DMN/250932.newcentral/lhsurf.mgh --isp $in/DMN/255639.newfar/lhsurf.mgh --isp $in/DMN/255639.newcentral/lhsurf.mgh --isp $in/DMN/256540.newfar/lhsurf.mgh --isp $in/DMN/256540.newcentral/lhsurf.mgh --isp $in/DMN/257542.newfar/lhsurf.mgh --isp $in/DMN/257542.newcentral/lhsurf.mgh --isp $in/DMN/257845.newfar/lhsurf.mgh --isp $in/DMN/257845.newcentral/lhsurf.mgh --isp $in/DMN/263436.newfar/lhsurf.mgh --isp $in/DMN/263436.newcentral/lhsurf.mgh --isp $in/DMN/268749.newfar/lhsurf.mgh --isp $in/DMN/268749.newcentral/lhsurf.mgh --isp $in/DMN/268850.newfar/lhsurf.mgh --isp $in/DMN/268850.newcentral/lhsurf.mgh --isp $in/DMN/275645.newfar/lhsurf.mgh --isp $in/DMN/275645.newcentral/lhsurf.mgh --isp $in/DMN/280739.newfar/lhsurf.mgh --isp $in/DMN/280739.newcentral/lhsurf.mgh --isp $in/DMN/280941.newfar/lhsurf.mgh --isp $in/DMN/280941.newcentral/lhsurf.mgh --isp $in/DMN/283543.newfar/lhsurf.mgh --isp $in/DMN/283543.newcentral/lhsurf.mgh --isp $in/DMN/284646.newfar/lhsurf.mgh --isp $in/DMN/284646.newcentral/lhsurf.mgh --isp $in/DMN/285345.newfar/lhsurf.mgh --isp $in/DMN/285345.newcentral/lhsurf.mgh --isp $in/DMN/285446.newfar/lhsurf.mgh --isp $in/DMN/285446.newcentral/lhsurf.mgh --isp $in/DMN/287248.newfar/lhsurf.mgh --isp $in/DMN/287248.newcentral/lhsurf.mgh --isp $in/DMN/289555.newfar/lhsurf.mgh --isp $in/DMN/289555.newcentral/lhsurf.mgh --isp $in/DMN/293748.newfar/lhsurf.mgh --isp $in/DMN/293748.newcentral/lhsurf.mgh --isp $in/DMN/295146.newfar/lhsurf.mgh --isp $in/DMN/295146.newcentral/lhsurf.mgh --isp $in/DMN/297655.newfar/lhsurf.mgh --isp $in/DMN/297655.newcentral/lhsurf.mgh --isp $in/DMN/298051.newfar/lhsurf.mgh --isp $in/DMN/298051.newcentral/lhsurf.mgh --isp $in/DMN/298455.newfar/lhsurf.mgh --isp $in/DMN/298455.newcentral/lhsurf.mgh --isp $in/DMN/299154.newfar/lhsurf.mgh --isp $in/DMN/299154.newcentral/lhsurf.mgh --isp $in/DMN/300618.newfar/lhsurf.mgh --isp $in/DMN/300618.newcentral/lhsurf.mgh --isp $in/DMN/303119.newfar/lhsurf.mgh --isp $in/DMN/303119.newcentral/lhsurf.mgh --isp $in/DMN/303624.newfar/lhsurf.mgh --isp $in/DMN/303624.newcentral/lhsurf.mgh --isp $in/DMN/304020.newfar/lhsurf.mgh --isp $in/DMN/304020.newcentral/lhsurf.mgh --isp $in/DMN/304727.newfar/lhsurf.mgh --isp $in/DMN/304727.newcentral/lhsurf.mgh --isp $in/DMN/305830.newfar/lhsurf.mgh --isp $in/DMN/305830.newcentral/lhsurf.mgh --isp $in/DMN/307127.newfar/lhsurf.mgh --isp $in/DMN/307127.newcentral/lhsurf.mgh --isp $in/DMN/308129.newfar/lhsurf.mgh --isp $in/DMN/308129.newcentral/lhsurf.mgh --isp $in/DMN/308331.newfar/lhsurf.mgh --isp $in/DMN/308331.newcentral/lhsurf.mgh --isp $in/DMN/309636.newfar/lhsurf.mgh --isp $in/DMN/309636.newcentral/lhsurf.mgh --isp $in/DMN/311320.newfar/lhsurf.mgh --isp $in/DMN/311320.newcentral/lhsurf.mgh --isp $in/DMN/316633.newfar/lhsurf.mgh --isp $in/DMN/316633.newcentral/lhsurf.mgh --isp $in/DMN/317332.newfar/lhsurf.mgh --isp $in/DMN/317332.newcentral/lhsurf.mgh --isp $in/DMN/318637.newfar/lhsurf.mgh --isp $in/DMN/318637.newcentral/lhsurf.mgh --isp $in/DMN/320826.newfar/lhsurf.mgh --isp $in/DMN/320826.newcentral/lhsurf.mgh --isp $in/DMN/321323.newfar/lhsurf.mgh --isp $in/DMN/321323.newcentral/lhsurf.mgh --isp $in/DMN/322224.newfar/lhsurf.mgh --isp $in/DMN/322224.newcentral/lhsurf.mgh --isp $in/DMN/329440.newfar/lhsurf.mgh --isp $in/DMN/329440.newcentral/lhsurf.mgh --isp $in/DMN/330324.newfar/lhsurf.mgh --isp $in/DMN/330324.newcentral/lhsurf.mgh --isp $in/DMN/333330.newfar/lhsurf.mgh --isp $in/DMN/333330.newcentral/lhsurf.mgh --isp $in/DMN/334635.newfar/lhsurf.mgh --isp $in/DMN/334635.newcentral/lhsurf.mgh --isp $in/DMN/336841.newfar/lhsurf.mgh --isp $in/DMN/336841.newcentral/lhsurf.mgh --isp $in/DMN/339847.newfar/lhsurf.mgh --isp $in/DMN/339847.newcentral/lhsurf.mgh --isp $in/DMN/341834.newfar/lhsurf.mgh --isp $in/DMN/341834.newcentral/lhsurf.mgh --isp $in/DMN/346137.newfar/lhsurf.mgh --isp $in/DMN/346137.newcentral/lhsurf.mgh --isp $in/DMN/346945.newfar/lhsurf.mgh --isp $in/DMN/346945.newcentral/lhsurf.mgh --isp $in/DMN/348545.newfar/lhsurf.mgh --isp $in/DMN/348545.newcentral/lhsurf.mgh --isp $in/DMN/351938.newfar/lhsurf.mgh --isp $in/DMN/351938.newcentral/lhsurf.mgh --isp $in/DMN/352132.newfar/lhsurf.mgh --isp $in/DMN/352132.newcentral/lhsurf.mgh --isp $in/DMN/352738.newfar/lhsurf.mgh --isp $in/DMN/352738.newcentral/lhsurf.mgh --isp $in/DMN/353740.newfar/lhsurf.mgh --isp $in/DMN/353740.newcentral/lhsurf.mgh --isp $in/DMN/355239.newfar/lhsurf.mgh --isp $in/DMN/355239.newcentral/lhsurf.mgh --isp $in/DMN/356948.newfar/lhsurf.mgh --isp $in/DMN/356948.newcentral/lhsurf.mgh --isp $in/DMN/358144.newfar/lhsurf.mgh --isp $in/DMN/358144.newcentral/lhsurf.mgh --isp $in/DMN/361234.newfar/lhsurf.mgh --isp $in/DMN/361234.newcentral/lhsurf.mgh --isp $in/DMN/361941.newfar/lhsurf.mgh --isp $in/DMN/361941.newcentral/lhsurf.mgh --isp $in/DMN/365343.newfar/lhsurf.mgh --isp $in/DMN/365343.newcentral/lhsurf.mgh --isp $in/DMN/366042.newfar/lhsurf.mgh --isp $in/DMN/366042.newcentral/lhsurf.mgh --isp $in/DMN/366446.newfar/lhsurf.mgh --isp $in/DMN/366446.newcentral/lhsurf.mgh --isp $in/DMN/371843.newfar/lhsurf.mgh --isp $in/DMN/371843.newcentral/lhsurf.mgh --isp $in/DMN/377451.newfar/lhsurf.mgh --isp $in/DMN/377451.newcentral/lhsurf.mgh --isp $in/DMN/378857.newfar/lhsurf.mgh --isp $in/DMN/378857.newcentral/lhsurf.mgh --isp $in/DMN/379657.newfar/lhsurf.mgh --isp $in/DMN/379657.newcentral/lhsurf.mgh --isp $in/DMN/380036.newfar/lhsurf.mgh --isp $in/DMN/380036.newcentral/lhsurf.mgh --isp $in/DMN/381038.newfar/lhsurf.mgh --isp $in/DMN/381038.newcentral/lhsurf.mgh --isp $in/DMN/381543.newfar/lhsurf.mgh --isp $in/DMN/381543.newcentral/lhsurf.mgh --isp $in/DMN/382242.newfar/lhsurf.mgh --isp $in/DMN/382242.newcentral/lhsurf.mgh --isp $in/DMN/386250.newfar/lhsurf.mgh --isp $in/DMN/386250.newcentral/lhsurf.mgh --isp $in/DMN/387959.newfar/lhsurf.mgh --isp $in/DMN/387959.newcentral/lhsurf.mgh --isp $in/DMN/389357.newfar/lhsurf.mgh --isp $in/DMN/389357.newcentral/lhsurf.mgh --isp $in/DMN/390645.newfar/lhsurf.mgh --isp $in/DMN/390645.newcentral/lhsurf.mgh --isp $in/DMN/391748.newfar/lhsurf.mgh --isp $in/DMN/391748.newcentral/lhsurf.mgh --isp $in/DMN/393247.newfar/lhsurf.mgh --isp $in/DMN/393247.newcentral/lhsurf.mgh --isp $in/DMN/393550.newfar/lhsurf.mgh --isp $in/DMN/393550.newcentral/lhsurf.mgh --isp $in/DMN/395251.newfar/lhsurf.mgh --isp $in/DMN/395251.newcentral/lhsurf.mgh --isp $in/DMN/397154.newfar/lhsurf.mgh --isp $in/DMN/397154.newcentral/lhsurf.mgh --isp $in/DMN/397760.newfar/lhsurf.mgh --isp $in/DMN/397760.newcentral/lhsurf.mgh --isp $in/DMN/397861.newfar/lhsurf.mgh --isp $in/DMN/397861.newcentral/lhsurf.mgh --isp $in/DMN/406432.newfar/lhsurf.mgh --isp $in/DMN/406432.newcentral/lhsurf.mgh --isp $in/DMN/406836.newfar/lhsurf.mgh --isp $in/DMN/406836.newcentral/lhsurf.mgh --isp $in/DMN/412528.newfar/lhsurf.mgh --isp $in/DMN/412528.newcentral/lhsurf.mgh --isp $in/DMN/415837.newfar/lhsurf.mgh --isp $in/DMN/415837.newcentral/lhsurf.mgh --isp $in/DMN/422632.newfar/lhsurf.mgh --isp $in/DMN/422632.newcentral/lhsurf.mgh --isp $in/DMN/424939.newfar/lhsurf.mgh --isp $in/DMN/424939.newcentral/lhsurf.mgh --isp $in/DMN/429040.newfar/lhsurf.mgh --isp $in/DMN/429040.newcentral/lhsurf.mgh --isp $in/DMN/436239.newfar/lhsurf.mgh --isp $in/DMN/436239.newcentral/lhsurf.mgh --isp $in/DMN/436845.newfar/lhsurf.mgh --isp $in/DMN/436845.newcentral/lhsurf.mgh --isp $in/DMN/441939.newfar/lhsurf.mgh --isp $in/DMN/441939.newcentral/lhsurf.mgh --isp $in/DMN/445543.newfar/lhsurf.mgh --isp $in/DMN/445543.newcentral/lhsurf.mgh --isp $in/DMN/448347.newfar/lhsurf.mgh --isp $in/DMN/448347.newcentral/lhsurf.mgh --isp $in/DMN/449753.newfar/lhsurf.mgh --isp $in/DMN/449753.newcentral/lhsurf.mgh --isp $in/DMN/453441.newfar/lhsurf.mgh --isp $in/DMN/453441.newcentral/lhsurf.mgh --isp $in/DMN/456346.newfar/lhsurf.mgh --isp $in/DMN/456346.newcentral/lhsurf.mgh --isp $in/DMN/459453.newfar/lhsurf.mgh --isp $in/DMN/459453.newcentral/lhsurf.mgh --isp $in/DMN/465852.newfar/lhsurf.mgh --isp $in/DMN/465852.newcentral/lhsurf.mgh --isp $in/DMN/467351.newfar/lhsurf.mgh --isp $in/DMN/467351.newcentral/lhsurf.mgh --isp $in/DMN/473952.newfar/lhsurf.mgh --isp $in/DMN/473952.newcentral/lhsurf.mgh --isp $in/DMN/475855.newfar/lhsurf.mgh --isp $in/DMN/475855.newcentral/lhsurf.mgh --isp $in/DMN/479762.newfar/lhsurf.mgh --isp $in/DMN/479762.newcentral/lhsurf.mgh --isp $in/DMN/480141.newfar/lhsurf.mgh --isp $in/DMN/480141.newcentral/lhsurf.mgh --isp $in/DMN/481951.newfar/lhsurf.mgh --isp $in/DMN/481951.newcentral/lhsurf.mgh --isp $in/DMN/485757.newfar/lhsurf.mgh --isp $in/DMN/485757.newcentral/lhsurf.mgh --isp $in/DMN/486759.newfar/lhsurf.mgh --isp $in/DMN/486759.newcentral/lhsurf.mgh --isp $in/DMN/492754.newfar/lhsurf.mgh --isp $in/DMN/492754.newcentral/lhsurf.mgh --isp $in/DMN/495255.newfar/lhsurf.mgh --isp $in/DMN/495255.newcentral/lhsurf.mgh --isp $in/DMN/497865.newfar/lhsurf.mgh --isp $in/DMN/497865.newcentral/lhsurf.mgh --isp $in/DMN/499566.newfar/lhsurf.mgh --isp $in/DMN/499566.newcentral/lhsurf.mgh --isp $in/DMN/500222.newfar/lhsurf.mgh --isp $in/DMN/500222.newcentral/lhsurf.mgh --isp $in/DMN/506234.newfar/lhsurf.mgh --isp $in/DMN/506234.newcentral/lhsurf.mgh --isp $in/DMN/510326.newfar/lhsurf.mgh --isp $in/DMN/510326.newcentral/lhsurf.mgh --isp $in/DMN/512835.newfar/lhsurf.mgh --isp $in/DMN/512835.newcentral/lhsurf.mgh --isp $in/DMN/513736.newfar/lhsurf.mgh --isp $in/DMN/513736.newcentral/lhsurf.mgh --isp $in/DMN/517239.newfar/lhsurf.mgh --isp $in/DMN/517239.newcentral/lhsurf.mgh --isp $in/DMN/519950.newfar/lhsurf.mgh --isp $in/DMN/519950.newcentral/lhsurf.mgh --isp $in/DMN/520228.newfar/lhsurf.mgh --isp $in/DMN/520228.newcentral/lhsurf.mgh --isp $in/DMN/521331.newfar/lhsurf.mgh --isp $in/DMN/521331.newcentral/lhsurf.mgh --isp $in/DMN/524135.newfar/lhsurf.mgh --isp $in/DMN/524135.newcentral/lhsurf.mgh --isp $in/DMN/525541.newfar/lhsurf.mgh --isp $in/DMN/525541.newcentral/lhsurf.mgh --isp $in/DMN/529549.newfar/lhsurf.mgh --isp $in/DMN/529549.newcentral/lhsurf.mgh --isp $in/DMN/529953.newfar/lhsurf.mgh --isp $in/DMN/529953.newcentral/lhsurf.mgh --isp $in/DMN/530635.newfar/lhsurf.mgh --isp $in/DMN/530635.newcentral/lhsurf.mgh --isp $in/DMN/531536.newfar/lhsurf.mgh --isp $in/DMN/531536.newcentral/lhsurf.mgh --isp $in/DMN/536647.newfar/lhsurf.mgh --isp $in/DMN/536647.newcentral/lhsurf.mgh --isp $in/DMN/540436.newfar/lhsurf.mgh --isp $in/DMN/540436.newcentral/lhsurf.mgh --isp $in/DMN/541943.newfar/lhsurf.mgh --isp $in/DMN/541943.newcentral/lhsurf.mgh --isp $in/DMN/545345.newfar/lhsurf.mgh --isp $in/DMN/545345.newcentral/lhsurf.mgh --isp $in/DMN/547046.newfar/lhsurf.mgh --isp $in/DMN/547046.newcentral/lhsurf.mgh --isp $in/DMN/548250.newfar/lhsurf.mgh --isp $in/DMN/548250.newcentral/lhsurf.mgh --isp $in/DMN/549757.newfar/lhsurf.mgh --isp $in/DMN/549757.newcentral/lhsurf.mgh --isp $in/DMN/553344.newfar/lhsurf.mgh --isp $in/DMN/553344.newcentral/lhsurf.mgh --isp $in/DMN/555348.newfar/lhsurf.mgh --isp $in/DMN/555348.newcentral/lhsurf.mgh --isp $in/DMN/555651.newfar/lhsurf.mgh --isp $in/DMN/555651.newcentral/lhsurf.mgh --isp $in/DMN/557857.newfar/lhsurf.mgh --isp $in/DMN/557857.newcentral/lhsurf.mgh --isp $in/DMN/559053.newfar/lhsurf.mgh --isp $in/DMN/559053.newcentral/lhsurf.mgh --isp $in/DMN/561242.newfar/lhsurf.mgh --isp $in/DMN/561242.newcentral/lhsurf.mgh --isp $in/DMN/561444.newfar/lhsurf.mgh --isp $in/DMN/561444.newcentral/lhsurf.mgh --isp $in/DMN/562345.newfar/lhsurf.mgh --isp $in/DMN/562345.newcentral/lhsurf.mgh --isp $in/DMN/562446.newfar/lhsurf.mgh --isp $in/DMN/562446.newcentral/lhsurf.mgh --isp $in/DMN/565452.newfar/lhsurf.mgh --isp $in/DMN/565452.newcentral/lhsurf.mgh --isp $in/DMN/566454.newfar/lhsurf.mgh --isp $in/DMN/566454.newcentral/lhsurf.mgh --isp $in/DMN/567052.newfar/lhsurf.mgh --isp $in/DMN/567052.newcentral/lhsurf.mgh --isp $in/DMN/567961.newfar/lhsurf.mgh --isp $in/DMN/567961.newcentral/lhsurf.mgh --isp $in/DMN/568963.newfar/lhsurf.mgh --isp $in/DMN/568963.newcentral/lhsurf.mgh --isp $in/DMN/570243.newfar/lhsurf.mgh --isp $in/DMN/570243.newcentral/lhsurf.mgh --isp $in/DMN/571144.newfar/lhsurf.mgh --isp $in/DMN/571144.newcentral/lhsurf.mgh --isp $in/DMN/571548.newfar/lhsurf.mgh --isp $in/DMN/571548.newcentral/lhsurf.mgh --isp $in/DMN/572045.newfar/lhsurf.mgh --isp $in/DMN/572045.newcentral/lhsurf.mgh --isp $in/DMN/573249.newfar/lhsurf.mgh --isp $in/DMN/573249.newcentral/lhsurf.mgh --isp $in/DMN/573451.newfar/lhsurf.mgh --isp $in/DMN/573451.newcentral/lhsurf.mgh --isp $in/DMN/576255.newfar/lhsurf.mgh --isp $in/DMN/576255.newcentral/lhsurf.mgh --isp $in/DMN/579665.newfar/lhsurf.mgh --isp $in/DMN/579665.newcentral/lhsurf.mgh --isp $in/DMN/579867.newfar/lhsurf.mgh --isp $in/DMN/579867.newcentral/lhsurf.mgh --isp $in/DMN/580044.newfar/lhsurf.mgh --isp $in/DMN/580044.newcentral/lhsurf.mgh --isp $in/DMN/580347.newfar/lhsurf.mgh --isp $in/DMN/580347.newcentral/lhsurf.mgh --isp $in/DMN/580650.newfar/lhsurf.mgh --isp $in/DMN/580650.newcentral/lhsurf.mgh --isp $in/DMN/580751.newfar/lhsurf.mgh --isp $in/DMN/580751.newcentral/lhsurf.mgh --isp $in/DMN/581349.newfar/lhsurf.mgh --isp $in/DMN/581349.newcentral/lhsurf.mgh --isp $in/DMN/583858.newfar/lhsurf.mgh --isp $in/DMN/583858.newcentral/lhsurf.mgh --isp $in/DMN/585256.newfar/lhsurf.mgh --isp $in/DMN/585256.newcentral/lhsurf.mgh --isp $in/DMN/585862.newfar/lhsurf.mgh --isp $in/DMN/585862.newcentral/lhsurf.mgh --isp $in/DMN/586460.newfar/lhsurf.mgh --isp $in/DMN/586460.newcentral/lhsurf.mgh --isp $in/DMN/587664.newfar/lhsurf.mgh --isp $in/DMN/587664.newcentral/lhsurf.mgh --isp $in/DMN/588565.newfar/lhsurf.mgh --isp $in/DMN/588565.newcentral/lhsurf.mgh --isp $in/DMN/592455.newfar/lhsurf.mgh --isp $in/DMN/592455.newcentral/lhsurf.mgh --isp $in/DMN/594156.newfar/lhsurf.mgh --isp $in/DMN/594156.newcentral/lhsurf.mgh --isp $in/DMN/597869.newfar/lhsurf.mgh --isp $in/DMN/597869.newcentral/lhsurf.mgh --isp $in/DMN/598568.newfar/lhsurf.mgh --isp $in/DMN/598568.newcentral/lhsurf.mgh --isp $in/DMN/599065.newfar/lhsurf.mgh --isp $in/DMN/599065.newcentral/lhsurf.mgh --isp $in/DMN/599469.newfar/lhsurf.mgh --isp $in/DMN/599469.newcentral/lhsurf.mgh --isp $in/DMN/599671.newfar/lhsurf.mgh --isp $in/DMN/599671.newcentral/lhsurf.mgh --isp $in/DMN/601127.newfar/lhsurf.mgh --isp $in/DMN/601127.newcentral/lhsurf.mgh --isp $in/DMN/604537.newfar/lhsurf.mgh --isp $in/DMN/604537.newcentral/lhsurf.mgh --isp $in/DMN/609143.newfar/lhsurf.mgh --isp $in/DMN/609143.newcentral/lhsurf.mgh --isp $in/DMN/613538.newfar/lhsurf.mgh --isp $in/DMN/613538.newcentral/lhsurf.mgh --isp $in/DMN/614439.newfar/lhsurf.mgh --isp $in/DMN/614439.newcentral/lhsurf.mgh --isp $in/DMN/615744.newfar/lhsurf.mgh --isp $in/DMN/615744.newcentral/lhsurf.mgh --isp $in/DMN/616645.newfar/lhsurf.mgh --isp $in/DMN/616645.newcentral/lhsurf.mgh --isp $in/DMN/617748.newfar/lhsurf.mgh --isp $in/DMN/617748.newcentral/lhsurf.mgh --isp $in/DMN/618952.newfar/lhsurf.mgh --isp $in/DMN/618952.newcentral/lhsurf.mgh --isp $in/DMN/620434.newfar/lhsurf.mgh --isp $in/DMN/620434.newcentral/lhsurf.mgh --isp $in/DMN/622236.newfar/lhsurf.mgh --isp $in/DMN/622236.newcentral/lhsurf.mgh --isp $in/DMN/623844.newfar/lhsurf.mgh --isp $in/DMN/623844.newcentral/lhsurf.mgh --isp $in/DMN/626648.newfar/lhsurf.mgh --isp $in/DMN/626648.newcentral/lhsurf.mgh --isp $in/DMN/627549.newfar/lhsurf.mgh --isp $in/DMN/627549.newcentral/lhsurf.mgh --isp $in/DMN/627852.newfar/lhsurf.mgh --isp $in/DMN/627852.newcentral/lhsurf.mgh --isp $in/DMN/633847.newfar/lhsurf.mgh --isp $in/DMN/633847.newcentral/lhsurf.mgh --isp $in/DMN/638049.newfar/lhsurf.mgh --isp $in/DMN/638049.newcentral/lhsurf.mgh --isp $in/DMN/644044.newfar/lhsurf.mgh --isp $in/DMN/644044.newcentral/lhsurf.mgh --isp $in/DMN/645450.newfar/lhsurf.mgh --isp $in/DMN/645450.newcentral/lhsurf.mgh --isp $in/DMN/645551.newfar/lhsurf.mgh --isp $in/DMN/645551.newcentral/lhsurf.mgh --isp $in/DMN/647858.newfar/lhsurf.mgh --isp $in/DMN/647858.newcentral/lhsurf.mgh --isp $in/DMN/654350.newfar/lhsurf.mgh --isp $in/DMN/654350.newcentral/lhsurf.mgh --isp $in/DMN/654754.newfar/lhsurf.mgh --isp $in/DMN/654754.newcentral/lhsurf.mgh --isp $in/DMN/656253.newfar/lhsurf.mgh --isp $in/DMN/656253.newcentral/lhsurf.mgh --isp $in/DMN/657659.newfar/lhsurf.mgh --isp $in/DMN/657659.newcentral/lhsurf.mgh --isp $in/DMN/660951.newfar/lhsurf.mgh --isp $in/DMN/660951.newcentral/lhsurf.mgh --isp $in/DMN/663755.newfar/lhsurf.mgh --isp $in/DMN/663755.newcentral/lhsurf.mgh --isp $in/DMN/664757.newfar/lhsurf.mgh --isp $in/DMN/664757.newcentral/lhsurf.mgh --isp $in/DMN/665254.newfar/lhsurf.mgh --isp $in/DMN/665254.newcentral/lhsurf.mgh --isp $in/DMN/667056.newfar/lhsurf.mgh --isp $in/DMN/667056.newcentral/lhsurf.mgh --isp $in/DMN/668361.newfar/lhsurf.mgh --isp $in/DMN/668361.newcentral/lhsurf.mgh --isp $in/DMN/671855.newfar/lhsurf.mgh --isp $in/DMN/671855.newcentral/lhsurf.mgh --isp $in/DMN/672756.newfar/lhsurf.mgh --isp $in/DMN/672756.newcentral/lhsurf.mgh --isp $in/DMN/673455.newfar/lhsurf.mgh --isp $in/DMN/673455.newcentral/lhsurf.mgh --isp $in/DMN/677766.newfar/lhsurf.mgh --isp $in/DMN/677766.newcentral/lhsurf.mgh --isp $in/DMN/677968.newfar/lhsurf.mgh --isp $in/DMN/677968.newcentral/lhsurf.mgh --isp $in/DMN/679568.newfar/lhsurf.mgh --isp $in/DMN/679568.newcentral/lhsurf.mgh --isp $in/DMN/679770.newfar/lhsurf.mgh --isp $in/DMN/679770.newcentral/lhsurf.mgh --isp $in/DMN/680250.newfar/lhsurf.mgh --isp $in/DMN/680250.newcentral/lhsurf.mgh --isp $in/DMN/680957.newfar/lhsurf.mgh --isp $in/DMN/680957.newcentral/lhsurf.mgh --isp $in/DMN/683256.newfar/lhsurf.mgh --isp $in/DMN/683256.newcentral/lhsurf.mgh --isp $in/DMN/685058.newfar/lhsurf.mgh --isp $in/DMN/685058.newcentral/lhsurf.mgh --isp $in/DMN/686969.newfar/lhsurf.mgh --isp $in/DMN/686969.newcentral/lhsurf.mgh --isp $in/DMN/687163.newfar/lhsurf.mgh --isp $in/DMN/687163.newcentral/lhsurf.mgh --isp $in/DMN/690152.newfar/lhsurf.mgh --isp $in/DMN/690152.newcentral/lhsurf.mgh --isp $in/DMN/693461.newfar/lhsurf.mgh --isp $in/DMN/693461.newcentral/lhsurf.mgh --isp $in/DMN/693764.newfar/lhsurf.mgh --isp $in/DMN/693764.newcentral/lhsurf.mgh --isp $in/DMN/695768.newfar/lhsurf.mgh --isp $in/DMN/695768.newcentral/lhsurf.mgh --isp $in/DMN/700634.newfar/lhsurf.mgh --isp $in/DMN/700634.newcentral/lhsurf.mgh --isp $in/DMN/702133.newfar/lhsurf.mgh --isp $in/DMN/702133.newcentral/lhsurf.mgh --isp $in/DMN/704238.newfar/lhsurf.mgh --isp $in/DMN/704238.newcentral/lhsurf.mgh --isp $in/DMN/705341.newfar/lhsurf.mgh --isp $in/DMN/705341.newcentral/lhsurf.mgh --isp $in/DMN/706040.newfar/lhsurf.mgh --isp $in/DMN/706040.newcentral/lhsurf.mgh --isp $in/DMN/707749.newfar/lhsurf.mgh --isp $in/DMN/707749.newcentral/lhsurf.mgh --isp $in/DMN/713239.newfar/lhsurf.mgh --isp $in/DMN/713239.newcentral/lhsurf.mgh --isp $in/DMN/715041.newfar/lhsurf.mgh --isp $in/DMN/715041.newcentral/lhsurf.mgh --isp $in/DMN/715647.newfar/lhsurf.mgh --isp $in/DMN/715647.newcentral/lhsurf.mgh --isp $in/DMN/715950.newfar/lhsurf.mgh --isp $in/DMN/715950.newcentral/lhsurf.mgh --isp $in/DMN/720337.newfar/lhsurf.mgh --isp $in/DMN/720337.newcentral/lhsurf.mgh --isp $in/DMN/724446.newfar/lhsurf.mgh --isp $in/DMN/724446.newcentral/lhsurf.mgh --isp $in/DMN/725751.newfar/lhsurf.mgh --isp $in/DMN/725751.newcentral/lhsurf.mgh --isp $in/DMN/727553.newfar/lhsurf.mgh --isp $in/DMN/727553.newcentral/lhsurf.mgh --isp $in/DMN/727654.newfar/lhsurf.mgh --isp $in/DMN/727654.newcentral/lhsurf.mgh --isp $in/DMN/729557.newfar/lhsurf.mgh --isp $in/DMN/729557.newcentral/lhsurf.mgh --isp $in/DMN/731140.newfar/lhsurf.mgh --isp $in/DMN/731140.newcentral/lhsurf.mgh --isp $in/DMN/732243.newfar/lhsurf.mgh --isp $in/DMN/732243.newcentral/lhsurf.mgh --isp $in/DMN/737960.newfar/lhsurf.mgh --isp $in/DMN/737960.newcentral/lhsurf.mgh --isp $in/DMN/742549.newfar/lhsurf.mgh --isp $in/DMN/742549.newcentral/lhsurf.mgh --isp $in/DMN/748258.newfar/lhsurf.mgh --isp $in/DMN/748258.newcentral/lhsurf.mgh --isp $in/DMN/748662.newfar/lhsurf.mgh --isp $in/DMN/748662.newcentral/lhsurf.mgh --isp $in/DMN/749058.newfar/lhsurf.mgh --isp $in/DMN/749058.newcentral/lhsurf.mgh --isp $in/DMN/749361.newfar/lhsurf.mgh --isp $in/DMN/749361.newcentral/lhsurf.mgh --isp $in/DMN/751348.newfar/lhsurf.mgh --isp $in/DMN/751348.newcentral/lhsurf.mgh --isp $in/DMN/751550.newfar/lhsurf.mgh --isp $in/DMN/751550.newcentral/lhsurf.mgh --isp $in/DMN/753150.newfar/lhsurf.mgh --isp $in/DMN/753150.newcentral/lhsurf.mgh --isp $in/DMN/753251.newfar/lhsurf.mgh --isp $in/DMN/753251.newcentral/lhsurf.mgh --isp $in/DMN/756055.newfar/lhsurf.mgh --isp $in/DMN/756055.newcentral/lhsurf.mgh --isp $in/DMN/759869.newfar/lhsurf.mgh --isp $in/DMN/759869.newcentral/lhsurf.mgh --isp $in/DMN/761957.newfar/lhsurf.mgh --isp $in/DMN/761957.newcentral/lhsurf.mgh --isp $in/DMN/765056.newfar/lhsurf.mgh --isp $in/DMN/765056.newcentral/lhsurf.mgh --isp $in/DMN/769064.newfar/lhsurf.mgh --isp $in/DMN/769064.newcentral/lhsurf.mgh --isp $in/DMN/770352.newfar/lhsurf.mgh --isp $in/DMN/770352.newcentral/lhsurf.mgh --isp $in/DMN/771354.newfar/lhsurf.mgh --isp $in/DMN/771354.newcentral/lhsurf.mgh --isp $in/DMN/773257.newfar/lhsurf.mgh --isp $in/DMN/773257.newcentral/lhsurf.mgh --isp $in/DMN/779370.newfar/lhsurf.mgh --isp $in/DMN/779370.newcentral/lhsurf.mgh --isp $in/DMN/782561.newfar/lhsurf.mgh --isp $in/DMN/782561.newcentral/lhsurf.mgh --isp $in/DMN/783462.newfar/lhsurf.mgh --isp $in/DMN/783462.newcentral/lhsurf.mgh --isp $in/DMN/784565.newfar/lhsurf.mgh --isp $in/DMN/784565.newcentral/lhsurf.mgh --isp $in/DMN/786569.newfar/lhsurf.mgh --isp $in/DMN/786569.newcentral/lhsurf.mgh --isp $in/DMN/788876.newfar/lhsurf.mgh --isp $in/DMN/788876.newcentral/lhsurf.mgh --isp $in/DMN/789373.newfar/lhsurf.mgh --isp $in/DMN/789373.newcentral/lhsurf.mgh --isp $in/DMN/792564.newfar/lhsurf.mgh --isp $in/DMN/792564.newcentral/lhsurf.mgh --isp $in/DMN/792766.newfar/lhsurf.mgh --isp $in/DMN/792766.newcentral/lhsurf.mgh --isp $in/DMN/792867.newfar/lhsurf.mgh --isp $in/DMN/792867.newcentral/lhsurf.mgh --isp $in/DMN/793465.newfar/lhsurf.mgh --isp $in/DMN/793465.newcentral/lhsurf.mgh --isp $in/DMN/800941.newfar/lhsurf.mgh --isp $in/DMN/800941.newcentral/lhsurf.mgh --isp $in/DMN/802844.newfar/lhsurf.mgh --isp $in/DMN/802844.newcentral/lhsurf.mgh --isp $in/DMN/803240.newfar/lhsurf.mgh --isp $in/DMN/803240.newcentral/lhsurf.mgh --isp $in/DMN/810439.newfar/lhsurf.mgh --isp $in/DMN/810439.newcentral/lhsurf.mgh --isp $in/DMN/810843.newfar/lhsurf.mgh --isp $in/DMN/810843.newcentral/lhsurf.mgh --isp $in/DMN/812746.newfar/lhsurf.mgh --isp $in/DMN/812746.newcentral/lhsurf.mgh --isp $in/DMN/814649.newfar/lhsurf.mgh --isp $in/DMN/814649.newcentral/lhsurf.mgh --isp $in/DMN/816653.newfar/lhsurf.mgh --isp $in/DMN/816653.newcentral/lhsurf.mgh --isp $in/DMN/818859.newfar/lhsurf.mgh --isp $in/DMN/818859.newcentral/lhsurf.mgh --isp $in/DMN/820745.newfar/lhsurf.mgh --isp $in/DMN/820745.newcentral/lhsurf.mgh --isp $in/DMN/825048.newfar/lhsurf.mgh --isp $in/DMN/825048.newcentral/lhsurf.mgh --isp $in/DMN/826353.newfar/lhsurf.mgh --isp $in/DMN/826353.newcentral/lhsurf.mgh --isp $in/DMN/826454.newfar/lhsurf.mgh --isp $in/DMN/826454.newcentral/lhsurf.mgh --isp $in/DMN/833148.newfar/lhsurf.mgh --isp $in/DMN/833148.newcentral/lhsurf.mgh --isp $in/DMN/833249.newfar/lhsurf.mgh --isp $in/DMN/833249.newcentral/lhsurf.mgh --isp $in/DMN/835657.newfar/lhsurf.mgh --isp $in/DMN/835657.newcentral/lhsurf.mgh --isp $in/DMN/837560.newfar/lhsurf.mgh --isp $in/DMN/837560.newcentral/lhsurf.mgh --isp $in/DMN/837964.newfar/lhsurf.mgh --isp $in/DMN/837964.newcentral/lhsurf.mgh --isp $in/DMN/841349.newfar/lhsurf.mgh --isp $in/DMN/841349.newcentral/lhsurf.mgh --isp $in/DMN/843151.newfar/lhsurf.mgh --isp $in/DMN/843151.newcentral/lhsurf.mgh --isp $in/DMN/844961.newfar/lhsurf.mgh --isp $in/DMN/844961.newcentral/lhsurf.mgh --isp $in/DMN/845458.newfar/lhsurf.mgh --isp $in/DMN/845458.newcentral/lhsurf.mgh --isp $in/DMN/849264.newfar/lhsurf.mgh --isp $in/DMN/849264.newcentral/lhsurf.mgh --isp $in/DMN/849971.newfar/lhsurf.mgh --isp $in/DMN/849971.newcentral/lhsurf.mgh --isp $in/DMN/852455.newfar/lhsurf.mgh --isp $in/DMN/852455.newcentral/lhsurf.mgh --isp $in/DMN/856463.newfar/lhsurf.mgh --isp $in/DMN/856463.newcentral/lhsurf.mgh --isp $in/DMN/856766.newfar/lhsurf.mgh --isp $in/DMN/856766.newcentral/lhsurf.mgh --isp $in/DMN/856968.newfar/lhsurf.mgh --isp $in/DMN/856968.newcentral/lhsurf.mgh --isp $in/DMN/859671.newfar/lhsurf.mgh --isp $in/DMN/859671.newcentral/lhsurf.mgh --isp $in/DMN/861456.newfar/lhsurf.mgh --isp $in/DMN/861456.newcentral/lhsurf.mgh --isp $in/DMN/865363.newfar/lhsurf.mgh --isp $in/DMN/865363.newcentral/lhsurf.mgh --isp $in/DMN/867468.newfar/lhsurf.mgh --isp $in/DMN/867468.newcentral/lhsurf.mgh --isp $in/DMN/870861.newfar/lhsurf.mgh --isp $in/DMN/870861.newcentral/lhsurf.mgh --isp $in/DMN/871762.newfar/lhsurf.mgh --isp $in/DMN/871762.newcentral/lhsurf.mgh --isp $in/DMN/871964.newfar/lhsurf.mgh --isp $in/DMN/871964.newcentral/lhsurf.mgh --isp $in/DMN/872158.newfar/lhsurf.mgh --isp $in/DMN/872158.newcentral/lhsurf.mgh --isp $in/DMN/872562.newfar/lhsurf.mgh --isp $in/DMN/872562.newcentral/lhsurf.mgh --isp $in/DMN/872764.newfar/lhsurf.mgh --isp $in/DMN/872764.newcentral/lhsurf.mgh --isp $in/DMN/873968.newfar/lhsurf.mgh --isp $in/DMN/873968.newcentral/lhsurf.mgh --isp $in/DMN/877168.newfar/lhsurf.mgh --isp $in/DMN/877168.newcentral/lhsurf.mgh --isp $in/DMN/877269.newfar/lhsurf.mgh --isp $in/DMN/877269.newcentral/lhsurf.mgh --isp $in/DMN/878776.newfar/lhsurf.mgh --isp $in/DMN/878776.newcentral/lhsurf.mgh --isp $in/DMN/880157.newfar/lhsurf.mgh --isp $in/DMN/880157.newcentral/lhsurf.mgh --isp $in/DMN/882161.newfar/lhsurf.mgh --isp $in/DMN/882161.newcentral/lhsurf.mgh --isp $in/DMN/885975.newfar/lhsurf.mgh --isp $in/DMN/885975.newcentral/lhsurf.mgh --isp $in/DMN/887373.newfar/lhsurf.mgh --isp $in/DMN/887373.newcentral/lhsurf.mgh --isp $in/DMN/889579.newfar/lhsurf.mgh --isp $in/DMN/889579.newcentral/lhsurf.mgh --isp $in/DMN/891667.newfar/lhsurf.mgh --isp $in/DMN/891667.newcentral/lhsurf.mgh --isp $in/DMN/894067.newfar/lhsurf.mgh --isp $in/DMN/894067.newcentral/lhsurf.mgh --isp $in/DMN/894673.newfar/lhsurf.mgh --isp $in/DMN/894673.newcentral/lhsurf.mgh --isp $in/DMN/894774.newfar/lhsurf.mgh --isp $in/DMN/894774.newcentral/lhsurf.mgh --isp $in/DMN/896879.newfar/lhsurf.mgh --isp $in/DMN/896879.newcentral/lhsurf.mgh --isp $in/DMN/898176.newfar/lhsurf.mgh --isp $in/DMN/898176.newcentral/lhsurf.mgh --isp $in/DMN/899885.newfar/lhsurf.mgh --isp $in/DMN/899885.newcentral/lhsurf.mgh --isp $in/DMN/901038.newfar/lhsurf.mgh --isp $in/DMN/901038.newcentral/lhsurf.mgh --isp $in/DMN/901139.newfar/lhsurf.mgh --isp $in/DMN/901139.newcentral/lhsurf.mgh --isp $in/DMN/901442.newfar/lhsurf.mgh --isp $in/DMN/901442.newcentral/lhsurf.mgh --isp $in/DMN/904044.newfar/lhsurf.mgh --isp $in/DMN/904044.newcentral/lhsurf.mgh --isp $in/DMN/907656.newfar/lhsurf.mgh --isp $in/DMN/907656.newcentral/lhsurf.mgh --isp $in/DMN/910241.newfar/lhsurf.mgh --isp $in/DMN/910241.newcentral/lhsurf.mgh --isp $in/DMN/910443.newfar/lhsurf.mgh --isp $in/DMN/910443.newcentral/lhsurf.mgh --isp $in/DMN/912447.newfar/lhsurf.mgh --isp $in/DMN/912447.newcentral/lhsurf.mgh --isp $in/DMN/917255.newfar/lhsurf.mgh --isp $in/DMN/917255.newcentral/lhsurf.mgh --isp $in/DMN/917558.newfar/lhsurf.mgh --isp $in/DMN/917558.newcentral/lhsurf.mgh --isp $in/DMN/919966.newfar/lhsurf.mgh --isp $in/DMN/919966.newcentral/lhsurf.mgh --isp $in/DMN/922854.newfar/lhsurf.mgh --isp $in/DMN/922854.newcentral/lhsurf.mgh --isp $in/DMN/923755.newfar/lhsurf.mgh --isp $in/DMN/923755.newcentral/lhsurf.mgh --isp $in/DMN/926862.newfar/lhsurf.mgh --isp $in/DMN/926862.newcentral/lhsurf.mgh --isp $in/DMN/927359.newfar/lhsurf.mgh --isp $in/DMN/927359.newcentral/lhsurf.mgh --isp $in/DMN/930449.newfar/lhsurf.mgh --isp $in/DMN/930449.newcentral/lhsurf.mgh --isp $in/DMN/932554.newfar/lhsurf.mgh --isp $in/DMN/932554.newcentral/lhsurf.mgh --isp $in/DMN/937160.newfar/lhsurf.mgh --isp $in/DMN/937160.newcentral/lhsurf.mgh --isp $in/DMN/942658.newfar/lhsurf.mgh --isp $in/DMN/942658.newcentral/lhsurf.mgh --isp $in/DMN/947668.newfar/lhsurf.mgh --isp $in/DMN/947668.newcentral/lhsurf.mgh --isp $in/DMN/951457.newfar/lhsurf.mgh --isp $in/DMN/951457.newcentral/lhsurf.mgh --isp $in/DMN/952863.newfar/lhsurf.mgh --isp $in/DMN/952863.newcentral/lhsurf.mgh --isp $in/DMN/955465.newfar/lhsurf.mgh --isp $in/DMN/955465.newcentral/lhsurf.mgh --isp $in/DMN/957974.newfar/lhsurf.mgh --isp $in/DMN/957974.newcentral/lhsurf.mgh --isp $in/DMN/959574.newfar/lhsurf.mgh --isp $in/DMN/959574.newcentral/lhsurf.mgh --isp $in/DMN/965367.newfar/lhsurf.mgh --isp $in/DMN/965367.newcentral/lhsurf.mgh --isp $in/DMN/965771.newfar/lhsurf.mgh --isp $in/DMN/965771.newcentral/lhsurf.mgh --isp $in/DMN/966975.newfar/lhsurf.mgh --isp $in/DMN/966975.newcentral/lhsurf.mgh --isp $in/DMN/972566.newfar/lhsurf.mgh --isp $in/DMN/972566.newcentral/lhsurf.mgh --isp $in/DMN/978578.newfar/lhsurf.mgh --isp $in/DMN/978578.newcentral/lhsurf.mgh --isp $in/DMN/979984.newfar/lhsurf.mgh --isp $in/DMN/979984.newcentral/lhsurf.mgh --isp $in/DMN/983773.newfar/lhsurf.mgh --isp $in/DMN/983773.newcentral/lhsurf.mgh --isp $in/DMN/984472.newfar/lhsurf.mgh --isp $in/DMN/984472.newcentral/lhsurf.mgh --isp $in/DMN/987983.newfar/lhsurf.mgh --isp $in/DMN/987983.newcentral/lhsurf.mgh --isp $in/DMN/990366.newfar/lhsurf.mgh --isp $in/DMN/990366.newcentral/lhsurf.mgh --isp $in/DMN/991267.newfar/lhsurf.mgh --isp $in/DMN/991267.newcentral/lhsurf.mgh --isp $in/DMN/992673.newfar/lhsurf.mgh --isp $in/DMN/992673.newcentral/lhsurf.mgh --isp $in/DMN/992774.newfar/lhsurf.mgh --isp $in/DMN/992774.newcentral/lhsurf.mgh --isp $in/DMN/993675.newfar/lhsurf.mgh --isp $in/DMN/993675.newcentral/lhsurf.mgh --isp $in/DMN/996782.newfar/lhsurf.mgh --isp $in/DMN/996782.newcentral/lhsurf.mgh --out $out/preproc_DMN_fc/lh.paired-diff.DMN_fc.mgh --f $sublist --no-cortex-only

 

 

Sara Sims

Graduate Research Fellow

University of Alabama at Birmingham

Department of Psychology

205-975-4060

snolin@uab.edu

 

From: <freesurfer-bounces@nmr.mgh.harvard.edu> on behalf of "Greve, Douglas N.,Ph.D." <DGREVE@mgh.harvard.edu>
Reply-To: Freesurfer support list <freesurfer@nmr.mgh.harvard.edu>
Date: Saturday, March 30, 2019 at 6:06 PM
To: "freesurfer@nmr.mgh.harvard.edu" <freesurfer@nmr.mgh.harvard.edu>
Subject: Re: [Freesurfer] mris_preproc not running

 

Hi Sara, can you just cut and paste them into the email. And are you sure you're running the new command?

On 3/29/19 6:59 PM, Sims, Sara A (Campus) wrote:

        External Email - Use Caution        
 
I have attached them here. 
 
Sara Sims 
Graduate Research Fellow
University of Alabama at Birmingham
Department of Psychology
205-975-4060
snolin@uab.edu
 
On 3/29/19, 10:05 AM, "freesurfer-bounces@nmr.mgh.harvard.edu on behalf of Greve, Douglas N.,Ph.D." <freesurfer-bounces@nmr.mgh.harvard.edu on behalf of DGREVE@mgh.harvard.edu> wrote:
 
    Can you send your full command line and the full terminal output? Are 
    you sure you're using the new command?
    
    On 3/27/19 10:33 PM, Sims, Sara A (Campus) wrote:
    >          External Email - Use Caution
    >
    > Doug,
    > I have implemented the new version of the command. I am getting this error when I add the no-prune flag to my script.
    > ERROR: could not find volume --no-prune.  Does it exist?
    > ERROR: reading --no-prune
    > Are there specifics with where in the command line it should go? I have tried it near the beginning and near the end and still get this error.
    >
    > Sara Sims
    > Graduate Research Fellow
    > University of Alabama at Birmingham
    > Department of Psychology
    > 205-975-4060
    > snolin@uab.edu
    >
    > On 3/19/19, 3:30 PM, "freesurfer-bounces@nmr.mgh.harvard.edu on behalf of Greve, Douglas N.,Ph.D." <freesurfer-bounces@nmr.mgh.harvard.edu on behalf of DGREVE@mgh.harvard.edu> wrote:
    >
    >      I think the problem is that one or more of the subjects has all 0s. The
    >      way mris_preproc works is that if any subject has a 0 in a vertex, that
    >      vertex is set to 0 for all subjects. So, if one subject has all 0s or if
    >      tp1=tp2, then everything can get set to 0. At the end of the terminal
    >      output you'll see "Found 0 voxels in prune mask" indicating that this is
    >      the case. I've created a version of mris_preproc that allows you to turn
    >      this function off using --no-prune. You can get it from here:
    >      https://gate.nmr.mgh.harvard.edu/safelinks/greve/mris_preproc
    >      I would run it with --no-prune and without --paired-diff to give you a
    >      stack of all data. You can load this as an overlay in freeview. At the
    >      top of the freeview window is a little box with waveform in it. If you
    >      click on that and then click on a point in the surface, you should be
    >      able to see a waveform of the measurements for all inputs. See if there
    >      is one that is always 0. If you don't find any, then repeat with
    >      --paired-diff
    >      
    >      
    >      
    >      
    >      On 3/19/19 3:30 PM, Sims, Sara A (Campus) wrote:
    >      >
    >      >         External Email - Use Caution
    >      >
    >      > I uploaded them to the Filedrop here:
    >      > http://gate.nmr.mgh.harvard.edu/filedrop2/?p=65zt2jk45ll
    >      >
    >      > Thanks!
    >      >
    >      > Sara Sims
    >      >
    >      > Graduate Research Fellow
    >      >
    >      > University of Alabama at Birmingham
    >      >
    >      > Department of Psychology
    >      >
    >      > 205-975-4060
    >      >
    >      > snolin@uab.edu
    >      >
    >      > *From: *<freesurfer-bounces@nmr.mgh.harvard.edu> on behalf of "Greve,
    >      > Douglas N.,Ph.D." <DGREVE@mgh.harvard.edu>
    >      > *Reply-To: *Freesurfer support list <freesurfer@nmr.mgh.harvard.edu>
    >      > *Date: *Monday, March 18, 2019 at 10:24 AM
    >      > *To: *"freesurfer@nmr.mgh.harvard.edu" <freesurfer@nmr.mgh.harvard.edu>
    >      > *Subject: *Re: [Freesurfer] mris_preproc not running
    >      >
    >      >
    >      > can you send the terminal output? I realize it might be quite big. You
    >      > can ftp it to here: /autofs/space/nihilus_001/CICS/ACRsoftware/ACRcurrent
    >      >
    >      >
    >      > On 3/18/19 11:12 AM, Sims, Sara A (Campus) wrote:
    >      >
    >      >     *        External Email - Use Caution *
    >      >
    >      >     Hello!
    >      >
    >      >     I have 786 subjects that I am trying to do a paired difference
    >      >     analysis using mri_glm. I am getting stuck at the mris_preproc
    >      >     stage. I have tried running it on a handful of subjects and it
    >      >     works wonderfully. However, when I run it on all the subjects it
    >      >     outputs an empty file.
    >      >
    >      >     I think part of my problem is that I am having to do 1572 flags to
    >      >     enter all the subjects files (which I made a script to create, I
    >      >     did not hand type them). Is there a better way to do this? Do I
    >      >     just have too many subjects?
    >      >
    >      >     This is what I have that isn’t working:
    >      >
    >      >     *mris_preproc --target fsaverage --hemi lh --isp
    >      >     $in/${network}/100206.${run1}/lhsurf.mgh --isp
    >      >     $in/${network}/100206.${run2}/lhsurf.mgh --isp
    >      >     $in/${network}/100307.${run1}/lhsurf.mgh --isp
    >      >     $in/${network}/100307.${run2}/lhsurf.mgh ……. --out
    >      >     $out/preproc_${network}_${pair}/lh.paired-diff.${network}_${pair}.mgh
    >      >     --f $sublist --paired-diff --no-cortex-only*
    >      >
    >      >     **
    >      >
    >      >     Thanks for the help!
    >      >
    >      >     Sara Sims
    >      >
    >      >
    >      >
    >      >     _______________________________________________
    >      >
    >      >     Freesurfer mailing list
    >      >
    >      >     Freesurfer@nmr.mgh.harvard.edu  <mailto:Freesurfer@nmr.mgh.harvard.edu>
    >      >
    >      >     https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
    >      >
    >      >
    >      >
    >      >
    >      > _______________________________________________
    >      > Freesurfer mailing list
    >      > Freesurfer@nmr.mgh.harvard.edu
    >      > https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
    >      
    >      
    >      _______________________________________________
    >      Freesurfer mailing list
    >      Freesurfer@nmr.mgh.harvard.edu
    >      https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
    >
    >
    > _______________________________________________
    > Freesurfer mailing list
    > Freesurfer@nmr.mgh.harvard.edu
    > https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
    
    
    _______________________________________________
    Freesurfer mailing list
    Freesurfer@nmr.mgh.harvard.edu
    https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer
 



_______________________________________________
Freesurfer mailing list
Freesurfer@nmr.mgh.harvard.edu
https://mail.nmr.mgh.harvard.edu/mailman/listinfo/freesurfer