annotate build.xml @ 2:6584dfcc7165 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 7704c7c172c1c511dc23a3e5babdf3bf8e5198eb
author iuc
date Wed, 07 Sep 2022 17:00:10 +0000
parents 7fb3bb1e221e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
6584dfcc7165 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 7704c7c172c1c511dc23a3e5babdf3bf8e5198eb
iuc
parents: 1
diff changeset
1 <tool id="odgi_build" name="odgi build" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
0
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
2 <description>construct a dynamic succinct variation graph</description>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
3 <macros>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
4 <import>macros.xml</import>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
5 </macros>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
2
6584dfcc7165 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 7704c7c172c1c511dc23a3e5babdf3bf8e5198eb
iuc
parents: 1
diff changeset
8 cp '$gfa' input.gfa &&
6584dfcc7165 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 7704c7c172c1c511dc23a3e5babdf3bf8e5198eb
iuc
parents: 1
diff changeset
9
0
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
10 odgi build
2
6584dfcc7165 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 7704c7c172c1c511dc23a3e5babdf3bf8e5198eb
iuc
parents: 1
diff changeset
11 -g input.gfa
0
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
12 -o '$odgi_output'
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
13 $sort
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
14 #if $to_gfa:
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
15 --to-gfa > '$gfa_output'
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
16 #end if
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
17 ]]></command>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
18 <inputs>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
19 <param argument="--gfa" type="data" format="gfa1" label="Construct the graph from this GFA input file" />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
20 <param argument="--sort" type="boolean" truevalue="--sort" falsevalue="" checked="false"
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
21 label="Topological sort the graph"
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
22 help="Apply generalized topological sort to the graph and set node ids to order." />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
23 <param argument="--to-gfa" type="boolean" truevalue="--to-gfa" falsevalue="" checked="false"
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
24 label="Output additional GFA file"
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
25 help="" />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
26 </inputs>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
27 <outputs>
1
7fb3bb1e221e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents: 0
diff changeset
28 <data name="odgi_output" format="odgi" label="${tool.name} on ${on_string}: odgi" />
7fb3bb1e221e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents: 0
diff changeset
29 <data name="gfa_output" format="gfa1" label="${tool.name} on ${on_string}: GFA">
0
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
30 <filter>to_gfa</filter>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
31 </data>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
32 </outputs>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
33 <tests>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
34 <test>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
35 <param name="gfa" value="t.gfa" />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
36 <param name="sort" value="true" />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
37 <param name="to_gfa" value="true" />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
38 <output name="odgi_output" file="note5_out.og" />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
39 <output name="gfa_output" file="note5.gfa" />
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
40 </test>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
41 </tests>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
42 <help><![CDATA[
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
43 optimized dynamic genome/graph implementation (odgi)
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
44 ----------------------------------------------------
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
45
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
46 Construct a dynamic succinct variation graph (build)
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
47 ]]></help>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
48 <expand macro="citations">
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
49 </expand>
0acf4893bee5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ commit 6de23fe4201ec9c2b209f00ae0e19962c232828c"
iuc
parents:
diff changeset
50 </tool>