annotate eukrep.xml @ 0:218f37ca06e4 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
author iuc
date Fri, 01 Aug 2025 20:44:27 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
1 <tool id="eukrep" name="EukRep" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.0" license="MIT">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
2 <description>Classification of Eukaryotic and Prokaryotic sequences from metagenomic datasets</description>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
3 <macros>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
4 <token name="@TOOL_VERSION@">0.6.7</token>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
5 <token name="@VERSION_SUFFIX@">0</token>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
6 </macros>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
7 <xrefs>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
8 <xref type="bio.tools">eukrep</xref>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
9 </xrefs>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
10 <requirements>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
11 <requirement type="package" version="@TOOL_VERSION@">eukrep</requirement>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
12 </requirements>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
13 <version_command>EukRep --version | cut -d" " -f 2</version_command>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
14 <command detect_errors="exit_code"><![CDATA[
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
15 ln -s '$input' input.$input.ext &&
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
16 EukRep
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
17 -i input.$input.ext
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
18 -o 'output.fa'
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
19 ## -ff Force overwrite of existing output files
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
20 --min $min
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
21 ## --model MODEL Path to an alternate trained linear SVM model. Default is lin_svm_160_3.0.pickle
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
22 --kmer_len $kmer_len
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
23 #if $prokarya
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
24 --prokarya 'output_prokarya.fa'
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
25 #end if
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
26 $seq_names
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
27 -m $stringency
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
28 --tie $tie
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
29 ]]></command>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
30 <inputs>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
31 <param name="input" type="data" format="fasta,fasta.gz" label="Sequences"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
32 <param argument="--min" type="integer" value="3000" min="0" label="Minimum sequence length cutoff" help="for sequences to be included in prediction"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
33 <!-- -->
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
34 <param argument="--kmer_len" type="integer" value="5" min="3" max="6" label="K-mer length" help="K-mer length to use for making predictions"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
35 <param argument="--prokarya" type="boolean" label="Output predicted prokaryotic sequences"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
36 <param argument="--seq_names" type="boolean" truevalue="--seq_names" falsevalue="" label="Only output fasta headers" help="of identified sequences, instead of full FASTA entry"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
37 <param name="stringency" argument="-m" type="select" label="Stringency" help="How stringent the algorithm is in identifying eukaryotic scaffolds. Strict has a lower false positive rate and true positive rate; vice verso for leneient">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
38 <option value="strict">Strict</option>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
39 <option value="balanced" selected="true">Balanced</option>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
40 <option value="lenient">Lenient</option>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
41 </param>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
42 <param argument="--tie" type="select" label="Tie handling" help="Specify how to handle cases where an equal number of a sequences chunks are predicted to be of eukaryotic and prokaryotic origin (Generally occurs infrequently)">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
43 <option value="euk" selected="true">Eukaryotic</option>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
44 <option value="prok">Prokaryotic</option>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
45 <option value="rand">Random</option>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
46 <option value="skip">Do not classify</option>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
47 </param>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
48 </inputs>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
49 <outputs>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
50 <data name="output" format="fasta" from_work_dir="output.fa" label="${tool.name} on ${on_string}">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
51 <filter>not seq_names</filter>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
52 </data>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
53 <data name="output_prokarya" format="fasta" from_work_dir="output_prokarya.fa" label="${tool.name} on ${on_string}: Prokaryote sequences">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
54 <filter>not seq_names</filter>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
55 <filter>prokarya</filter>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
56 </data>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
57 <data name="output_names" format="txt" from_work_dir="output.fa" label="${tool.name} on ${on_string}: Eukaryote names">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
58 <filter>seq_names</filter>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
59 </data>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
60 <data name="output_prokarya_names" format="txt" from_work_dir="output_prokarya.fa" label="${tool.name} on ${on_string}: Prokaryote names">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
61 <filter>prokarya</filter>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
62 <filter>seq_names</filter>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
63 </data>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
64 </outputs>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
65 <tests>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
66 <test expect_num_outputs="1">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
67 <param name="input" value="test_scaffolds.fa" location="https://github.com/patrickwest/EukRep/raw/refs/tags/v0.6.6/tests/test_sequences/test_scaffolds.fa"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
68 <param name="kmer_len" value="4"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
69 <output name="output">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
70 <assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
71 <has_line line=">test_sequence_5" n="1"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
72 <has_n_lines n="2"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
73 </assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
74 </output>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
75 </test>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
76 <test expect_num_outputs="1">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
77 <param name="input" value="test_scaffolds.fa" location="https://github.com/patrickwest/EukRep/raw/refs/tags/v0.6.6/tests/test_sequences/test_scaffolds.fa"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
78 <param name="kmer_len" value="4"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
79 <param name="seq_names" value="true"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
80 <output name="output_names">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
81 <assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
82 <has_line line="test_sequence_5" n="1"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
83 <has_n_lines n="1"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
84 </assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
85 </output>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
86 </test>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
87 <test expect_num_outputs="2">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
88 <param name="input" value="test_scaffolds.fa" location="https://github.com/patrickwest/EukRep/raw/refs/tags/v0.6.6/tests/test_sequences/test_scaffolds.fa"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
89 <param name="kmer_len" value="4"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
90 <param name="prokarya" value="true"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
91 <output name="output">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
92 <assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
93 <has_line line=">test_sequence_5" n="1"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
94 <has_n_lines n="2"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
95 </assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
96 </output>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
97 <output name="output_prokarya">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
98 <assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
99 <has_line line=">test_sequence_5" negate="true"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
100 <has_n_lines n="24"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
101 </assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
102 </output>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
103 </test>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
104 <test expect_num_outputs="2">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
105 <param name="input" value="test_scaffolds.fa" location="https://github.com/patrickwest/EukRep/raw/refs/tags/v0.6.6/tests/test_sequences/test_scaffolds.fa"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
106 <param name="kmer_len" value="4"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
107 <param name="seq_names" value="true"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
108 <param name="prokarya" value="true"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
109 <output name="output_names">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
110 <assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
111 <has_line line="test_sequence_5" n="1"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
112 <has_n_lines n="1"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
113 </assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
114 </output>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
115 <output name="output_prokarya_names">
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
116 <assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
117 <has_line line="test_sequence_5" negate="true"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
118 <has_n_lines n="12"/>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
119 </assert_contents>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
120 </output>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
121
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
122 </test>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
123 </tests>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
124 <help><![CDATA[
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
125
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
126 .. class:: infomark
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
127
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
128 **What it does**
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
129
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
130 Classification of Eukaryotic and Prokaryotic sequences from metagenomic datasetsocs/ref/rst/restructuredtext.html)
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
131
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
132 Usage
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
133 .....
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
134
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
135
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
136 **Input**
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
137
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
138 Sequences in FASTA format.
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
139
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
140 **Output**
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
141
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
142 Eukaryotic sequences in FASTA format.
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
143
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
144
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
145 ]]></help>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
146 <citations>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
147 <citation type="doi">10.1101/gr.228429.117</citation>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
148 </citations>
218f37ca06e4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/eukrep commit 21990794f87526caeb6e754d3f895da81d5f4a1f
iuc
parents:
diff changeset
149 </tool>