program genereating HOMOL_FRAG consensus fragments
[unres.git] / source / fragments / run.csh
1 #!/bin/csh
2 foreach f1 (*[1-5])
3  foreach f2 (*[1-5])
4  if ($f1 != $f2) then
5   echo -n $f1 $f2 |awk '{printf "%-32s%-32s",$1,$2}' >> all.txt
6   ./f $f1 $f2 ooo_${f1}_${f2}_ooo 1 114 >& /dev/null
7   tail -1 ooo_${f1}_${f2}_ooo >> all.txt
8  endif
9 end
10 end