annotate groot.xml @ 3:4d5cf5a423d5 draft default tip

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