1 |
<!-- use this file if you want to run jannotatix locally to test its startup in your local webstart installation --> |
2 |
<!-- change the codebase attribute to your absolute path, I think relative paths are not possible in webstart--> |
3 |
<?xml version="1.0" encoding="utf-8"?> |
4 |
<jnlp spec="1.0+" codebase="file:/home/max/jbproject/Prombench" > |
5 |
<information> |
6 |
<title>Jannotatix </title> |
7 |
<vendor>Maximilian Haeussler</vendor> |
8 |
<homepage href="http://www.google.com"/> |
9 |
<description>A package for sequence analysis</description> |
10 |
<description kind="short">Runs motif discovery algorithms and more on your set of sequences</description> |
11 |
<!-- <icon kind="splash" href="splash.gif"/> --> |
12 |
<offline-allowed/> |
13 |
</information> |
14 |
<security> |
15 |
<all-permissions/> |
16 |
</security> |
17 |
<resources> |
18 |
<j2se version="1.4+"/> |
19 |
<property name="org.bioinformatics.jannotatix.OpenFastaUrl" value="http://www.bioinformatics.org/jannotatix/testfiles/test.fa" /> |
20 |
<property name="org.bioinformatics.jannotatix.OpenGffUrl" value="http://www.bioinformatics.org/jannotatix/testfiles/test.gff" /> |
21 |
<jar href="jannotatix.jar" /> |
22 |
</resources> |
23 |
<application-desc main-class="Startup.Startup" /> |
24 |
</jnlp> |