Mercurial > repos > iuc > mothur_make_contigs
annotate make.contigs.xml @ 3:0f563b96b60d draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
| author | iuc |
|---|---|
| date | Wed, 14 Feb 2018 09:54:16 -0500 |
| parents | 4cf175b57289 |
| children | b1b4240133f5 |
| rev | line source |
|---|---|
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
1 <tool profile="16.07" id="mothur_make_contigs" name="Make.contigs" version="@WRAPPER_VERSION@.0"> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
2 <description>Aligns paired forward and reverse fastq files to contigs as fasta and quality</description> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
3 <macros> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
5 </macros> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
6 <expand macro="requirements"/> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
7 <expand macro="stdio"/> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
8 <expand macro="version_command"/> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
9 <command><![CDATA[ |
|
3
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
10 @SHELL_OPTIONS@ |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
11 |
|
3
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
12 ## Symlinks creation or On the fly creation of a combo file |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
13 #if $input_type.type == 'list_collection' |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
14 #for $pair in $input_type.list_paired_collection: |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
15 ln -s ${pair.forward} `basename ${pair.forward}` && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
16 ln -s ${pair.reverse} `basename ${pair.reverse}` && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
17 echo -e "${pair.name}\t`basename ${pair.forward}`\t`basename ${pair.reverse}`" >> combo_fastq.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
18 #end for |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
19 #elif $input_type.type == 'simple_collection' |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
20 ln -s '$input_type.paired_collection.forward' ffastq.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
21 ln -s '$input_type.paired_collection.reverse' rfastq.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
22 #else |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
23 ln -s '$input_type.forward_fastq' ffastq.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
24 ln -s '$input_type.reverse_fastq' rfastq.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
25 #end if |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
26 |
|
3
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
27 #if $oligo.add == "yes": |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
28 ln -s '$oligo.oligos' oligo.oligos.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
29 ln -s '$oligo.findex' oligo.findex.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
30 ln -s '$oligo.rindex' oligo.rindex.dat && |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
31 #end if |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
32 |
|
3
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
33 echo 'make.contigs( |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
34 #if $input_type.type == 'list_collection': |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
35 file=combo_fastq.dat, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
36 #else: |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
37 ffastq=ffastq.dat, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
38 rfastq=rfastq.dat, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
39 #end if |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
40 align=$align, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
41 #if $oligo.add == "yes": |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
42 oligos=oligo.oligos.dat, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
43 bdiffs=$oligo.bdiffs, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
44 pdiffs=$oligo.pdiffs, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
45 tdiffs=$oligo.tdiffs, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
46 #if $oligo.findex: |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
47 findex=oligo.findex.dat, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
48 #end if |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
49 #if $oligo.rindex: |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
50 rindex=oligo.rindex.dat, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
51 #end if |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
52 #end if |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
53 match=$match, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
54 mismatch=$mismatch, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
55 gapopen=$gapopen, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
56 gapextend=$gapextend, |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
57 rename=$rename |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
58 processors='\${GALAXY_SLOTS:-8}' |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
59 )' |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
60 | sed 's/ //g' ## mothur trips over whitespace |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
61 | mothur |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
62 | tee mothur.out.log |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
63 ]]></command> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
64 <inputs> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
65 <conditional name="input_type"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
66 <param name="type" type="select" label="Select a way to provide forward and reverse fastq files ?" help=""> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
67 <option value="regular" selected="true">Two simple fastq files (forward and reverse)</option> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
68 <option value="simple_collection">One pair (paired collection)</option> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
69 <option value="list_collection">Multiple pairs - Combo mode (list:paired collection)</option> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
70 </param> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
71 <when value="regular"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
72 <param name="forward_fastq" type="data" format="fastq" label="Forward reads"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
73 <param name="reverse_fastq" type="data" format="fastq" label="Reverse reads"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
74 </when> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
75 <when value="simple_collection"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
76 <param name="paired_collection" type="data_collection" format="fastq" collection_type="paired" label="Fastq pair (collection)" help="Dataset collection made from a single pair of fastq files (forward + reverse)"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
77 </when> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
78 <when value="list_collection"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
79 <param name="list_paired_collection" type="data_collection" format="fastq" collection_type="list:paired" label="Fastq pairs (collection)" help="Dataset collection made from multiple pairs of fastq files" /> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
80 </when> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
81 </conditional> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
82 <param name="align" type="select" label="align - Select a pairwise alignment method" help=""> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
83 <option value="needleman" selected="true">needleman (default) </option> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
84 <option value="gotoh">gotoh</option> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
85 <option value="kmer">kmer</option> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
86 </param> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
87 <conditional name="oligo"> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
88 <param name="add" type="select" label="Trim with an oligos file?" help=""> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
89 <option value="no">no</option> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
90 <option value="yes">yes</option> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
91 </param> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
92 <when value="no"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
93 <when value="yes"> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
94 <param name="oligos" type="data" format="mothur.oligos" optional="true" label="oligos - barcodes and primers" |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
95 help="a file that can contain the sequences of the forward and reverse primers and barcodes and their sample identifier. Each line of the oligos file can start with the key words "forward", "reverse" and "barcode" or it can start with a "#" to tell mothur to ignore that line of the oligos file"/> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
96 <param name="bdiffs" type="integer" value="0" min="0" label="bdiffs - number of differences to allow in the barcode (default 0)"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
97 <param name="pdiffs" type="integer" value="0" min="0" label="pdiffs - number of differences to allow in the primer (default 0)"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
98 <param name="tdiffs" type="integer" value="0" min="0" label="tdiffs - total number of differences to allow in primer and barcode (default 0)"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
99 <param name="findex" type="data" format="fastq" optional="true" label="forward index file (fastq)"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
100 <param name="rindex" type="data" format="fastq" optional="true" label="revese index file (fastq)"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
101 </when> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
102 </conditional> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
103 <param name="match" type="integer" value="1" label="match - Pairwise alignment reward for a match"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
104 <param name="mismatch" type="integer" value="-1" label="mismatch - Pairwise alignment penalty for a mismatch"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
105 <param name="gapopen" type="integer" value="-2" label="gapopen - Pairwise alignment penalty for opening a gap"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
106 <param name="gapextend" type="integer" value="-1" label="gapextend - Pairwise alignment penalty for extending a gap"/> |
|
3
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
107 <param name="rename" type="boolean" checked="true" truevalue="True" falsevalue="False" label="Renames sequences" |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
108 help="reduce file sizes and greatly reduce the size of the column formatted distance matrix downstream. |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
109 Uses the rename.seqs command to rename which creates a map file so you can revert to original names at any time"/> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
110 </inputs> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
111 <outputs> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
112 <expand macro="logfile-output"/> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
113 <data name="fasta" format="fasta" from_work_dir="*fastq.trim.*.fasta" label="${tool.name} on ${on_string}: trim.contigs.fasta"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
114 <data name="qual" format="qual" from_work_dir="*fastq*.trim.*.qual" label="${tool.name} on ${on_string}: trim.contigs.qual"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
115 <data name="scrapfasta" format="fasta" from_work_dir="*fastq*.scrap.*.fasta" label="${tool.name} on ${on_string}: scrap.contigs.fasta"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
116 <data name="scrapqual" format="qual" from_work_dir="*fastq*.scrap.*.qual" label="${tool.name} on ${on_string}: scrap.contigs.qual"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
117 <data name="report" format="txt" from_work_dir="*fastq*.contigs.report" label="${tool.name} on ${on_string}: report"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
118 <data name="group" format="mothur.groups" from_work_dir="*fastq*.groups" label="${tool.name} on ${on_string}: group file"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
119 <filter>input_type['type'] == 'list_collection'</filter> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
120 </data> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
121 </outputs> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
122 <tests> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
123 <!-- Test with two regular files as input --> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
124 <test> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
125 <conditional name="input_type"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
126 <param name="type" value="regular"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
127 <param name="forward_fastq" value="Mock_S280_L001_R1_001_small.fastq" ftype="fastq"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
128 <param name="reverse_fastq" value="Mock_S280_L001_R2_001_small.fastq" ftype="fastq"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
129 </conditional> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
130 <output name="fasta" file="Mock_S280_L001_R1_001_small.trim.contigs.fasta" ftype="fasta"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
131 <output name="qual" file="Mock_S280_L001_R1_001_small.trim.contigs.qual" ftype="qual"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
132 <output name="report" file="Mock_S280_L001_R1_001_small.contigs.report" ftype="txt"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
133 <expand macro="logfile-test"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
134 </test> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
135 <!-- Test with a simple paired collection as input --> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
136 <test> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
137 <conditional name="input_type"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
138 <param name="type" value="simple_collection"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
139 <param name="paired_collection"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
140 <collection type="paired"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
141 <element name="forward" value="Mock_S280_L001_R1_001_small.fastq" /> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
142 <element name="reverse" value="Mock_S280_L001_R2_001_small.fastq" /> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
143 </collection> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
144 </param> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
145 </conditional> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
146 <output name="fasta" file="Mock_S280_L001_R1_001_small.trim.contigs.fasta" ftype="fasta"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
147 <output name="qual" file="Mock_S280_L001_R1_001_small.trim.contigs.qual" ftype="qual"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
148 <output name="report" file="Mock_S280_L001_R1_001_small.contigs.report" ftype="txt"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
149 <expand macro="logfile-test"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
150 </test> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
151 <!-- Test with a simple paired collection as input + extra parameters specified --> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
152 <test> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
153 <conditional name="input_type"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
154 <param name="type" value="simple_collection"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
155 <param name="paired_collection"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
156 <collection type="paired"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
157 <element name="forward" value="Mock_S280_L001_R1_001_small.fastq" /> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
158 <element name="reverse" value="Mock_S280_L001_R2_001_small.fastq" /> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
159 </collection> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
160 </param> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
161 </conditional> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
162 <param name="align" value="gotoh"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
163 <param name="match" value="2"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
164 <param name="mismatch" value="-2"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
165 <param name="gapopen" value="-3"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
166 <param name="gapextend" value="-2"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
167 <output name="fasta" md5="48e32c65bd9f064c5c0b4ea7695cabe9" ftype="fasta"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
168 <output name="qual" md5="1e7778cee0d86bfa2759a07bb4356165" ftype="qual"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
169 <output name="report" md5="5274725ef45890fd6da4650d5d536173" ftype="txt"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
170 <expand macro="logfile-test"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
171 </test> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
172 <!-- Test with a list:paired collection as input --> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
173 <test> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
174 <conditional name="input_type"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
175 <param name="type" value="list_collection"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
176 <param name="list_paired_collection"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
177 <collection type="list:paired"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
178 <element name="Pair1"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
179 <collection type="paired"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
180 <element name="forward" value="Mock_S280_L001_R1_001_small.fastq" /> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
181 <element name="reverse" value="Mock_S280_L001_R2_001_small.fastq" /> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
182 </collection> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
183 </element> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
184 <element name="Pair2"> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
185 <collection type="paired"> |
|
2
4cf175b57289
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 721531d2e9fd1e208a3fba8cfbe5dcd572599ca2
iuc
parents:
1
diff
changeset
|
186 <element name="forward" value="test_forward.fastq" /> |
|
4cf175b57289
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 721531d2e9fd1e208a3fba8cfbe5dcd572599ca2
iuc
parents:
1
diff
changeset
|
187 <element name="reverse" value="test_reverse.fastq" /> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
188 </collection> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
189 </element> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
190 </collection> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
191 </param> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
192 </conditional> |
|
2
4cf175b57289
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 721531d2e9fd1e208a3fba8cfbe5dcd572599ca2
iuc
parents:
1
diff
changeset
|
193 <output name="fasta" md5="91bd3b91adc6559182ad118b767f0a07" ftype="fasta"/> |
|
4cf175b57289
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 721531d2e9fd1e208a3fba8cfbe5dcd572599ca2
iuc
parents:
1
diff
changeset
|
194 <output name="qual" md5="7094d1ac82a40e9f89cc6cdf5e214da7" ftype="qual"/> |
|
4cf175b57289
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 721531d2e9fd1e208a3fba8cfbe5dcd572599ca2
iuc
parents:
1
diff
changeset
|
195 <output name="report" md5="96a07f664105e4ddcb645c7cd9f5d692" ftype="txt"/> |
|
4cf175b57289
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 721531d2e9fd1e208a3fba8cfbe5dcd572599ca2
iuc
parents:
1
diff
changeset
|
196 <output name="group" md5="ef83b393be4103f0b61a021234905210" ftype="mothur.groups"/> |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
197 <expand macro="logfile-test"/> |
|
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
198 </test> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
199 </tests> |
|
3
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
200 <help><![CDATA[ |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
201 |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
202 @MOTHUR_OVERVIEW@ |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
203 |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
204 **Command Documentation** |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
205 |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
206 The make.contigs_ command reads a forward fastq file and a reverse fastq file and outputs new fasta and quality files. |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
207 |
|
1
2de7963eb3ba
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit ea40e3d84e7850eb4226d6c85f709dcad18d4ba9
iuc
parents:
0
diff
changeset
|
208 .. _make.contigs: https://www.mothur.org/wiki/Make.contigs |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
209 |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
210 v.1.27.0: Updated to use Mothur 1.33. Added findex and rindex parmaeters, optionally used with the oligos file. |
|
3
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
211 |
|
0f563b96b60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
iuc
parents:
2
diff
changeset
|
212 ]]></help> |
|
0
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
213 <expand macro="citations"/> |
|
d9268e6b2ea0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
iuc
parents:
diff
changeset
|
214 </tool> |
