Mercurial > repos > gga > apollo_export
comparison export.xml @ 0:b4a85d0c85b8 draft
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo commit f745b23c84a615bf434d717c8c0e553a012f0268
author | gga |
---|---|
date | Mon, 11 Sep 2017 05:47:07 -0400 |
parents | |
children | 5559e41721c3 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b4a85d0c85b8 |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="export" name="Retrieve Data" version="3.0"> | |
3 <description>from Apollo into Galaxy</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"/> | |
8 <code file="webapollo.py"/> | |
9 <command detect_errors="aggressive"><![CDATA[ | |
10 python $__tool_directory__/export.py | |
11 | |
12 @ADMIN_AUTH@ | |
13 | |
14 @ORG_CN_OR_GUESS@ | |
15 | |
16 --gff "$gff_out" | |
17 --fasta "$fasta_out" | |
18 --json "$json_out" | |
19 | |
20 ]]></command> | |
21 <inputs> | |
22 <expand macro="cn_or_guess" /> | |
23 </inputs> | |
24 <outputs> | |
25 <data format="gff3" name="gff_out" label="Annotations from Apollo"/> | |
26 <data format="fasta" name="fasta_out" label="Sequence(s) from Apollo"/> | |
27 <data format="json" name="json_out" label="Metadata from Apollo"/> | |
28 </outputs> | |
29 <tests> | |
30 <test expect_failure="true"> | |
31 <conditional name="org_source"> | |
32 <param name="source_select" value="direct"/> | |
33 <param name="org_raw" value="Test org" /> | |
34 </conditional> | |
35 <conditional name="cn_source"> | |
36 <param name="source_select" value="all"/> | |
37 </conditional> | |
38 <expand macro="test_result" /> | |
39 </test> | |
40 </tests> | |
41 <help><![CDATA[ | |
42 **What it does** | |
43 | |
44 Exports the sequence data and annotations from Apollo. | |
45 | |
46 If you provide an Apollo JSON file as input to the Organism Common Name list, | |
47 this will enable extracting multiple organism's data at once from Apollo. | |
48 Beware that currently all gff3 and fasta responses are merged together. If you | |
49 have two separate organisms with identically named reference sequences, it will | |
50 not be possible to separate those out. | |
51 | |
52 @REFERENCES@ | |
53 ]]></help> | |
54 <expand macro="citations"/> | |
55 </tool> |