annotate read2tree.xml @ 0:0e30cfea5f30 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
author iuc
date Sun, 23 Nov 2025 11:59:30 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
1 <tool id="read2tree" name="Read2Tree" version="@TOOL_VERSION@" profile="24.0">
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
2 <description>Infer a species tree from sequencing reads</description>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
3 <macros>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
4 <token name="@TOOL_VERSION@">2.0.1</token>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
5 </macros>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
6
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
7 <xrefs>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
8 <xref type="bio.tools">read2tree</xref>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
9 </xrefs>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
10
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
11 <requirements>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
12 <requirement type="package" version="@TOOL_VERSION@">read2tree</requirement>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
13 </requirements>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
14
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
15 <command detect_errors="exit_code"><![CDATA[
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
16 #import re
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
17 mkdir -p ./genes_dir;
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
18
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
19 #for $i, $f in enumerate($marker_genes)
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
20 ln -s '$f' "./genes_dir/$i".fa;
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
21 #end for
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
22
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
23 #for $f in $reads
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
24 #set readln = re.sub(r'[^\w\-\\.]', '_', str($f.element_identifier))
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
25 ln -s '$f' './$readln';
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
26 #end for
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
27
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
28 read2tree --tree --standalone_path genes_dir --reads
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
29 #for $read in $reads
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
30 #set readln = re.sub(r'[^\w\-\\.]', '_', str($f.element_identifier))
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
31 "$readln"
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
32 #end for
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
33 --output_path ./output --dna_reference $dna_ref
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
34 ]]></command>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
35
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
36 <inputs>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
37 <param argument="reads" type="data" multiple="true" format="fasta,fasta.gz,fastqsanger,fastqsanger.gz,fastqillumina,fastqillumina.gz"
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
38 label="Input reads in FASTA or FASTQ" help="Set of input reads for the species of interest."/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
39
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
40 <param argument="marker_genes" type="data_collection" collection_type="list" format="fasta,fasta.gz"
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
41 label="Marker gene files" help="A set of reference orthologous groups, i.e. protein sequences of the marker genes for the reference species. See https://github.com/DessimozLab/read2tree for an example and information on how to obtain a list of marker genes."/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
42
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
43 <param argument="dna_ref" type="data" format="fasta,fasta.gz" label="DNA reference"
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
44 help="Reference file containing nucleotide sequences for the set of marker genes presented. See https://github.com/DessimozLab/read2tree for detail."/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
45 </inputs>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
46
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
47 <outputs>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
48 <data name="output_tree" format="newick" from_work_dir="output/tree_*.nwk"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
49 </outputs>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
50
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
51
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
52 <tests>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
53 <test>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
54 <param name="reads" value="sample_1.fastq.gz,sample_2.fastq.gz" ftype="fastqsanger.gz"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
55 <param name="marker_genes">
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
56 <collection type="list">
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
57 <element name="gene1" value="marker_genes/OMAGroup_649157.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
58 <element name="gene2" value="marker_genes/OMAGroup_649216.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
59 <element name="gene3" value="marker_genes/OMAGroup_671579.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
60 <element name="gene4" value="marker_genes/OMAGroup_681083.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
61 <element name="gene5" value="marker_genes/OMAGroup_681195.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
62 <element name="gene6" value="marker_genes/OMAGroup_671579.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
63 <element name="gene7" value="marker_genes/OMAGroup_683078.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
64 <element name="gene8" value="marker_genes/OMAGroup_894224.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
65 <element name="gene9" value="marker_genes/OMAGroup_898327.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
66 <element name="gene10" value="marker_genes/OMAGroup_944789.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
67 <element name="gene11" value="marker_genes/OMAGroup_974829.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
68 <element name="gene12" value="marker_genes/OMAGroup_1001241.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
69 <element name="gene13" value="marker_genes/OMAGroup_1008242.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
70 <element name="gene14" value="marker_genes/OMAGroup_1065415.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
71 <element name="gene15" value="marker_genes/OMAGroup_1121053.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
72 <element name="gene16" value="marker_genes/OMAGroup_1125645.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
73 <element name="gene17" value="marker_genes/OMAGroup_1133018.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
74 <element name="gene18" value="marker_genes/OMAGroup_1151179.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
75 <element name="gene19" value="marker_genes/OMAGroup_1163384.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
76 <element name="gene20" value="marker_genes/OMAGroup_1171372.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
77 <element name="gene21" value="marker_genes/OMAGroup_1188079.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
78 </collection>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
79 </param>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
80 <param name="dna_ref" value="dna_ref.fa" ftype="fasta"/>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
81 <output name="output_tree" ftype="newick">
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
82 <assert_contents>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
83 <has_text_matching expression="sample_\d+" />
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
84 </assert_contents>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
85 </output>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
86 </test>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
87 </tests>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
88
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
89 <help><![CDATA[
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
90 read2tree is a software tool for generating alignment matrices and performing tree inference directly from sequencing reads. It leverages the OMA database and a set of input reads, bypassing many of the standard steps typically required in phylogenomic analysis. In particular, it avoids for read filtering, assembly, gene prediction, gene annotation, all-vs-all comparison, orthology prediction, alignment, and concatenation.
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
91 ]]></help>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
92
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
93 <citations>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
94 <citation type="doi">10.1038/s41587-023-01753-4</citation>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
95 </citations>
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
96
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
97
0e30cfea5f30 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/read2tree commit b1e26e7371f5ea33d579cedf205c42201a81d9b3
iuc
parents:
diff changeset
98 </tool>