mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 06:20:25 +08:00
16 lines
317 B
Tcsh
16 lines
317 B
Tcsh
#! /bin/tcsh -f
|
|
|
|
|
|
echo "SEMPHY with Constraints from given tree"
|
|
|
|
foreach ct (lys_test*.ctree)
|
|
echo $ct
|
|
cat $ct
|
|
echo ""
|
|
echo 'Running "../semphy -H -s lys6.seq -t lys6.tree --jtt -c '$ct' -v5 -S"'
|
|
echo ""
|
|
../semphy -H -s lys6.seq -t lys6.tree --jtt -c $ct -v5 -S
|
|
echo ""
|
|
echo ""
|
|
end
|