File: CreateDictObjFile.csh

package info (click to toggle)
librcsb-core-wrapper 1.005-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,576 kB
  • sloc: xml: 122,915; cpp: 25,250; ansic: 3,736; makefile: 1,033; sh: 772; lex: 294; yacc: 235; perl: 213; python: 121; csh: 30
file content (31 lines) | stat: -rwxr-xr-x 432 bytes parent folder | download | duplicates (6)
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
#!/bin/csh -f
#
# File: CreateDictObjFile.csh
# Date: 15-April-2004  J. Westbrook
#

if ("$1" == "" ) then 
   echo "Usage:  $0 <Dictionary name (e.g. mmcif_pdbx)>"
   exit 1
endif

set d = "$1"

if (! -e sdb/$d.sdb ) then 
   echo "Missing dictionary SDB file sdb/$d.sdb"
   exit 1
endif

cd odb

set log = "$d.log"

rm -f ./$d.odb

../bin/DictObjFileCreator -dictSdbFile ../sdb/$d.sdb -o $d.odb >& $log

chmod 644 $d.odb

cd -

#