annotate obisort.xml @ 4:b6d9ea2fb41b draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
author iuc
date Wed, 20 Mar 2024 13:15:59 +0000
parents e614dcabd870
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
1 <tool id="obi_sort" name="obisort" version="@TOOL_VERSION@" profile="@PROFILE@">
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
2 <description>sorts sequence records according to the value of a given attribute</description>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
3 <macros>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
4 <import>macros.xml</import>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
5 </macros>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
6 <expand macro="bio_tools"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
7 <expand macro="requirements"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
8 <expand macro="stdio"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
9
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
10 <command><![CDATA[
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
11 @GUNZIP_INPUT@
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
12 obisort
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
13 --without-progress-bar
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
14 #if $key:
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
15 -k '$key'
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
16 #end if
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
17 ${reverse}
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
18 @INPUT_FORMAT@
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
19 @OUT_FORMAT@
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
20 input
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
21 @GZIP_OUTPUT@
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
22 > '$output'
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
23 @GENERATE_GALAXY_JSON@
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
24 ]]></command>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
25 <inputs>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
26 <param name="input" type="data" format="@INPUT_FORMATS@,txt,tabular" label="Input sequences file"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
27 <param
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
28 name="key"
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
29 type="text"
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
30 label="Key"
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
31 help="This key must be encoded in your FASTA/FASTQ headers as key=value. See help (below) for more information."
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
32 optional="false"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
33 <param name="reverse" type="boolean" checked="false" truevalue="-r" falsevalue="" label="Sort in reverse order?" />
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
34 <expand macro="input_format_options_macro"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
35 <expand macro="out_format_macro"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
36 </inputs>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
37 <outputs>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
38 <data format="auto" name="output"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
39 </outputs>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
40 <tests>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
41 <test expect_num_outputs="1">
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
42 <param name="input" value="output_obiclean_advanced.fasta" />
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
43 <param name="key" value="count"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
44 <param name="reverse" value="False"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
45 <param name="out_format" value="fasta"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
46 <output name="output" file="output_obisort.fasta" ftype="fasta"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
47 </test>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
48 <test expect_num_outputs="1">
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
49 <param name="input" value="output_obiclean_advanced.fasta" />
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
50 <param name="key" value="count"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
51 <param name="reverse" value="True"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
52 <param name="out_format" value="fastq"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
53 <output name="output" file="output_obisort.fastq" ftype="fastqsanger"/>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
54 </test>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
55 </tests>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
56 <help><![CDATA[
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
57
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
58 .. class:: infomark
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
59
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
60 **What it does**
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
61
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
62 obisort sorts sequence records according to the value of a given attribute, which can be either numeric or alphanumeric.
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
63
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
64 @OBITOOLS_LINK@
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
65
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
66 **Inputs:**
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
67
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
68 For sorting by key, the input file must be in the
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
69 `OBITools FASTA/FASTQ format <https://pythonhosted.org/OBITools/attributes.html>`_.
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
70 If your file is an OBITools output, it should already be formatted correctly.
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
71
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
72 For FASTA files, your headers should look like this::
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
73
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
74 >my_sequence taxid=3456; direct=True; sample=A354; this is my pretty sequence
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
75 ACGTTGCAGTACGTTGCAGTACGTTGCAGTACGTTGCAGTACGTTGCAGTACGTTGCAGT
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
76 GTGCTGACGTTGCAGTACGTTGCAGTACGTTGCAGTACGTTGCAGTACGTTGCAGTGTTT
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
77 AACGACGTTGCAGTACGTTGCAGT
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
78
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
79 Where ``taxid``, ``direct``, and ``sample`` are keys that can be used for sorting.
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
80
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
81 If your sequences don't have title, you can format the headers with a trailing semicolon like so::
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
82
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
83 >my_sequence key1=value1;
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
84
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
85 For sorting OBITools output files, a list of OBITools sequence attributes are documented
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
86 `here <https://pythonhosted.org/OBITools/attributes.html#names-reserved-for-attributes>`_.
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
87
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
88 ]]>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
89 </help>
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
90 <expand macro="citation" />
b6d9ea2fb41b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
iuc
parents: 3
diff changeset
91 </tool>