annotate groot.xml @ 0:fbe36cf83eb7 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
author iuc
date Fri, 18 Oct 2024 08:19:14 +0000
parents
children eea643713525
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
1 <tool id="groot" name="Groot" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
2 <description> align reads to references and weight variation graphs and generate report</description>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
3 <macros>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
4 <token name="@TOOL_VERSION@">1.1.2</token>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
5 <token name="@VERSION_SUFFIX@">0</token>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
6 <token name="@PROFILE@">22.05</token>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
7 </macros>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
8 <xrefs>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
9 <xref type="bio.tools">groot</xref>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
10 </xrefs>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
11 <requirements>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
12 <requirement type="package" version="@TOOL_VERSION@">groot</requirement>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
13 </requirements>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
14 <command detect_errors="exit_code"><![CDATA[
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
15 set -x pipefail;
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
16 #set $extension = str($fastq.ext)
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
17 ln -s -f '${fastq}' 'input.${extension}' &&
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
18 groot index
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
19 --msaDir '$groot_db_select.fields.path'
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
20 --indexDir 'grootIndex'
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
21 --windowSize $windowSize
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
22 --kmerSize $kmerSize
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
23 --maxK $maxK
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
24 --maxSketchSpan $maxSketchSpan
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
25 --numPart $numPart
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
26 --sketchSize $sketchSize
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
27 &&
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
28
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
29 groot align
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
30 --fastq 'input.${extension}'
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
31 --indexDir 'grootIndex'
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
32 --contThresh $contThresh
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
33 --minKmerCov $minKmerCov
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
34 --log '$log'
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
35 $noAlign
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
36 --processors "\${GALAXY_SLOTS:-1}"
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
37
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
38 | groot report
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
39 --covCutoff '$covCutoff'
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
40 $lowCov
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
41 > '$report_out'
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
42
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
43 ]]></command>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
44 <inputs>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
45 <param argument="--fastq" type="data" format="fastqsanger,fastqsanger.gz" label="FASTQ file(s) to align"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
46 <section name="index" title="Index">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
47 <param name="groot_db_select" type="select" label="Groot database">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
48 <options from_data_table="groot_database">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
49 <validator message="No groot database is available" type="no_options"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
50 </options>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
51 </param>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
52 <param argument="--windowSize" type="integer" min="0" value="100" label="Size of window to sketch graph traversals" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
53 <param argument="--kmerSize" type="integer" min="0" value="31" label="Size of k-mer" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
54 <param argument="--maxK" type="integer" min="0" value="40" label="maxK in the LSH Ensemble" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
55 <param argument="--maxSketchSpan" type="integer" min="0" value="4" label="Maximum number of identical neighbouring sketches permitted in any graph traversal" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
56 <param argument="--numPart" type="integer" min="0" value="8" label="Number of partitions in the LSH Ensemble" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
57 <param argument="--sketchSize" type="integer" min="0" value="21" label="Size of MinHash sketch" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
58 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
59 <section name="align" title="Align">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
60 <param argument="--contThresh" type="float" min="0" max="1.0" value="0.99" label="Containment threshold for the LSH ensemble" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
61 <param argument="--minKmerCov" type="integer" min="0" value="1" label="Minimum number of k-mers covering each base of a graph segment" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
62 <param argument="--noAlign" type="boolean" truevalue="" falsevalue="--noAlign" label="Perform exact alignment?"
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
63 help="If not, graphs will still be weighted using approximate read mappings"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
64 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
65 <section name="report" title="Report">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
66 <param argument="--covCutoff" type="float" min="0" max="1.0" value="0.97" label="Coverage cutoff for reporting ARGs" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
67 <param argument="--lowCov" type="boolean" checked="false" truevalue="--lowCov" falsevalue="" label="Report ARGs which may not be covered at the 5'/3' ends"
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
68 help="If 'Yes', overrides --covCutoff option"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
69 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
70 </inputs>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
71 <outputs>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
72 <data name="log" format="txt" label="${tool.name} on ${on_string}: Log"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
73 <data name="report_out" format="tabular" label="${tool.name} on ${on_string}: Report"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
74 </outputs>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
75 <tests>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
76 <test expect_num_outputs="2">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
77 <param name="fastq" value="bla-b7-150bp-5x.fq" ftype="fastq"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
78 <section name="index">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
79 <param name="groot_db_select" value="resfinder.90" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
80 <param name="windowSize" value="150"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
81 <param name="kmerSize" value="31"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
82 <param name="maxK" value="20"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
83 <param name="maxSketchSpan" value="30"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
84 <param name="numPart" value="8"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
85 <param name="sketchSize" value="20"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
86 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
87 <section name="align">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
88 <param name="contThresh" value="0.99"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
89 <param name="minKmerCov" value="1" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
90 <param name="noAlign" value=""/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
91 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
92 <section name="report">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
93 <conditional name="arg_report">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
94 <param name="criteria" value="cutoff" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
95 <param name="covCutoff" value="0.97" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
96 </conditional>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
97 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
98 <output name="report_out" ftype="tabular">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
99 <assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
100 <has_text text="blaB-7_1_AF189304"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
101 <has_n_lines n="1"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
102 <has_n_columns n="4"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
103 </assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
104 </output>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
105 <output name="log" ftype="txt">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
106 <assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
107 <has_text text="version"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
108 <has_text text="1.1.2"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
109 </assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
110 </output>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
111 </test>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
112 <test expect_num_outputs="2">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
113 <param name="fastq" value="argannot_light-150bp-10000-reads.fq.gz" ftype="fastq.gz"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
114 <section name="index">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
115 <param name="groot_db_select" value="arg-annot.90" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
116 <param name="windowSize" value="150"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
117 <param name="kmerSize" value="41"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
118 <param name="maxK" value="4"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
119 <param name="maxSketchSpan" value="30"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
120 <param name="numPart" value="8"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
121 <param name="sketchSize" value="21"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
122 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
123 <section name="align">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
124 <param name="contThresh" value="0.99"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
125 <param name="minKmerCov" value="1" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
126 <param name="noAlign" value=""/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
127 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
128 <section name="report">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
129 <param name="covCutoff" value="0.97" />
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
130 <param name="lowCov" value="True"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
131 </section>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
132 <output name="report_out" ftype="tabular">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
133 <assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
134 <has_text text="argannot~~~(Bla)VIM-9~~~AY524988:1-801"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
135 <has_text text="argannot~~~(Bla)VIM-20~~~GQ414736:1-801"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
136 <has_n_lines n="5"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
137 <has_n_columns n="4"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
138 </assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
139 </output>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
140 <output name="log" ftype="txt">
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
141 <assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
142 <has_text text="version"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
143 <has_text text="1.1.2"/>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
144 </assert_contents>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
145 </output>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
146 </test>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
147 </tests>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
148 <help><![CDATA[
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
149 **What it does**
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
150
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
151 GROOT is a tool to profile Antibiotic Resistance Genes (ARGs) in metagenomic samples.
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
152
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
153 The method combines variation graph representation of gene sets with an LSH Forest
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
154 indexing scheme to allow for fast classification of metagenomic reads using
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
155 similarity-search queries. Subsequent hierarchical local alignment of classified reads
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
156 against graph traversals facilitates accurate reconstruction of full-length gene sequences
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
157 using a scoring scheme.
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
158
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
159 The main advantages of GROOT over existing tools are:
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
160
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
161 - quick classification of reads to candidate ARGs
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
162 - accurate annotation of full-length ARGs
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
163 - can run on a laptop in minutes
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
164
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
165 GROOT aligns reads to ARG variation graphs, producing an alignment file that contains
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
166 the graph traversals possible for each query read. The alignment file is then used to
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
167 generate a simple resistome profile report.
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
168
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
169 **Output**
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
170
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
171 GROOT will output an ARG alignment file (in BAM format) that contains the graph traversals possible for each query read; the alignment file is then used by GROOT to generate a resistome profile.
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
172
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
173 ]]></help>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
174 <citations>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
175 <citation type="doi">10.1093/bioinformatics/bty387</citation>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
176 </citations>
fbe36cf83eb7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/groot commit 85ca2a9a7b2871674dbb9e53e398e459debca529
iuc
parents:
diff changeset
177 </tool>