annotate edta.xml @ 0:f1a157358d4d draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
author bgruening
date Sun, 16 Oct 2022 12:41:19 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
1 <tool id="edta" name="edta" version="@WRAPPER_VERSION@+@VERSION_SUFFIX@" profile="20.01">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
2 <description>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
3 Whole-genome de-novo TE annotation
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
4 </description>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
5 <macros>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
6 <token name="@WRAPPER_VERSION@">2.1.0</token>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
7 <token name="@VERSION_SUFFIX@">galaxy0</token>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
8 <import>edta_macros.xml</import>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
9 </macros>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
10 <expand macro="bio_tools"></expand>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
11 <requirements>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
12 <requirement type="package" version="@WRAPPER_VERSION@">edta</requirement>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
13 <!--container type="docker">oushujun/edta:@WRAPPER_VERSION@</container-->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
14 </requirements>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
15 <command detect_errors="exit_code"><![CDATA[
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
16 ## Genome to TE annotations
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
17 #if $function_select.function == 'genome':
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
18 ln -s '$function_select.genome' ./input.fa &&
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
19 EDTA.pl
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
20 --genome input.fa
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
21 --species '$function_select.species'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
22 --step '$function_select.step'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
23 #if $function_select.cds:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
24 --cds '$function_select.cds'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
25 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
26 #if $function_select.curatedlib:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
27 --curatedlib '$function_select.curatedlib'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
28 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
29 $function_select.sensitive
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
30 #if $function_select.mutation_rate:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
31 --u '$function_select.mutation_rate'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
32 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
33 #if $function_select.anno_select.anno == 'yes':
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
34 --anno 1
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
35 $function_select.anno_select.evaluate
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
36 #if $function_select.anno_select.exclude:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
37 --exclude '$function_select.anno_select.exclude'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
38 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
39 && mv ./input.fa.mod.EDTA.anno/*.sum .
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
40 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
41 ## Find elements of a paticular TE type
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
42 #else if $function_select.function == 'te':
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
43 ln -s '$function_select.genome' ./input.fa &&
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
44 EDTA_raw.pl
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
45 --genome input.fa
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
46 --species '$function_select.species'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
47 --type '$function_select.te_type'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
48 && mv ./input.fa.mod.EDTA.raw/input.fa.mod* .
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
49 ## pan-EDTA
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
50 #else if $function_select.function =='pan-edta':
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
51 #set $cds_list = []
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
52 #for $i, $s in enumerate($function_select.te_library)
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
53 ln -s '${s.genome}' ./${i}_input.fa &&
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
54 EDTA.pl
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
55 --genome ${i}_input.fa
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
56 --species '${s.species}'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
57 --anno 1
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
58 #if $s.cds:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
59 --cds '${s.cds}'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
60 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
61 #if $s.curatedlib:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
62 --curatedlib '${s.curatedlib}'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
63 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
64 $s.sensitive
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
65 #if $s.mutation_rate:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
66 --u '${s.mutation_rate}'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
67 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
68 $s.evaluate
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
69 #if $s.exclude:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
70 --exclude '${s.exclude}'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
71 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
72 #silent$cds_list.append(str($i) + '_input.fa')
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
73 && mv ./${i}_input.fa.mod.EDTA.anno/*.mod.out .
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
74 &&
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
75 #end for
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
76 #for $i in $cds_list
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
77 bash '$__tool_directory__/filter_out_single_copies.sh' $i &&
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
78 #end for
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
79 #if $function_select.known_te:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
80 bash '$__tool_directory__/make_pan_library.sh' '${known_te}'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
81 #else:
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
82 bash '$__tool_directory__/make_pan_library.sh'
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
83 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
84 #end if
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
85 ]]></command>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
86 <inputs>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
87 <conditional name="function_select">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
88 <param name="function" type="select" label="Which Function should be run">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
89 <option value="genome">Whole Genome</option>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
90 <option value="te">Specific TE</option>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
91 <option value="pan-edta">Pan-EDTA</option>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
92 </param>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
93 <!-- pan-EDTA run -->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
94 <when value="pan-edta">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
95 <expand macro="pan_edta"></expand>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
96 </when>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
97 <!-- Default EDTA run -->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
98 <when value="genome">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
99 <expand macro="edta_main_param"></expand>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
100 </when>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
101 <!-- Find elements of a paticular TE type -->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
102 <when value="te">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
103 <expand macro="te_only"></expand>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
104 </when>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
105 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
106 </inputs>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
107 <outputs>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
108 <!-- Genome to TE Annotations-->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
109 <data name="outfile_library" from_work_dir="*.mod.EDTA.TElib.fa" format="fasta" label="${tool.name} on ${on_string}: Non-Redundant TE Library">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
110 <filter>function_select['function'] == "genome"</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
111 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
112 <data name="Novel_TE_Families" from_work_dir="*.mod.EDTA.TElib.novel.fa" format="fasta" label="${tool.name} on ${on_string}: Novel TE Families">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
113 <filter>function_select['function'] == "genome" and function_select['curatedlib']</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
114 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
115 <data name="Whole_Genome_TE_Annotation" from_work_dir="*.mod.EDTA.TEanno.gff3" format="gff3" label="${tool.name} on ${on_string}: Whole Genome TE Annotation">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
116 <filter>function_select['function'] == "genome" and function_select['anno_select']['anno'] == "yes" </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
117 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
118 <data name="Summary_Whole_Genome_TE_Annotation" from_work_dir="*.mod.EDTA.TEanno.sum" format="xml" label="${tool.name} on ${on_string}: Summary of Whole Genome TE Annotation">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
119 <filter>function_select['function'] == "genome" and function_select['anno_select']['anno'] == "yes"</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
120 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
121 <data name="Low_Threshold_TE_Masking" from_work_dir="*.mod.MAKER.masked" format="gff3" label="${tool.name} on ${on_string}: Low_Threshold_TE_Masking">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
122 <filter>function_select['function'] == "genome" and function_select['anno_select']['anno'] == "yes"</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
123 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
124 <data name="Annotation_Inconsistency_Simple_TEs" from_work_dir="*.mod.EDTA.TE.fa.stat.redun.sum" format="xml" label="${tool.name} on ${on_string}: Simple TE Annotation Inconsistency">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
125 <filter> function_select['function'] == "genome" and function_select['anno_select']['anno'] == "yes" and function_select['anno_select']['evaluate'] is True </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
126 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
127 <data name="Annotation_Inconsistency_Nested_TEs" from_work_dir="*.mod.EDTA.TE.fa.stat.nested.sum" format="xml" label="${tool.name} on ${on_string}: Nested TE Annotation Inconsistency">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
128 <filter> function_select['function'] == "genome" and function_select['anno_select']['anno'] == "yes" and function_select['anno_select']['evaluate'] is True </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
129 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
130 <data name="Overall_Annotation_Inconsistency" from_work_dir="*.mod.EDTA.TE.fa.stat.all.sum" format="xml" label="${tool.name} on ${on_string}: Overall Annotation Inconsistency">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
131 <filter> function_select['function'] == "genome" and function_select['anno_select']['anno'] == "yes" and function_select['anno_select']['evaluate'] is True</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
132 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
133 <!-- Find elements of a paticular TE type -->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
134 <data name='ltr_intact_fa' from_work_dir="*.LTR.intact.fa" format="fasta" label="${tool.name} on ${on_string}: Intact_LTR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
135 <filter>function_select['function'] == "te" and function_select['te_type'] == 'ltr' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
136 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
137 <data name='ltr_intact_gff3' from_work_dir="*.LTR.intact.gff3" format="gff3" label="${tool.name} on ${on_string}: Intact_LTR.gff3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
138 <filter>function_select['function'] == "te" and function_select['te_type'] == 'ltr' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
139 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
140 <data name='ltr_raw_fa' from_work_dir="*.LTR.raw.fa" format="fasta" label="${tool.name} on ${on_string}: Raw_LTR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
141 <filter>function_select['function'] == "te" and function_select['te_type'] == 'ltr' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
142 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
143 <data name='tir_intact_fa' from_work_dir="*.TIR.intact.fa" format="fasta" label="${tool.name} on ${on_string}: Intact_TIR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
144 <filter>function_select['function'] == "te" and function_select['te_type'] == 'tir' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
145 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
146 <data name='tir_intact_gff3' from_work_dir="*.TIR.intact.gff3" format="gff3" label="${tool.name} on ${on_string}: Intact_TIR.gff3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
147 <filter>function_select['function'] == "te" and function_select['te_type'] == 'tir' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
148 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
149 <data name='tir_raw_fa' from_work_dir="*.TIR.raw.fa" format="fasta" label="${tool.name} on ${on_string}: Raw_TIR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
150 <filter>function_select['function'] == "te" and function_select['te_type'] == 'tir' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
151 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
152 <data name='helitron_intact_fa' from_work_dir="*.Helitron.intact.fa" format="fasta" label="${tool.name} on ${on_string}: Intact_Helitron.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
153 <filter>function_select['function'] == "te" and function_select['te_type'] == 'helitron' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
154 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
155 <data name='helitron_intact_gff3' from_work_dir="*.Helitron.intact.gff3" format="gff3" label="${tool.name} on ${on_string}: Intact_Helitron.gff3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
156 <filter>function_select['function'] == "te" and function_select['te_type'] == 'helitron' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
157 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
158 <data name='helitron_raw_fa' from_work_dir="*.Helitron.raw.fa" format="fasta" label="${tool.name} on ${on_string}: Raw_Helitron.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
159 <filter>function_select['function'] == "te" and function_select['te_type'] == 'helitron' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
160 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
161 <data name='all_ltr_intact_fa' from_work_dir="*.LTR.intact.fa" format="fasta" label="${tool.name} on ${on_string}: Intact_LTR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
162 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
163 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
164 <data name='all_ltr_intact_gff3' from_work_dir="*.LTR.intact.gff3" format="gff3" label="${tool.name} on ${on_string}: Intact_LTR.gff3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
165 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
166 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
167 <data name='all_ltr_raw_fa' from_work_dir="*.LTR.raw.fa" format="fasta" label="${tool.name} on ${on_string}: Raw_LTR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
168 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
169 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
170 <data name='all_tir_intact_fa' from_work_dir="*.TIR.intact.fa" format="fasta" label="${tool.name} on ${on_string}: Intact_TIR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
171 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
172 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
173 <data name='all_tir_intact_gff3' from_work_dir="*.TIR.intact.gff3" format="gff3" label="${tool.name} on ${on_string}: Intact_TIR.gff3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
174 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
175 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
176 <data name='all_tir_raw_fa' from_work_dir="*.TIR.raw.fa" format="fasta" label="${tool.name} on ${on_string}: Raw_TIR.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
177 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
178 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
179 <data name='all_helitron_intact_fa' from_work_dir="*.Helitron.intact.fa" format="fasta" label="${tool.name} on ${on_string}: Intact_Helitron.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
180 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
181 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
182 <data name='all_helitron_intact_gff3' from_work_dir="*.Helitron.intact.gff3" format="gff3" label="${tool.name} on ${on_string}: Intact_Helitron.gff3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
183 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
184 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
185 <data name='all_helitron_raw_fa' from_work_dir="*.Helitron.raw.fa" format="fasta" label="${tool.name} on ${on_string}: Raw_Helitron.fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
186 <filter>function_select['function'] == "te" and function_select['te_type'] == 'all' </filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
187 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
188 <!-- pan-edta -->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
189 <data name="pan_outfile_library" from_work_dir="*.mod.EDTA.TElib.fa" format="fasta" label="${tool.name} on ${on_string}: Non-Redundant TE Library">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
190 <filter>function_select['function'] == 'pan-edta'</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
191 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
192 <data name='filter_copy' from_work_dir="*.mod.EDTA.TElib.novel.fa.real" format="fasta" label="${tool.name} on ${on_string}: filter out copy">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
193 <filter>function_select['function'] == 'pan-edta'</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
194 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
195 <data name='get_classification_info' from_work_dir="*.mod.EDTA.TElib.novel.fa.real.ori" format="fasta" label="${tool.name} on ${on_string}: aggregate novel TE libraries">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
196 <filter>function_select['function'] == 'pan-edta'</filter>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
197 </data>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
198 </outputs>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
199 <tests>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
200 <!-- Genome to TE Annotations-->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
201 <test expect_num_outputs="8">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
202 <conditional name="function_select">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
203 <param name='genome' value='test_genome.fa' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
204 <param name='cds' value='test_genome.cds.fa' ftype='fasta' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
205 <param name='speices' value='Others' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
206 <param name='step' value='all' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
207 <param name ='curatedlib' value='rice6.9.5.liban' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
208 <param name ='sensitive' value='1' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
209 <conditional name ='anno_select'>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
210 <param name='anno' value='yes'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
211 <param name='evaluate' value='1' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
212 <param name='exclude' value='test_genome.exclude.bed' ftype='bed' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
213 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
214 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
215 <output name='outfile_library'>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
216 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
217 <has_text text='>RST-Osativa-Cluster'></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
218 <has_text text="match=NEW"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
219 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
220 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
221 <output name='Novel_TE_Families'>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
222 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
223 <has_text text='Helitron'></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
224 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
225 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
226 <output name="Whole_Genome_TE_Annotation">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
227 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
228 <has_text text="Chr2"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
229 <has_text text="EDTA"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
230 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
231 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
232 <output name="Summary_Whole_Genome_TE_Annotation">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
233 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
234 <has_text text="Repeat Classes"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
235 <has_text text="Repeat Stats"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
236 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
237 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
238 <output name="Low_Threshold_TE_Masking">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
239 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
240 <has_text text=">Chr2"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
241 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
242 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
243 <output name="Annotation_Inconsistency_Simple_TEs">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
244 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
245 <has_text text="LTR/Gypsy"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
246 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
247 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
248 <output name="Annotation_Inconsistency_Nested_TEs">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
249 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
250 <has_text text="TIR/Mutator"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
251 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
252 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
253 <output name="Overall_Annotation_Inconsistency">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
254 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
255 <has_text text="LTR/Copia"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
256 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
257 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
258 </test>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
259 <test expect_num_outputs="5">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
260 <conditional name="function_select">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
261 <param name='genome' value='test_genome.fa' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
262 <param name='cds' value='test_genome.cds.fa' ftype='fasta' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
263 <param name='speices' value='Others' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
264 <param name='step' value='all' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
265 <param name ='curatedlib' value='rice6.9.5.liban' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
266 <param name ='sensitive' value='1' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
267 <conditional name ='anno_select'>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
268 <param name='anno' value='yes'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
269 <param name='evaluate' value='0' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
270 <param name='exclude' value='test_genome.exclude.bed' ftype='bed' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
271 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
272 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
273 </test>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
274 <test expect_num_outputs="1">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
275 <conditional name="function_select">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
276 <param name='genome' value='test_genome.fa' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
277 <param name='speices' value='Others' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
278 <param name='step' value='all' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
279 <param name ='sensitive' value='1' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
280 <conditional name ='anno_select'>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
281 <param name='anno' value='no'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
282 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
283 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
284 </test>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
285 <!-- Find elements of a paticular TE type -->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
286 <test expect_num_outputs="3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
287 <conditional name="function_select">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
288 <param name="function" value="te"/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
289 <param name='genome' value='test_genome.fa' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
290 <param name='species' value='Others'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
291 <param name="te_type" value="ltr"/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
292 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
293 <output name="ltr_intact_fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
294 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
295 <has_text text=">Chr2:"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
296 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
297 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
298 <output name="ltr_intact_gff3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
299 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
300 <has_text text="##gff-version 3"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
301 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
302 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
303 <output name="ltr_raw_fa">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
304 <assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
305 <has_text text=">Chr2:"></has_text>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
306 </assert_contents>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
307 </output>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
308 </test>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
309 <test expect_num_outputs="9">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
310 <conditional name="function_select">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
311 <param name="function" value="te"/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
312 <param name='genome' value='test_genome.fa' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
313 <param name='species' value='Others'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
314 <param name="te_type" value="all"/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
315 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
316 </test>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
317 <!-- pan-EDTA -->
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
318 <test expect_num_outputs="3">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
319 <conditional name="function_select">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
320 <param name="function" value="pan-edta"></param>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
321 <repeat name="te_library">
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
322 <param name='genome' value='test_genome.fa' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
323 <param name='cds' value='test_genome.cds.fa' ftype='fasta' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
324 <param name='species' value='Others' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
325 <param name ='curatedlib' value='rice6.9.5.liban' ftype='fasta'/>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
326 <param name ='sensitive' value='1' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
327 <param name='evaluate' value='1' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
328 <param name='exclude' value='test_genome.exclude.bed' ftype='bed' />
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
329 </repeat>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
330 </conditional>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
331 </test>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
332 </tests>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
333 <help><![CDATA[
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
334
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
335 ===============================================
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
336 **The Extensive *de novo* TE Annotator (EDTA)**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
337 ===============================================
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
338
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
339 .. class:: infomark
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
340
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
341 **What it does**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
342
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
343 This package is developed for automated whole-genome de-novo TE annotation and benchmarking the annotation performance of TE libraries.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
344
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
345 ----
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
346
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
347 The EDTA package was designed to filter out false discoveries in raw TE candidates and generate a high-quality non-redundant TE library for whole-genome TE annotations. Selection of initial search programs were based on benckmarkings on the annotation performance using a manually curated TE library in the rice genome.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
348
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
349 .. image:: https://github.com/oushujun/EDTA/blob/master/development/EDTA%20workflow.png?raw=true
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
350 :alt: several example circos plots
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
351
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
352 ''''''''''
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
353 **Inputs**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
354 ''''''''''
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
355
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
356
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
357 **Required**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
358
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
359 1. **The genome file [FASTA]**. Please make sure sequence names are short (<=13 characters) and simple (i.e, letters, numbers, and underscore).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
360
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
361 **Optional**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
362
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
363 1. Coding sequence of the species or a closely related species [FASTA]. This file helps to purge gene sequences in the TE library.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
364 2. Known gene positions of this version of the genome assembly [BED]. Coordinates specified in this file will be excluded from TE annotation to avoid over-masking.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
365 3. Curated TE library of the species [FASTA]. This file is trusted 100%. Please make sure it's curated. If you only have a couple of curated sequences, that's fine. It doesn't need to be complete. Providing curated TE sequences, especially for those under annotated TE types (i.e., SINEs and LINEs), will greatly improve the annotation quality.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
366
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
367 '''''''''''
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
368 **Outputs**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
369 '''''''''''
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
370
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
371 1. **A non-redundant TE library.** The curated library will be included in this file if provided. TEs are classified into the superfamily level and using the three-letter naming system reported in Wicker et al. (2007).(https://www.nature.com/articles/nrg2165). Each sequence can be considered as a TE family.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
372
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
373 **Optional**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
374
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
375 1. Novel TE families: This file contains TE sequences that are not included in the curated library (`curatedlib` required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
376 2. Whole-genome TE annotation: This file contains both structurally intact and fragmented TE annotations (`anno` required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
377 3. Summary of whole-genome TE annotation: (`anno` required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
378 4. Low-threshold TE masking: This is a genome file with only long TEs (>=1 kb) being masked. You may use this for de novo gene annotations. In practice, this approach will reduce overmasking for genic regions, which can improve gene prediction quality. However, initial gene models should contain TEs and need further filtering (`anno` required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
379 5. Annotation inconsistency for simple TEs: (`anno and evaluate` required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
380 6. Annotation inconsistency for nested TEs: (`anno and evaluate` required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
381 7. Overall annotation inconsistency: (`anno and evaluate` required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
382
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
383 '''''''''''''''
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
384 **EDTA Usage**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
385 '''''''''''''''
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
386 `````````````````````
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
387 **From head to toe:**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
388 `````````````````````
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
389 *You got a genome and you want to get a high-quality TE annotation:*
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
390
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
391
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
392 - **--genome** [File] The genome FASTA file. Required.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
393
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
394 - **--species** [Rice|Maize|others] Specify the species for identification of TIR candidates. Default: others
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
395
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
396 - **--step** [all|filter|final|anno] Specify which steps you want to run EDTA.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
397
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
398 1. all: run the entire pipeline (default
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
399 2. filter: start from raw TEs to the end.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
400 3. final: start from filtered TEs to finalizing the run.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
401 4. anno: perform whole-genome annotation/analysis after TE library construction.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
402
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
403 - **--overwrite** [0|1] If previous results are found, decide to overwrite (1, rerun) or not (0, default).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
404
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
405 - **--cds** [File] Provide a FASTA file containing the coding sequence (no introns, UTRs, nor TEs) of this genome or its close relative.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
406
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
407 - **--curatedlib** [file] Provided a curated library to keep consistant naming and classification for known TEs. All TEs in this file will be trusted 100%, so please ONLY provide MANUALLY CURATED ones here.This option is not mandatory. It's totally OK if no file is provided (default).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
408
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
409 - **--sensitive** [0|1] Use RepeatModeler to identify remaining TEs (1) or not (0, default). This step is very slow and MAY help to recover some TEs.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
410
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
411 - **--anno** [0|1] Perform (1) or not perform (0, default) whole-genome TE annotation after TE library construction.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
412
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
413 - **--rmout** [File] Provide your own homology-based TE annotation instead of using the EDTA library for masking. File is in RepeatMasker .out format. This file will be merged with the structural-based TE annotation. (--anno 1 required). Default: use the EDTA library for annotation.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
414
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
415 - **--evaluate** [0|1] Evaluate (1) classification consistency of the TE annotation. (--anno 1 required). Default: 0. This step is slow and does not affect the annotation result.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
416
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
417 - **--exclude** [File] Exclude bed format regions from TE annotation. Default: undef. (--anno 1 required).
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
418
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
419 - **--u** [float] Neutral mutation rate to calculate the age of intact LTR elements.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
420
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
421 ----
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
422
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
423 ```````````````````````
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
424 **Divide and conquer:**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
425 ```````````````````````
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
426 *Identify intact elements of a paticular TE type*
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
427
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
428
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
429 - **--genome** [File] The genome FASTA
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
430
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
431 - **--species** [Rice|Maize|others] Specify the species for identification of TIR candidates. Default: others
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
432
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
433 - **--type** [ltr|tir|helitron|all] Specify which type of raw TE candidates you want to get. Default: all
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
434
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
435 ----
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
436
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
437 ````````````
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
438 **PAN-EDTA**
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
439 ````````````
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
440
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
441 For pan-genome annotations, you need to annotate each genome with EDTA, generate a pan-genome library, then reannotate each genome with the pan-genome library.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
442
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
443 .. image:: https://github.com/HuffordLab/NAM-genomes/raw/master/te-annotation/assets/Pan-EDTA_scheme.png
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
444 :alt: several example circos plots
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
445 :width: 70%
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
446
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
447 For more information see the EDTA documentation_.
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
448
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
449 .. _documentation: https://github.com/oushujun/EDTA
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
450
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
451 ]]></help>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
452 <citations>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
453 <citation type="doi">10.1186/s13059-019-1905-y</citation>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
454 </citations>
f1a157358d4d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta commit 24cb0421330e54b144b3e6f1be4ae35ac0e48c1c
bgruening
parents:
diff changeset
455 </tool>