Mercurial > repos > iuc > khmer_partition
comparison do-partition.xml @ 0:1413823dce99 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/khmer/ commit be9a20423d1a6ec33d59341e0e61b535127bbce2
author | iuc |
---|---|
date | Wed, 11 Nov 2015 09:45:18 -0500 |
parents | |
children | 09779cc94f94 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1413823dce99 |
---|---|
1 <tool id="khmer_partition" name="Sequence partition all-in-one" version="@WRAPPER_VERSION@.0"> | |
2 <description>Load, partition, and annotate FAST[AQ] sequences</description> | |
3 <macros> | |
4 <token name="@BINARY@">do-partition.py</token> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements" /> | |
8 <expand macro="stdio" /> | |
9 <expand macro="version" /> | |
10 <command><![CDATA[ | |
11 set -xu && | |
12 #for $num, $input in enumerate($inputs) | |
13 ln -s ${input} sequence-${num} && | |
14 #end for | |
15 mkdir -p output && cd output && | |
16 @BINARY@ | |
17 @TABLEPARAMS@ | |
18 @THREADS@ | |
19 output | |
20 ../sequence-* | |
21 ]]> | |
22 </command> | |
23 <inputs> | |
24 <expand macro="input_sequences_filenames" /> | |
25 <expand macro="tableinputs" /> | |
26 </inputs> | |
27 <outputs> | |
28 <data name="information" format="txt" from_work_dir="output.info" label="${tool.name} summary." /> | |
29 <collection name="annotated_sequence_files" type="list"> | |
30 <discover_datasets pattern="__name__" directory="output" /> | |
31 </collection> | |
32 </outputs> | |
33 <tests> | |
34 <test> | |
35 <param name="inputs" value="random-20-a.fa"/> | |
36 <output_collection name="annotated_sequence_files" type="list"> | |
37 <element name="sequence-0.part" file="random-20-a.fa.part" /> | |
38 </output_collection> | |
39 </test> | |
40 </tests> | |
41 <help><![CDATA[ | |
42 Load in a set of sequences, partition them, merge the partitions, and | |
43 annotate the original sequences files with the partition information. | |
44 | |
45 This script combines the functionality of `load-graph.py`, | |
46 `partition-graph.py`, `merge-partitions.py`, and | |
47 `annotate-partitions.py` into one script. This is convenient | |
48 but should probably not be used for large data sets, because | |
49 `do-partition.py` doesn't provide save/resume functionality. | |
50 ]]> | |
51 </help> | |
52 <citations> | |
53 <expand macro="software-citation" /> | |
54 <expand macro="graph-citation" /> | |
55 </citations> | |
56 </tool> |