annotate auto.xml @ 0:f41d29b1a43e draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
author iuc
date Tue, 05 Aug 2025 09:20:38 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
1 <tool id="pimento_auto" name="PIMENTO Primer cutoff prediction" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" license="@LICENSE@">
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
2 <description>Infers primers by predicting optimal cutoff points from read conservation patterns</description>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
3 <macros>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
4 <import>macros.xml</import>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
5 </macros>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
6 <expand macro="creators"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
8 <command detect_errors="aggressive"><![CDATA[
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
9 pimento auto -i '$input' -st '$strand' -o sample
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
10 ]]></command>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
11 <inputs>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
12 <param name="input" type="data" label="Input reads" format="fastqsanger.gz"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
13 <param name="strand" type="select" label="Strand" format="fastqsanger.gz">
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
14 <option value="F">Forward</option>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
15 <option value="R">Reverse</option>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
16 <option value="FR">Both, forward and reverse</option>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
17 </param>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
18 </inputs>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
19 <outputs>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
20 <data name="output" label="${tool.name} on ${on_string}: Automatically inferred primers" format="fasta" from_work_dir="sample_auto_primers.fasta"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
21 </outputs>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
22 <tests>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
23 <test expect_num_outputs="1">
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
24 <param name="input" value="test.fastq.gz"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
25 <param name="strand" value="FR"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
26 <output name="output">
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
27 <assert_contents>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
28 <has_line line=">F_auto"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
29 <has_line line="CCTACGGGDGGCWGCAGT"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
30 <has_n_lines n="4"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
31 </assert_contents>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
32 </output>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
33 </test>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
34 </tests>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
35 <help><![CDATA[
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
36 Runs the primer cutoff strategy for primer inference. Using patterns of
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
37 base-conservation values for input reads, this strategy identifies potential
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
38 cutoff points where a primer sequence could end. An optimal choice of cutoff
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
39 based on the change in base-conservation before and after a cutoff is then
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
40 made. Finally a consensus sequence is generated using this cutoff point and
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
41 the input reads, which are saved to an output FASTA file.
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
42 ]]></help>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
43 <expand macro="citations"/>
f41d29b1a43e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/pimento commit 69888afa40f5ac6a42fa9335cf61f0bb6387eb2f
iuc
parents:
diff changeset
44 </tool>