-
Notifications
You must be signed in to change notification settings - Fork 1
/
transl_to_rdf_vrpt_from_pdbml_gz.sh
executable file
·81 lines (47 loc) · 1.6 KB
/
transl_to_rdf_vrpt_from_pdbml_gz.sh
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
source ./scripts/env.sh
if [ ! -e $SAXON ] ; then
./scripts/update_extlibs.sh
fi
if [ ! -e $PDBX_VALIDATION_XSD ] ; then
( cd schema; ./update_schema.sh )
fi
err=vrpt2pdbml2rdf.err
if [ ! -e $VRPTX_PRIMITIVE_TYPE_MAPPING_XML ] ; then
java -jar $SAXON -s:$PDBX_VALIDATION_XSD -xsl:$XSD2PRIMITIVE_TYPE_MAPPING_XSL -o:$VRPTX_PRIMITIVE_TYPE_MAPPING_XML 2> $err || ( cat $err ; exit 1 )
rm -f $err
echo
echo Generated: $VRPTX_PRIMITIVE_TYPE_MAPPING_XML
fi
if [ ! -e $VRPTML2RDF_XSL ] ; then
java -jar $SAXON -s:$PDBX_VALIDATION_XSD -xsl:$VRPTX2VRPTML2RDF_XSL -o:$VRPTML2RDF_XSL 2> $err || ( cat $err ; exit 1 )
rm -f $err
echo
echo Generated: $VRPTML2RDF_XSL
fi
if [ ! -d $XML_VALID ] ; then
./scripts/merge_pdbml_info.sh
fi
mkdir -p $RDF_VALID
last=`find $RDF_VALID -mindepth 2 -name '*.rdf.gz' | wc -l 2> /dev/null`
total=`find $XML_VALID -mindepth 2 -name '*.xml.gz' | wc -l 2> /dev/null`
err=`find $RDF_VALID -mindepth 1 -name '*.err' | wc -l 2> /dev/null`
if [ $err != 0 ] || [ $total != $last ] ; then
echo
echo Translating compressed VRPT PDBML to VRPT/RDF...
pdbml_file_list=pdbml_gz_to_rdf_file_list
find $XML_VALID -mindepth 2 -name '*.xml.gz' > $pdbml_file_list
rm -f $RDF_VALID/*.lock $XML_VALID/*/*.xml
cat $pdbml_file_list | sort -R > $pdbml_file_list~
for proc_id in `seq 1 $MAXPROCS` ; do
./scripts/transl_to_rdf_vrpt_from_pdbml_gz_worker.sh -d $RDF_VALID -l $pdbml_file_list -n $proc_id"of"$MAXPROCS -t $total &
done
if [ $? != 0 ] ; then
echo $0 aborted.
exit 1
fi
wait
echo
rm -f $pdbml_file_list $pdbml_file_list~
fi
echo $RDF_VALID is up-to-date.