Skip to content

Commit 8410b82

Browse files
committed
generic regin creator that reads tab separated files and creates xgmml files based on config file
1 parent 4b99fd9 commit 8410b82

21 files changed

+1174
-5
lines changed

.gitignore

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
*.class
2-
3-
# Package Files #
4-
*.jar
5-
*.war
6-
*.ear
2+
GenericCreator/.settings*
3+
GenericCreator/dist*
4+
.metadata*

GenericCreator/.classpath

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
5+
<classpathentry kind="lib" path="lib/jdom.jar"/>
6+
<classpathentry kind="lib" path="lib/jewelcli-0.6.jar"/>
7+
<classpathentry kind="lib" path="lib/derby.jar"/>
8+
<classpathentry kind="lib" path="lib/org.bridgedb.bio.jar"/>
9+
<classpathentry kind="lib" path="lib/org.bridgedb.jar"/>
10+
<classpathentry kind="lib" path="lib/org.bridgedb.rdb.jar"/>
11+
<classpathentry kind="output" path="bin"/>
12+
</classpath>

GenericCreator/.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>GenericCreator</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

GenericCreator/build.xml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0"?>
2+
<project name="CyTargetLinker conversion scripts" default="dist" basedir=".">
3+
<property name="src.dir" value="src"/>
4+
<property name="build.dir" value="build"/>
5+
<property name="lib.dir" value="lib"/>
6+
<property name="dist.dir" value="dist"/>
7+
<property name="jar.name" value="conversion.jar"/>
8+
9+
<path id="class.path">
10+
<fileset dir="lib">
11+
<include name="*.jar"/>
12+
</fileset>
13+
</path>
14+
15+
<target name="prepare">
16+
<mkdir dir="${build.dir}"/>
17+
<mkdir dir="${dist.dir}"/>
18+
</target>
19+
20+
<target name="clean" description="Remove all generated files.">
21+
<delete dir="${build.dir}"/>
22+
<delete dir="${dist.dir}"/>
23+
<delete file="${jar.name}"/>
24+
</target>
25+
26+
<target name="compile" depends="prepare" description="Compile sources">
27+
<javac srcdir="${src.dir}"
28+
includes="**"
29+
destdir="${build.dir}"
30+
debug="true"
31+
source="1.5">
32+
<classpath refid="class.path"/>
33+
</javac>
34+
</target>
35+
36+
<target name="jar" depends="compile" description="Generates executable jar file">
37+
<pathconvert refid="class.path" property="class.path.manifest" pathsep=" ">
38+
<mapper>
39+
<chainedmapper>
40+
<!-- remove absolute path -->
41+
<flattenmapper />
42+
<!-- add lib/ prefix -->
43+
<globmapper from="*" to="lib/*" />
44+
</chainedmapper>
45+
</mapper>
46+
</pathconvert>
47+
<jar jarfile="${jar.name}">
48+
<manifest>
49+
<attribute name="Class-Path" value="${class.path.manifest}"/>
50+
<attribute name="Main-Class" value="org.regin.creator.GenericCreator"/>
51+
</manifest>
52+
53+
<fileset dir="${build.dir}" includes="**/*"/>
54+
<fileset dir="${src.dir}" includes="**/*.groovy"/>
55+
</jar>
56+
</target>
57+
58+
<target name="dist" depends="jar" description="Copies jar and external libraries to dist path">
59+
<copy file="${jar.name}" toDir="${dist.dir}"/>
60+
<copy toDir="${dist.dir}/lib">
61+
<fileset dir="${lib.dir}">
62+
<include name="**/*.jar"/>
63+
</fileset>
64+
</copy>
65+
<delete file="${jar.name}"/>
66+
</target>
67+
</project>

GenericCreator/derby.log

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
----------------------------------------------------------------
2+
2013-10-31 14:35:33.121 GMT:
3+
Booting Derby version The Apache Software Foundation - Apache Derby - 10.4.2.0 - (689064): instance a816c00e-0142-0ef0-d2d9-0000032e68f8
4+
on database directory jar:(/home/martina/Data/Pathvisio/databases/mirbase-v19.bridge)database in READ ONLY mode
5+
6+
Database Class Loader started - derby.database.classpath=''
7+
----------------------------------------------------------------
8+
2013-10-31 14:35:33.768 GMT:
9+
Booting Derby version The Apache Software Foundation - Apache Derby - 10.4.2.0 - (689064): instance 582f8014-0142-0ef0-d2d9-0000032e68f8
10+
on database directory jar:(/home/martina/Data/Pathvisio/databases/Hs_Derby_20130701.bridge)database in READ ONLY mode
11+
12+
Database Class Loader started - derby.database.classpath=''

GenericCreator/lib/derby.jar

2.45 MB
Binary file not shown.

GenericCreator/lib/jdom.jar

149 KB
Binary file not shown.

GenericCreator/lib/jewelcli-0.6.jar

59.6 KB
Binary file not shown.
21.6 KB
Binary file not shown.

GenericCreator/lib/org.bridgedb.jar

33.6 KB
Binary file not shown.
21.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)