annotate dereplication.xml @ 1:8c4e2933a17a draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
author iuc
date Wed, 26 Aug 2015 13:34:22 -0400
parents fae6527990af
children f29e21388219
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
1 <tool id="vsearch_dereplication" name="VSearch dereplication" version="@VERSION@.1">
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
2 <description></description>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
3 <macros>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
4 <import>vsearch_macros.xml</import>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
5 </macros>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
6 <expand macro="requirements" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
7 <expand macro="stdio" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
8 <expand macro="version_command" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
9 <command>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
10 <![CDATA[
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
11 vsearch
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
12 @GENERAL@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
13 --derep_fulllength $infile
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
14 #if $maxuniquesize:
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
15 --maxuniquesize $maxuniquesize
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
16 #end if
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
17 #if $minuniquesize:
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
18 --minuniquesize $minuniquesize
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
19 #end if
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
20 --output $outfile
1
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
21 $sizein
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
22 $sizeout
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
23 --strand $strand
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
24 #if $topn:
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
25 --topn $topn
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
26 #end if
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
27 #if $uc:
1
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
28 --uc $uc_outfile
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
29 #end if
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
30 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
31 </command>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
32 <inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
33 <param name="infile" type="data" format="fasta" label="Select your FASTA file" help="(--derep_fulllength)" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
34 <expand macro="topn" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
35 <expand macro="sizein" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
36 <expand macro="sizeout" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
37 <expand macro="strand" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
38 <expand macro="uclust_like_output" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
39 <param name="minuniquesize" type="integer" value="" optional="True" label="Minimum abundance"
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
40 help="(--minuniquesize)"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
41 <param name="maxuniquesize" type="integer" value="" optional="True" label="Maximum abundance"
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
42 help="(--maxuniquesize)"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
43 </inputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
44 <outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
45 <data name="outfile" format="fasta" label="${tool.name} on ${on_string}" />
1
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
46 <data name="uc_outfile" format="fasta" label="${tool.name} on ${on_string}: UCLUST like output">
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
47 <filter>uc is True</filter>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
48 </data>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
49 </outputs>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
50 <tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
51 <test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
52 <param name="infile" value="AF091148_first_rep.fsa.bz2" ftype="fasta" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
53 <param name="strand" value="both" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
54 <param name="minuniquesize" value="1" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
55 <param name="maxuniquesize" value="100000" />
1
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
56 <param name="topn" value="10000" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
57 <output name="outfile" file="dereplication_result1.fasta" ftype="fasta" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
58 </test>
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
59 <test>
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
60 <param name="infile" value="AF091148_first_rep.fsa.bz2" ftype="fasta" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
61 <param name="strand" value="both" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
62 <param name="minuniquesize" value="1" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
63 <param name="maxuniquesize" value="100000" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
64 <param name="sizeout" value="--sizeout"/>
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
65 <param name="topn" value="" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
66 <output name="outfile" file="dereplication_result2.fasta" ftype="fasta" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
67 </test>
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
68 <test>
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
69 <param name="infile" value="AF091148_first_rep.fsa.bz2" ftype="fasta" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
70 <param name="strand" value="both" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
71 <param name="minuniquesize" value="1" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
72 <param name="maxuniquesize" value="100000" />
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
73 <param name="sizeout" value="--sizeout"/>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
74 <param name="topn" value="10000" />
1
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
75 <param name="uc" value="--uc" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
76 <output name="outfile" file="dereplication_result2.fasta" ftype="fasta" />
8c4e2933a17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch commit 95732e013ec4dfe5dae0b9ed81e9d7710cbaed9d
iuc
parents: 0
diff changeset
77 <output name="uc_outfile" file="dereplication_uc_result3.fasta" ftype="fasta" />
0
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
78 </test>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
79 </tests>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
80 <help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
81 <![CDATA[
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
82 **What it does**
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
83
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
84 Merge strictly identical sequences contained in filename. Identical sequences are
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
85 defined as having the same length and the same string of nucleotides (case insensitive,
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
86 T and U are considered the same).
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
87
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
88 Dereplication options
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
89 --derep_fulllength FILENAME dereplicate sequences in the given FASTA file
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
90 --maxuniquesize INT maximum abundance for output from dereplication
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
91 --minuniquesize INT minimum abundance for output from dereplication
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
92 --output FILENAME output FASTA file
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
93 --sizein read abundance annotation from input
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
94 --sizeout write abundance annotation to output
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
95 --strand dereplicate "plus" or "both" strands (plus)
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
96 --topn INT output just the n most abundant sequences
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
97 --uc FILENAME filename for UCLUST-like output
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
98
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
99
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
100 @EXTERNAL_DOCUMENTATION@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
101
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
102 -------
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
103
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
104 @REFERENCES@
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
105
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
106
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
107 ]]>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
108 </help>
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
109 <expand macro="citations" />
fae6527990af Imported from capsule None
iuc
parents:
diff changeset
110 </tool>