annotate get_pairs.xml @ 0:ac738de70427 draft default tip

planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
author genouest
date Mon, 10 Sep 2018 10:16:42 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
1 <tool id="get_pairs" name="Separate paired and unpaired reads" version="0.3" >
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
2 <!-- author : lecorguille@sb-roscoff.fr -->
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
3 <!-- date : 20-11-12 -->
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
4 <!-- adapted by abretaud -->
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
5
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
6 <description>from two fastq files</description>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
7
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
8 <requirements>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
9 <requirement type="package" version="3.6">python</requirement>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
10 </requirements>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
11
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
12 <command><![CDATA[
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
13 #if $library.type == 'paired':
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
14 python '$__tool_directory__/get_pairs.py' '$library.input_left' '$library.input_right'
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
15 #else if $library.type == 'paired_collection'
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
16 python '$__tool_directory__/get_pairs.py' '$library.input.forward' '$library.input.reverse'
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
17 #end if
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
18 ]]></command>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
19
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
20 <inputs>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
21 <conditional name="library">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
22 <param name="type" type="select" label="Input type">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
23 <option value="paired" selected="true">Independent datasets</option>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
24 <option value="paired_collection">Paired-end collection</option>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
25 </param>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
26
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
27 <when value="paired">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
28 <param name="input_left" type="data" format="fastqsanger" label="Forward reads" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
29 <param name="input_right" type="data" format="fastqsanger" label="Reverse reads" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
30 </when>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
31
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
32 <when value="paired_collection">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
33 <param name="input" format="fastqsanger" type="data_collection" collection_type="paired" label="Paired collection" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
34 </when>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
35
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
36 </conditional>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
37 </inputs>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
38
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
39 <outputs>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
40 <data format="fastqsanger" name="left_paired" from_work_dir="left.paired.fastq" label="${tool.name} on ${on_string}: paired forward" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
41 <data format="fastqsanger" name="right_paired" from_work_dir="right.paired.fastq" label="${tool.name} on ${on_string}: paired reverse" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
42 <data format="fastqsanger" name="left_unpaired" from_work_dir="left.unpaired.fastq" label="${tool.name} on ${on_string}: unpaired forward" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
43 <data format="fastqsanger" name="right_unpaired" from_work_dir="right.unpaired.fastq" label="${tool.name} on ${on_string}: unpaired reverse" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
44 </outputs>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
45 <tests>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
46 <test>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
47 <conditional name="library">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
48 <param name="input_left" value="r1.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
49 <param name="input_right" value="r2.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
50 </conditional>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
51 <output name="left_paired" file="r1_paired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
52 <output name="right_paired" file="r2_paired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
53 <output name="left_unpaired" file="r1_unpaired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
54 <output name="right_unpaired" file="r2_unpaired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
55 </test>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
56 <test>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
57 <conditional name="library">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
58 <param name="type" value="paired_collection" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
59 <param name="input">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
60 <collection type="paired">
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
61 <element name="forward" ftype="fastq" value="r1.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
62 <element name="reverse" ftype="fastq" value="r2.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
63 </collection>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
64 </param>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
65 </conditional>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
66 <output name="left_paired" file="r1_paired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
67 <output name="right_paired" file="r2_paired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
68 <output name="left_unpaired" file="r1_unpaired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
69 <output name="right_unpaired" file="r2_unpaired.fastq" />
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
70 </test>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
71 </tests>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
72
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
73 <help><![CDATA[
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
74 A tool to separate paired and unpaired reads from fastq datasets.
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
75 ]]></help>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
76 <citations>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
77 </citations>
ac738de70427 planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs commit 02689a4f03aff06ce7f56ffd329ad72befdc692c
genouest
parents:
diff changeset
78 </tool>