comparison lordec_stat.xml @ 0:46caddb8b8eb

Imported from capsule None
author cmonjeau
date Fri, 05 Jun 2015 11:41:13 -0400
parents
children 86ac3b90e9f6
comparison
equal deleted inserted replaced
-1:000000000000 0:46caddb8b8eb
1 <tool id="lordecstat" name="lordecstat" version="0.5.3">
2 <description>is an efficient tool to generate statistics on solid and weak k-mers in PacBio corrected reads</description>
3 <requirements>
4 <requirement type="package" version="0.5.3">lordec</requirement>
5 </requirements>
6 <command>
7 lordec-stat
8 -2 $short_reads
9 -i $long_reads
10 -k $kmer_len
11 -s $solid_threshold
12 -S $stat_file
13 #if str( $advanced_options.advanced_options_selector) == "advanced"
14 -T $advanced_options.threads
15 #end if
16 2&gt;1
17 </command>
18
19 <inputs>
20 <!-- Input data files -->
21 <param name="short_reads" type="data" format="fasta,fastq.gz,fastq" label="short read FASTA/Q file" />
22 <param name="long_reads" type="data" format="fasta,fastq.gz,fastq" label="long read FASTA/Q file" help="PacBio reads files" />
23 <param name="kmer_len" type="integer" label="Size of kmers" value="31" help="Only uneven number"/>
24 <param name="solid_threshold" type="integer" label="solidity abundance threshold for k-mers" value="4" />
25
26 <conditional name="advanced_options">
27 <param name="advanced_options_selector" type="select" label="lordec stat advanced options">
28 <option value="default" selected="true">Default</option>
29 <option value="advanced">Advanced</option>
30 </param>
31 <when value="default"></when>
32 <when value="advanced">
33 <param name="threads" type="integer" label="number of threads" value="1" />
34 </when>
35 </conditional>
36
37 </inputs>
38
39 <outputs>
40 <data format="txt" name="stat_file" label="${tool.name} on ${on_string}: stat_file" />
41 </outputs>
42 <help>
43
44 **Description**
45 Program to generate statistics on solid and weak k-mers after correcting sequencing errors in PacBio reads using highly accurate short reads (e.g. Illumina).
46
47 LoRDEC outputs the corrected reads to the given file in FASTA format. The regions that remain weak after the correction are outputted in lower case characters and the solid regions are outputted in upper case characters.
48
49 -------
50
51 **Web site**
52
53 http://www.atgc-montpellier.fr/lordec/
54
55 -------
56
57 **Integrated by**
58
59 Yvan Le Bras and Cyril Monjeaud
60
61 GenOuest Bio-informatics Core Facility
62
63 UMR 6074 IRISA INRIA-CNRS-UR1 Rennes (France)
64
65 support@genouest.org
66
67 If you use this tool in Galaxy, please cite :
68
69 `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;`_
70
71 </help>
72 <citations>
73 <citation type="doi">10.1093/bioinformatics/btu538</citation>
74 <citation type="bibtex">@INPROCEEDINGS{JOBIM2013,
75 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.},
76 title = {Towards a Life Sciences Virtual Research Environment: An e-Science initiative in Western France},
77 booktitle = {JOBIM 2013 Proceedings},
78 year = {2013},
79 url = {https://www.e-biogenouest.org/resources/128},
80 pages = {97-106}
81 }</citation>
82 </citations>
83 </tool>