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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/bin/bash
######################################
#Gary Kapral 04/20/2011
#update the het dictionary in reduce on the cluster; downloads the het dictionary from PDB, date stamps it
#makes it readable by reduce, and links the reduce_wwPDB_het_dict.txt used by reduce to the new het dictionary
#use: sign in as srcer, run from /home/srcer/src/reduce/reduce_trunk/
#other programs used: adjust_het_dict.pl, comment_out_OH_on_P_v3.0.pl
######################################
cd ./chiropraxis
ant clean
ant build
cd ../cifless
ant clean
ant build
cd ../cmdline
ant clean
ant build
cd ../dangle
ant clean
ant build
cd ../driftwood
ant clean
ant build
cd ../extratools
ant clean
ant build
cd ../fftoys
ant clean
ant build
cd ../geometer
ant clean
ant build
cd ../jiffiloop
ant clean
ant build
cd ../molikin
and clean
ant build
cd ../rdcvis
ant clean
ant build
cd ../silk
ant clean
ant build
cd ../
cp ./chiropraxis/chiropraxis.jar ./king/plugins/.
cp ./cifless/cifless.jar ./king/plugins/.
cp ./cmdline/cmdline.jar ./king/plugins/.
cp ./dangle/dangle.jar./king/plugins/.
cp ./driftwood/driftwood.jar ./king/plugins/.
cp ./extratools/extratools.jar ./king/plugins/.
cp ./fftoys/fftoys.jar ./king/plugins/.
cp ./geometer/geometer.jar ./king/plugins/.
cp ./jiffiloop/jiffiloop.jar ./king/plugins/.
cp ./molikin/molikin.jar ./king/plugins/.
cp ./rdcvis/rdcvis.jar ./king/plugins/.
cp ./silk/silk.jar ./king/plugins/.
cd ./king
ant clean
ant build
|