Mercurial > repos > bgruening > tiara
annotate tiara.xml @ 1:66058890173e draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
author | bgruening |
---|---|
date | Fri, 18 Oct 2024 11:50:31 +0000 |
parents | 3f33a8ac8891 |
children |
rev | line source |
---|---|
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
1 <tool id="tiara" name="tiara" version="@TOOL_VERSION@+galaxy1" profile="21.05"> |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
2 <description>Deep-learning-based approach for identification of eukaryotic sequences in the metagenomic data </description> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
3 <macros> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
4 <import>macros.xml</import> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
5 </macros> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
6 <expand macro="biotools"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
9 mkdir ./results/ && |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
10 tiara |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
11 -t \${GALAXY_SLOTS:-4} |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
12 -i '$input' |
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
13 -o ./results/main_result.txt |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
14 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
15 #if $probabilities |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
16 --pr '$probabilities' |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
17 #end if |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
18 #if $min_len |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
19 -m '$min_len' |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
20 #end if |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
21 #if $cutoff_stage1 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
22 -p $cutoff_stage1 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
23 #if $cutoff_stage2 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
24 $cutoff_stage2 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
25 #end if |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
26 #end if |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
27 #if $advanced_options.advance.customize_kmer_length == 'customize' |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
28 --k1 $advanced_options.advance.first_stage_kmer |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
29 --k2 $advanced_options.advance.second_stage_kmer |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
30 #end if |
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
31 #if $taxonomy_filter |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
32 --tf #for $tf in $taxonomy_filter |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
33 $tf |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
34 #end for |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
35 #for $tf in $taxonomy_filter |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
36 && ls -l ./results/ |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
37 && mv ./results/${tf}*.dat ./results/${tf}.fasta |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
38 #end for |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
39 #end if |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
40 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
41 ]]></command> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
42 <inputs> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
43 <param name="input" type="data" format="fasta" label="input fasta,fasta.gz file"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
44 <param name="taxonomy_filter" type="select" multiple="true" optional="true" label="Write sequences to fasta,fasta.gz files specified in the arguments to this option." help="all refers to all classes present in input fasta (to separate fasta files)."> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
45 <option value="mit">mitochondria</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
46 <option value="pla">plastid</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
47 <option value="bac">bacteria</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
48 <option value="arc">archea</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
49 <option value="euk">eukarya</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
50 </param> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
51 <param argument="probabilities" type="boolean" truevalue="--pr" falsevalue="" checked="false" label="Add probabilities of individual classes for each sequence."/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
52 <param argument="min_len" type="integer" value="3000" min="1000" optional="true" label="Minimum length of a sequence. Default: 3000 bp." help="Specify the desired minimum length in base pairs.Default value is 3000 bp and we do not recommend classifying sequences shorter than 1000 bp. "/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
53 <param argument="cutoff_stage1" type="float" value="0.65" min="0.5" max="1" optional="true" label="Probability threshold for the first stage." help="Probability threshold needed for classification in the first stage. Default: 0.65." /> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
54 <param argument="cutoff_stage2" type="float" value="0.65" min="0.5" max="1" optional="true" label="Probability threshold for the second stage." help="Probability threshold needed for classification in the second stage. Default: 0.65." /> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
55 <section name="advanced_options" title="k-mer" expanded="true"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
56 <conditional name="advance"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
57 <param argument="customize_kmer_length" type="select" label="Advanced options"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
58 <option value="default_options">No, Use param defaults</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
59 <option value="customize">Yes, See full parameter list</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
60 </param> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
61 <when value="customize"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
62 <param argument="first_stage_kmer" type="select" label="Select k-mer length used in the first stage of classification (Default: 6)."> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
63 <option value="4">k-mer length 4</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
64 <option value="5">k-mer length 5</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
65 <option value="6" selected="True">default k-mer length</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
66 </param> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
67 <param argument="second_stage_kmer" type="select" label="k-mer length used in the second stage of classification (Default: 7)."> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
68 <option value="4">k-mer length 4</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
69 <option value="5">k-mer length 5</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
70 <option value="6">k-mer length 6</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
71 <option value="7" selected="True">default k-mer length</option> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
72 </param> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
73 </when> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
74 <when value="default_options"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
75 <!-- Define actions or defaults for the default option if necessary --> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
76 </when> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
77 </conditional> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
78 </section> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
79 </inputs> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
80 <outputs> |
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
81 <collection name="output" type="list" label="${tool.name} on ${on_string}: classified sequences in txt and Fasta Output"> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
82 <discover_datasets pattern="__name_and_ext__" ext="fasta,txt" directory="results" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
83 </collection> |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
84 </outputs> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
85 <tests> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
86 <test expect_num_outputs="1"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
87 <param name="input" value="plast_fr.fasta.gz"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
88 <param name="taxonomy_filter" value="pla"/> |
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
89 <output_collection name="output" type="list"> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
90 <element name="main_result" file="main_result01.txt" ftype="txt"/> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
91 <element name="pla" file="pla" ftype="fasta" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
92 </output_collection> |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
93 </test> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
94 <test expect_num_outputs="1"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
95 <param name="input" value="sample_all.fasta"/> |
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
96 <param name="taxonomy_filter" value="euk,bac,arc"/> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
97 <output_collection name="output" type="list"> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
98 <element name="arc" file="arc" ftype="fasta" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
99 <element name="bac" file="bac" ftype="fasta" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
100 <element name="euk" file="euk" ftype="fasta" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
101 <element name="main_result" file="main_result02.txt" ftype="txt" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
102 </output_collection> |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
103 </test> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
104 <test expect_num_outputs="1"> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
105 <param name="input" value="eukarya_fr.fasta"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
106 <param name="taxonomy_filter" value="euk"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
107 <param name="min_len" value="5000"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
108 <param name="cutoff_stage1" value="0.65"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
109 <param name="cutoff_stage2" value="0.60"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
110 <param name="probabilities" value="true"/> |
1
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
111 <output_collection name="output" type="list"> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
112 <element name="euk" file="euk" ftype="fasta" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
113 <element name="main_result" file="main_result03.txt" ftype="txt" /> |
66058890173e
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit eb21d389502b053adf569eb53a0b4cc9e0864fbe
bgruening
parents:
0
diff
changeset
|
114 </output_collection> |
0
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
115 </test> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
116 </tests> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
117 <help><![CDATA[ |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
118 What it does |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
119 ============ |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
120 Tiara is a Deep-learning-based approach for identification of eukaryotic sequences in the metagenomic data powered by PyTorch. |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
121 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
122 How it works |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
123 ============ |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
124 The sequences are classified in two stages: |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
125 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
126 First Stage: |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
127 Input: Sequences are classified into classes: archaea, bacteria, prokarya, eukarya, organelle, and unknown. |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
128 Output: Classifications for each sequence into one of the above classes. |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
129 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
130 Second Stage: |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
131 Input: Sequences labeled as organelle from the first stage. |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
132 Output: Further classification into mitochondria, plastid, or unknown. |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
133 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
134 Required Inputs |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
135 =============== |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
136 The primary input for Tiara is metagenomic sequence data that needs classification. |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
137 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
138 Generated Outputs |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
139 ================= |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
140 The output will be the sequences categorized into specific classes as described above. |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
141 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
142 Additional Resources |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
143 ==================== |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
144 For a more comprehensive understanding of tiara and detailed usage instructions, please visit the tiara GitHub repository: |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
145 tiara GitHub Repository: [https://github.com/ibe-uw/tiara] |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
146 |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
147 ]]></help> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
148 <expand macro="citations"/> |
3f33a8ac8891
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/tiara commit 3e174d7bc4280c835f5092a44d259cc33f0b54b6
bgruening
parents:
diff
changeset
|
149 </tool> |