forked from egonw/cheminfbenchmark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfingerprint-config.xml
84 lines (79 loc) · 4.24 KB
/
fingerprint-config.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<testSuite name="CheminfoBench" xmlns="http://www.sun.com/japex/testSuite">
<param name="basedir" value="."/>
<param name="japex.classPath" value="build/classes"/>
<param name="japex.resultUnit" value="ms"/>
<param name="japex.warmupIterations" value="5"/>
<param name="japex.runIterations" value="25"/>
<param name="japex.reportsDirectory" value="build/reports"/>
<driverGroup name="SubgraphIsomorphism" xmlns="http://www.sun.com/japex/testSuite">
<driver name="CDK-1.2.x">
<param name="japex.driverClass" value="net.openmolecules.benchmark.driver.FingerprintCDKBench"/>
<param name="japex.classPath" value="${basedir}/lib/cdk-1.2.x-20090116.jar"/>
<param name="description" value="Benchmark of path based hashed fingperints based on 22 molecules.
Before fingerprints, atom typing and aromatcity perception is performed."/>
<param name="chemObjectBuilder"
value="org.openscience.cdk.DefaultChemObjectBuilder"/>
</driver>
<driver name="CDK-1.2.x-nonotify">
<param name="japex.driverClass" value="net.openmolecules.benchmark.driver.FingerprintCDKBench"/>
<param name="japex.classPath" value="${basedir}/lib/cdk-1.2.x-20090116.jar"/>
<param name="description" value="Benchmark of path based hashed fingperints based on 22 molecules.
Before fingerprints, atom typing and aromatcity perception is performed."/>
<param name="chemObjectBuilder"
value="org.openscience.cdk.nonotify.NoNotificationChemObjectBuilder"/>
</driver>
<driver name="CDK-trunk-13858">
<param name="japex.driverClass" value="net.openmolecules.benchmark.driver.FingerprintCDKBench"/>
<param name="japex.classPath" value="${basedir}/lib/cdk-1.3.x-20091008.jar"/>
<param name="description" value="Benchmark of path based hashed fingperints based on 22 molecules
Before fingerprints, atom typing and aromaticity perception is performed"/>
<param name="chemObjectBuilder"
value="org.openscience.cdk.DefaultChemObjectBuilder"/>
</driver>
<driver name="CDK-trunk-13858-nonotify">
<param name="japex.driverClass" value="net.openmolecules.benchmark.driver.FingerprintCDKBench"/>
<param name="japex.classPath" value="${basedir}/lib/cdk-1.3.x-20091008.jar"/>
<param name="description" value="Benchmark of path based hashed fingperints based on 22 molecules
Before fingerprints, atom typing and aromaticity perception is performed"/>
<param name="chemObjectBuilder"
value="org.openscience.cdk.nonotify.NoNotificationChemObjectBuilder"/>
</driver>
</driverGroup>
<testCase name="test1">
<param name="japex.inputFile" value="data/fingerprint.txt" />
<param name="fplength" value="1024" />
<param name="fpdepth" value="4" />
<param name="type" value="standard" />
</testCase>
<testCase name="test2">
<param name="japex.inputFile" value="data/fingerprint.txt" />
<param name="fplength" value="1024" />
<param name="fpdepth" value="6" />
<param name="type" value="standard" />
</testCase>
<testCase name="test3">
<param name="japex.inputFile" value="data/fingerprint.txt" />
<param name="fplength" value="1024" />
<param name="fpdepth" value="8" />
<param name="type" value="standard" />
</testCase>
<testCase name="test4">
<param name="japex.inputFile" value="data/fingerprint.txt" />
<param name="fplength" value="1024" />
<param name="fpdepth" value="4" />
<param name="type" value="extended" />
</testCase>
<testCase name="test5">
<param name="japex.inputFile" value="data/fingerprint.txt" />
<param name="fplength" value="1024" />
<param name="fpdepth" value="6" />
<param name="type" value="extended" />
</testCase>
<testCase name="test6">
<param name="japex.inputFile" value="data/fingerprint.txt" />
<param name="fplength" value="1024" />
<param name="fpdepth" value="8" />
<param name="type" value="extended" />
</testCase>
</testSuite>