-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
56 lines (44 loc) · 2.55 KB
/
build.xml
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
<project name="OrthoMCLModel" basedir=".">
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Dependencies oooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<import file="${projectsDir}/EbrcWebSvcCommon/build.xml" />
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Installation oooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="OrthoMCLModel-Installation" depends="EbrcWebSvcCommon-Installation,
OrthoMCLModel/Model-Installation">
<ant target="defaultProjectInstall">
<property name="project" value="OrthoMCLModel" />
</ant>
</target>
<!-- ooooooooooooooooooooooo Install Components ooooooooooooooooooooooo -->
<target name="OrthoMCLModel/Model-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="OrthoMCLModel" />
<property name="component" value="Model" />
</ant>
<!-- the following three commands generate the OrthoMCL ontology -->
<java failonerror="true" fork="true" classname="org.eupathdb.common.model.ontology.OwlClassGenerator">
<arg line="-path ${targetDir}/lib/wdk/ontology/ -inputFilename individuals.txt -outputFilename individuals.owl -ontoIRIstr 'http://purl.obolibrary.org/obo/eupath/category/individuals.owl'" />
<classpath>
<pathelement location="${targetDir}/lib/java/*" />
<pathelement location="${targetDir}/config/" />
</classpath>
</java>
<java failonerror="true" fork="true" classname="org.eupathdb.common.model.ontology.EuPathAnnotPropAdder">
<arg line="-path ${targetDir}/lib/wdk/ontology/ -inputFilename annotation.txt -outputFilename annotation.owl -ontoIRIstr 'http://purl.obolibrary.org/obo/eupath/category/annotation.owl'" />
<classpath>
<pathelement location="${targetDir}/lib/java/*" />
<pathelement location="${targetDir}/config/" />
</classpath>
</java>
<java failonerror="true" fork="true" classname="org.eupathdb.common.model.ontology.OntologyMerger">
<arg line="-path ${targetDir}/lib/wdk/ontology/ -inputFilename categories_full.owl -outputFilename categories_merged.owl" />
<classpath>
<pathelement location="${targetDir}/lib/java/*" />
<pathelement location="${targetDir}/config/" />
</classpath>
</java>
</target>
</project>