-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathInstall
executable file
·35 lines (30 loc) · 1.19 KB
/
Install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#! /bin/sh -
currdir=`pwd`
cd ./FATCATMain
if(test -d "/usr/include/c++/") then
cp basic_90.h basic.h
else cp basic_73.h basic.h
fi
make
echo
echo "make is completed"
echo
echo "====================================================================="
echo "NOTE 1: please setup the FATCAT environment for correct FATCAT usage"
echo "export FATCAT=$currdir # add to .bashrc"
echo "setenv FATCAT $currdir # add to .cshrc"
echo "NOTE 2: please include the path of $currdir/FATCATMain into the .login file"
echo "so that you can run FATCAT under any directory"
echo "====================================================================="
echo
echo "====================================================================="
echo "Please do a simple FATCAT test"
echo "go to the ./Examples_FATCAT"
echo "excute \"FATCAT -p1 1a21A.pdb -p2 1hwgC.pdb -o 1a21A_1hwgC -m -ac -t\""
echo "once the job is completed, excute \"diff 1a21A_1hwgC.aln compare.aln\""
echo "if no difference is found in comparing the two files, then FATCAT is ok"
echo "====================================================================="
echo
echo "Please read the Readme file for more details of FATCAT usage"
echo
echo "Installation is completed"