comparison gbk2rdf.xml @ 35:fa736576c7ed draft

planemo upload commit 16d0bc526ad02361a7c13231d4c50479c42d8d0f-dirty
author jjkoehorst
date Mon, 04 Jul 2016 10:37:59 -0400
parents
children 2201c5d61f16
comparison
equal deleted inserted replaced
34:f2cbf1230026 35:fa736576c7ed
1 <tool id="DGBK2RDF" name="EMBL/GBK to RDF" version="0.1">
2 <description>Converts GenBank/EMBL files to RDF</description>
3 <requirements>
4 <container type="docker">jjkoehorst/sappdocker:GBK2RDF</container>
5 </requirements>
6 <command>java -jar /genbank2rdf/GenBank2RDF-0.0.1-SNAPSHOT-jar-with-dependencies.jar '-input' '$input' -output '$output' -source "$source" -format "$format" -identifier "${input.name}" -codon "$codon" </command>
7 <inputs>
8 <param format="gbk,gb,genbank" label="Genbank file" name="input" type="data"/>
9 <param label="EMBL/GBK" name="format" type="select">
10 <option value="gbk">Genbank</option>
11 <option selected="true" value="embl">EMBL</option>
12 </param>
13 <param label="11/4" name="codon" type="select">
14 <option selected="true" value="11">11</option>
15 <option value="4">4</option>
16 </param>
17 <param label="Source of annotation eg. RAST/NCBI/EBI" name="source" optional="false" type="text"/>
18 </inputs>
19 <outputs>
20 <data format="ttl" label="GBKttl: ${input.name}" name="output"/>
21 </outputs>
22 <help>Java Genbank or EMBL to RDF conversion
23 </help>
24 </tool>