comparison commet.xml @ 0:10dc665d6b03 default tip

first commit
author ylebras
date Wed, 18 Nov 2015 14:12:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:10dc665d6b03
1 <tool id="commet_docker" name="commet" version="24.7.14">
2 <description>COmpare Multiple METagenomes</description>
3 <requirements>
4 <container type="docker">ylebras/commet_galaxy</container>
5 </requirements>
6 <command >
7 commet.py
8 #for $set in $sets
9 --set ${set.setname}::${set.reads}
10 #end for
11 -k $kmer
12 -t $minsharedkmer
13 -l $minlengthread
14 -e $minshannonindex
15 #if str( $options_advanced.options_advanced_selector ) == "advanced"
16 -m $options_advanced.maxreads
17 -n $options_advanced.maxn
18 #end if
19 --output_vectors $output_vectors
20 --output_dendro $output_dendro
21 --output_matrix $output_matrix
22 --output_logs $output_logs
23 --output_heatmap1 $output_heatmap1
24 --output_heatmap2 $output_heatmap2
25 --output_heatmap3 $output_heatmap3
26 </command>
27
28 <inputs>
29 <!-- Input data files -->
30 <repeat name="sets" title="Read sets" min="1">
31 <param name="reads" type="data" multiple="true" format="fasta, fastq, fastq.gz" label="Dataset" help="Accept fasta/fastq/fastq.gz"/>
32 <param name="setname" type="text" label="Set name" value="set_name" help="Please don't use spaces or special characters"/>
33 </repeat>
34 <param name="kmer" type="integer" label="Size of kmers" value="33" help="Set the length of used kmers." />
35 <param name="minsharedkmer" type="integer" label="Mini shared kmers" value="2" help="Minimal number of shared kmers." />
36 <param name="minlengthread" type="integer" label="Read mini length" value="0" help="Minimal length a read should have to be kept." />
37 <param name="minshannonindex" type="float" label="Mini Shannon index" value="0" help="Minimal Shannon index a read should have to be kept. Float in [0,2.32]" />
38 <conditional name="options_advanced">
39 <param name="options_advanced_selector" type="select" label="Reads filter options" help="by default, all reads are kept with no Ns limitation">
40 <option value="default" selected="true">default</option>
41 <option value="advanced">advanced</option>
42 </param>
43 <when value="advanced">
44 <param name="maxreads" type="integer" value="600" label="Maximum number of selected reads in sets" help="Maximum number of selected reads in sets. If a set is composed by 3 read files, and this option = 600, then the first 200 reads from each read file will be treated" />
45 <param name="maxn" type="integer" value="5" label="Read maxi number of Ns" help="Maximal number of Ns a read should contain to be kept." />
46 </when>
47 </conditional>
48 </inputs>
49 <outputs>
50 <data format="zip" name="output_vectors" label="${tool.name} on ${on_string}: vector.zip" />
51 <data format="zip" name="output_logs" label="${tool.name} on ${on_string}: logs.zip" />
52 <data format="png" name="output_dendro" label="${tool.name} on ${on_string}: dendrogram.png" />
53 <data format="zip" name="output_matrix" label="${tool.name} on ${on_string}: matrix.zip" />
54 <data format="png" name="output_heatmap1" label="${tool.name} on ${on_string}: heatmap_normalized.png" />
55 <data format="png" name="output_heatmap2" label="${tool.name} on ${on_string}: heatmap_percentage.png" />
56 <data format="png" name="output_heatmap3" label="${tool.name} on ${on_string}: heatmap_plain.png" />
57 </outputs>
58 <stdio>
59 <exit_code range="1" level="fatal" description="Error in Commet execution" />
60 </stdio>
61 <help>
62
63 **Description**
64
65 COMMET (COmpare Multiple METagenomes”) provides a global similarity overview between all datasets of a large metagenomic project.
66
67 Directly from non-assembled reads, all against all comparisons are performed through an efficient indexing strategy. Then, results are stored as bit vectors, a compressed representation of read files, that can be used to further combine read subsets by common logical operations. Finally, COMMET computes a clusterization of metagenomic datasets, which is visualized by dendrogram and heatmaps.
68
69
70 -------
71
72 **Web site**
73
74 http://colibread.inria.fr/commet/
75
76 -------
77
78 **Integrated by**
79
80 Yvan Le Bras and Cyril Monjeaud
81
82 GenOuest Bio-informatics Core Facility
83
84 UMR 6074 IRISA INRIA-CNRS-UR1 Rennes (France)
85
86 support@genouest.org
87
88 If you use this tool in Galaxy, please cite :
89
90 `Y. Le Bras, A. Roult, C. Monjeaud, M. Bahin, O. Quenez, C. Heriveau, A. Bretaudeau, O. Sallou, O. Collin, Towards a Life Sciences Virtual Research Environment : an e-Science initiative in Western France. JOBIM 2013. &lt;https://www.e-biogenouest.org/resources/128&gt;`_
91
92
93 </help>
94 <citations>
95 <citation type="doi">10.1186/1471-2105-13-S19-S10</citation>
96 <citation type="bibtex">@INPROCEEDINGS{JOBIM2013,
97 author = {Le Bras, Y. and ROULT, A. and Monjeaud, C. and Bahin, M. and Quenez, O. and Heriveau, C. and Bretaudeau, A. and Sallou, O. and Collin, O.},
98 title = {Towards a Life Sciences Virtual Research Environment: An e-Science initiative in Western France},
99 booktitle = {JOBIM 2013 Proceedings},
100 year = {2013},
101 url = {https://www.e-biogenouest.org/resources/128},
102 pages = {97-106}
103 }
104 </citation>
105 </citations>
106
107 </tool>
108