annotate cialign.xml @ 1:3c5bdab3c7b7 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit 4272ec0a9c9fc6c2a54aa702a3dc446ec598ffcc
author iuc
date Tue, 05 Aug 2025 20:08:31 +0000
parents c0a3b4607e66
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1 <tool id="cialign" name="CIAlign" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
2 <description>clean, visualise and analyse a multiple sequence alignment</description>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
3 <macros>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
4 <import>macros.xml</import>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
5 </macros>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
7 <version_command>CIAlign --version</version_command>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
9 #if str($input.extension) == "fasta.gz":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
10 gunzip -c '$input' > input.fasta &&
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
11 CIAlign --infile input.fasta
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
12 #else:
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
13 CIAlign --infile '$input'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
14 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
15 --outfile_stem 'output'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
16
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
17 ###### Basic Options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
18 $basic_options.all
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
19 $basic_options.clean
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
20 $basic_options.visualise
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
21 $basic_options.interpret
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
22
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
23 ###### Cleaning Options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
24 ### Remove Divergent options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
25 #if str($cleaning_options.remove_divergent_cond.remove_divergent_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
26 --remove_divergent
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
27 --remove_divergent_minperc $cleaning_options.remove_divergent_cond.remove_divergent_minperc
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
28 #for $s in $cleaning_options.remove_divergent_cond.remove_divergent_retain_seqs
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
29 --remove_divergent_retain '$s.remove_divergent_retain'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
30 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
31 #for $s in $cleaning_options.remove_divergent_cond.remove_divergent_retain_strings
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
32 --remove_divergent_retain_str '$s.remove_divergent_retain_str'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
33 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
34 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
35
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
36 ### Remove Insertions options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
37 #if str($cleaning_options.remove_insertions_cond.remove_insertions_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
38 --remove_insertions
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
39 --insertion_min_size $cleaning_options.remove_insertions_cond.insertion_min_size
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
40 --insertion_max_size $cleaning_options.remove_insertions_cond.insertion_max_size
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
41 --insertion_min_flank $cleaning_options.remove_insertions_cond.insertion_min_flank
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
42 --insertion_min_perc $cleaning_options.remove_insertions_cond.insertion_min_perc
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
43 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
44
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
45 ### Crop Ends options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
46 #if str($cleaning_options.crop_ends_cond.crop_ends_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
47 --crop_ends
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
48 --crop_ends_mingap_perc $cleaning_options.crop_ends_cond.crop_ends_mingap_perc
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
49 --crop_ends_redefine_perc $cleaning_options.crop_ends_cond.crop_ends_redefine_perc
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
50 #for $s in $cleaning_options.crop_ends_cond.crop_ends_retain_seqs
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
51 --crop_ends_retain '$s.crop_ends_retain'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
52 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
53 #for $s in $cleaning_options.crop_ends_cond.crop_ends_retain_strings
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
54 --crop_ends_retain_str '$s.crop_ends_retain_str'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
55 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
56 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
57
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
58 ### Remove Short options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
59 #if str($cleaning_options.remove_short_cond.remove_short_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
60 --remove_short
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
61 --remove_min_length $cleaning_options.remove_short_cond.remove_min_length
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
62 #for $s in $cleaning_options.remove_short_cond.remove_short_retain_seqs
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
63 --remove_short_retain '$s.remove_short_retain'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
64 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
65 #for $s in $cleaning_options.remove_short_cond.remove_short_retain_strings
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
66 --remove_short_retain_str '$s.remove_short_retain_str'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
67 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
68 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
69
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
70 ### Crop Divergent options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
71 #if str($cleaning_options.crop_divergent_cond.crop_divergent_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
72 --crop_divergent
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
73 --crop_divergent_min_prop_ident $cleaning_options.crop_divergent_cond.crop_divergent_min_prop_ident
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
74 --crop_divergent_min_prop_nongap $cleaning_options.crop_divergent_cond.crop_divergent_min_prop_nongap
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
75 --crop_divergent_buffer_size $cleaning_options.crop_divergent_cond.crop_divergent_buffer_size
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
76 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
77
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
78 ### Retain options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
79 #if str($cleaning_options.retain_cond.retain_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
80 #for $s in $cleaning_options.retain_cond.retain_seqs
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
81 --retain '$s.retain'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
82 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
83 #for $s in $cleaning_options.retain_cond.retain_strings
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
84 --retain_str '$s.retain_str'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
85 #end for
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
86 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
87
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
88 ### Keep Gap only
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
89 $cleaning_options.keep_gaponly
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
90
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
91 ###### Visualisation Options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
92 ### basic visualisation options
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
93 $visualisation_options.basic_visualisation_options.plot_input
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
94 $visualisation_options.basic_visualisation_options.plot_output
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
95 $visualisation_options.basic_visualisation_options.plot_markup
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
96 $visualisation_options.basic_visualisation_options.plot_consensus_identity
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
97 $visualisation_options.basic_visualisation_options.plot_consensus_similarity
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
98 #if str($visualisation_options.output_settings_cond.output_settings_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
99 --plot_width $visualisation_options.basic_visualisation_options.output_settings_cond.plot_width
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
100 --plot_height $visualisation_options.basic_visualisation_options.output_settings_cond.plot_height
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
101 --plot_dpi $visualisation_options.basic_visualisation_options.output_settings_cond.plot_dpi
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
102 $visualisation_options.basic_visualisation_options.output_settings_cond.plot_keep_numbers
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
103 $visualisation_options.basic_visualisation_options.output_settings_cond.plot_force_numbers
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
104 --plot_identity_palette '$visualisation_options.basic_visualisation_options.output_settings_cond.plot_identity_palette'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
105 --plot_identity_gap_col '$visualisation_options.basic_visualisation_options.output_settings_cond.plot_identity_gap_col'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
106 --plot_similarity_palette '$visualisation_options.basic_visualisation_options.output_settings_cond.plot_similarity_palette'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
107 --plot_similarity_gap_col '$visualisation_options.basic_visualisation_options.output_settings_cond.plot_similarity_gap_col'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
108 --plot_sub_matrix_name '$visualisation_options.basic_visualisation_options.output_settings_cond.plot_sub_matrix_name'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
109 --palette '$visualisation_options.basic_visualisation_options.output_settings_cond.palette'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
110 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
111
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
112 ### Sequence logos
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
113 #if str($visualisation_options.sequence_logo_cond.sequence_logo_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
114 --make_sequence_logo
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
115 --sequence_logo_type "$visualisation_options.sequence_logo_cond.sequence_logo_type"
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
116 --sequence_logo_dpi $visualisation_options.sequence_logo_cond.sequence_logo_dpi
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
117 --sequence_logo_font '$visualisation_options.sequence_logo_cond.sequence_logo_font'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
118 --sequence_logo_nt_per_row $visualisation_options.sequence_logo_cond.sequence_logo_nt_per_row
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
119 #if $visualisation_options.sequence_logo_cond.logo_start:
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
120 --logo_start $visualisation_options.sequence_logo_cond.logo_start
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
121 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
122 #if $visualisation_options.sequence_logo_cond.logo_end:
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
123 --logo_end $visualisation_options.sequence_logo_cond.logo_end
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
124 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
125 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
126
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
127 ### Statistics Plots
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
128 $visualisation_options.statistics_plots.plot_stats_input
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
129 $visualisation_options.statistics_plots.plot_stats_output
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
130 #if $visualisation_options.statistics_plots.plot_stats_input or $visualisation_options.statistics_plots.plot_stats_output
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
131 --plot_stats_dpi $visualisation_options.statistics_plots.stats_settings.plot_stats_dpi
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
132 --plot_stats_height $visualisation_options.statistics_plots.stats_settings.plot_stats_width
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
133 --plot_stats_width $visualisation_options.statistics_plots.stats_settings.plot_stats_height
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
134 --plot_stats_colour '$visualisation_options.statistics_plots.stats_settings.plot_stats_colour'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
135 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
136
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
137 ###### Interpretation Functions
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
138 ### consensus sequences
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
139 #if str($interpretation_options.consensus_sequences_cond.consensus_sequences_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
140 --make_consensus
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
141 --consensus_type '$interpretation_options.consensus_sequences_cond.consensus_type'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
142 $interpretation_options.consensus_sequences_cond.consensus_keep_gaps
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
143 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
144
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
145 ### Position Matrices
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
146 $interpretation_options.position_matrices.pwm_input
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
147 $interpretation_options.position_matrices.pwm_output
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
148 #if $interpretation_options.position_matrices.matrices_settings.pwm_start:
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
149 --pwm_start $interpretation_options.position_matrices.matrices_settings.pwm_start
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
150 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
151 #if $interpretation_options.position_matrices.matrices_settings.pwm_end:
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
152 --pwm_end $interpretation_options.position_matrices.matrices_settings.pwm_end
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
153 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
154 #if $interpretation_options.position_matrices.pwm_input or $interpretation_options.position_matrices.pwm_output:
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
155 --pwm_freqtype '$interpretation_options.position_matrices.matrices_settings.pwm_freqtype'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
156 --pwm_alphatype '$interpretation_options.position_matrices.matrices_settings.pwm_alphatype'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
157 --pwm_alphaval $interpretation_options.position_matrices.matrices_settings.pwm_alphaval
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
158 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
159 $interpretation_options.position_matrices.pwm_output_blamm
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
160 $interpretation_options.position_matrices.pwm_output_meme
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
161
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
162 ### Similarity Matrices
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
163 $interpretation_options.similarity_matrices.make_similarity_matrix_input
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
164 $interpretation_options.similarity_matrices.make_similarity_matrix_output
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
165 #if $interpretation_options.similarity_matrices.make_similarity_matrix_input or $interpretation_options.similarity_matrices.make_similarity_matrix_output:
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
166 --make_simmatrix_keepgaps $interpretation_options.similarity_matrices.similarity_matrices_settings.make_simmatrix_keepgaps
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
167 --make_simmatrix_dp $interpretation_options.similarity_matrices.similarity_matrices_settings.make_simmatrix_dp
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
168 --make_simmatrix_minoverlap $interpretation_options.similarity_matrices.similarity_matrices_settings.make_simmatrix_minoverlap
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
169 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
170
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
171
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
172 ###### Editing Functions
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
173 #if str($editing_functions.get_section_cond.get_section_param) == "true":
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
174 --get_section
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
175 --section_start $editing_functions.get_section_cond.section_start
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
176 --section_end $editing_functions.get_section_cond.section_end
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
177 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
178 $editing_functions.replace_input_tu
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
179 $editing_functions.replace_input_ut
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
180 $editing_functions.replace_output_tu
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
181 $editing_functions.replace_output_ut
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
182 ### Unaligning
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
183 $editing_functions.unalign_input
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
184 $editing_functions.unalign_output
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
185 ### Removing Duplicates
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
186 $editing_functions.deduplicate_ids
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
187 #if str($editing_functions.deduplicate_ids)
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
188 --duporder '$editing_functions.duporder'
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
189 #end if
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
190 ]]></command>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
191 <inputs>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
192 <param name="input" type="data" format="fasta,fasta.gz" label="Input FASTA" help="Upload a multiple sequence alignment in FASTA or compressed FASTA (.gz) format."/> <!-- BASIC options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
193 <section name="basic_options" title="Basic Options" expanded="yes">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
194 <param argument="--all" type="boolean" truevalue="--all" falsevalue="" checked="false" label="Use All Functions" help="Enable all available functions with default parameters unless overridden."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
195 <param argument="--clean" type="boolean" truevalue="--clean" falsevalue="" checked="false" label="Use All Cleaning Functions" help="Use all available cleaning functions with default parameters unless overridden."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
196 <param argument="--visualise" type="boolean" truevalue="--visualise" falsevalue="" checked="false" label="Use All Visualisation Functions" help="Use all available mini alignment visualisation functions with default parameters unless overridden."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
197 <param argument="--interpret" type="boolean" truevalue="--interpret" falsevalue="" checked="false" label="Use All Interpretation Functions" help="Use all available interpretation functions with default parameters unless overridden."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
198 <param name="log_out" type="boolean" checked="false" label="Output log file" help="Outputs the log file."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
199 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
200
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
201 <section name="cleaning_options" title="Cleaning Options" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
202 <!-- Remove divergent options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
203 <conditional name="remove_divergent_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
204 <param name="remove_divergent_param" type="select" label="Remove divergent" help="Remove sequences with identity below a specified proportion of conserved positions.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
205 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
206 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
207 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
208 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
209 <param argument="--remove_divergent_minperc" type="float" value="0.65" min="0" max="1" label="Minimum Identity Proportion" help="Minimum proportion of positions that must match the most common base or amino acid for a sequence to be kept."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
210 <repeat name="remove_divergent_retain_seqs" title="sequences to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
211 <param argument="--remove_divergent_retain" type="text" value="" label="Retain Sequence by Name" help="Always keep the sequence with this exact name. (must match a seq name)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
212 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
213 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
214 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
215 <repeat name="remove_divergent_retain_strings" title="strings to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
216 <param argument="--remove_divergent_retain_str" type="text" value="" label="Retain Sequences Containing Text" help="Always keep sequences whose names contain this text.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
217 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
218 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
219 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
220 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
221 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
222 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
223
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
224 <!-- Remove Insertions options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
225 <conditional name="remove_insertions_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
226 <param name="remove_insertions_param" type="select" label="Remove Rare Insertions" help="Remove insertions not present in the majority of sequences.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
227 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
228 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
229 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
230 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
231 <param argument="--insertion_min_size" type="integer" value="3" min="1" label="Minimum Insertion Size" help="Only remove insertions larger than this number of residues. Must be less than or equal to the number of columns in your alignment."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
232 <param argument="--insertion_max_size" type="integer" value="200" min="1" max="10000" label="Maximum Insertion Size" help="Only remove insertions smaller than this number of residues."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
233 <param argument="--insertion_min_flank" type="integer" value="5" min="0" label="Minimum Flank Size" help="Minimum number of bases required on each side of an insertion. Must be less than half the alignment length."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
234 <param argument="--insertion_min_perc" type="float" value="0.5" min="0" max="1" label="Minimum Presence Proportion" help="Remove insertions found in less than this proportion of sequences."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
235 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
236 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
237 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
238
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
239 <!-- Crop Ends options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
240 <conditional name="crop_ends_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
241 <param name="crop_ends_param" type="select" label="Crop Sequence Ends" help="Trim ends of sequences if they are poorly aligned.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
242 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
243 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
244 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
245 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
246 <param argument="--crop_ends_mingap_perc" type="float" value="0.05" min="0" max="0.6" label="Minimum Gap Change Threshold" help="Minimum proportion of sequence length (excluding gaps) used to detect significant change in gap numbers."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
247 <param argument="--crop_ends_redefine_perc" type="float" value="0.1" min="0" max="0.5" label="Region Proportion to Check" help="Proportion of the sequence (excluding gaps) checked at each end to redefine cropping boundaries."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
248 <repeat name="crop_ends_retain_seqs" title="sequences to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
249 <param argument="--crop_ends_retain" type="text" value="" label="Retain Sequence by Name" help="Do not crop the sequence with this exact name. (must match a seq name)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
250 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
251 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
252 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
253 <repeat name="crop_ends_retain_strings" title="strings to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
254 <param argument="--crop_ends_retain_str" type="text" value="" label="Retain Sequences Containing Text" help="Do not crop sequences whose names contain this text. Case-sensitive.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
255 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
256 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
257 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
258 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
259 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
260 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
261
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
262 <!-- Remove Short options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
263 <conditional name="remove_short_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
264 <param name="remove_short_param" type="select" label="Remove Short Sequences" help="Remove sequences shorter than a specified length (excluding gaps).">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
265 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
266 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
267 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
268 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
269 <param argument="--remove_min_length" type="integer" value="50" min="0" label="Minimum Sequence Length" help="Remove sequences shorter than this length, excluding gaps."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
270 <repeat name="remove_short_retain_seqs" title="sequences to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
271 <param argument="--remove_short_retain" type="text" value="" label="Retain Sequences by Name" help="Do not remove the sequence with this exact name. (must match a seq name)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
272 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
273 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
274 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
275 <repeat name="remove_short_retain_strings" title="strings to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
276 <param argument="--remove_short_retain_str" type="text" value="" label="Retain Sequences Containing Text" help="Do not remove sequences whose names contain this text. Case-sensitive.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
277 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
278 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
279 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
280 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
281 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
282 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
283
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
284 <!-- Crop Divergent options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
285 <conditional name="crop_divergent_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
286 <param name="crop_divergent_param" type="select" label="Crop Divergent Sequences" help="Remove highly divergent regions to improve alignment quality by focusing on more conserved parts.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
287 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
288 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
289 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
290 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
291 <param argument="--crop_divergent_min_prop_ident" type="float" value="0.5" min="0.01" max="1" label="Minimum Identity Proportion" help="Minimum proportion of sequences that must share the same residue in a column."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
292 <param argument="--crop_divergent_min_prop_nongap" type="float" value="0.5" min="0.01" max="1" label="Minimum Non-Gap Proportion" help="Minimum proportion of sequences that must contain a non-gap residue in a column."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
293 <param argument="--crop_divergent_buffer_size" type="integer" value="5" min="1" label="Buffer Size" help="Number of consecutive columns that must meet the identity and non-gap criteria to retain a region."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
294 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
295 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
296 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
297
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
298 <!-- Retain options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
299 <conditional name="retain_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
300 <param name="retain_param" type="select" label="Retain Specific Sequences" help="Specify sequences that should not be edited or removed during row-wise functions.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
301 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
302 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
303 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
304 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
305 <repeat name="retain_seqs" title="sequences to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
306 <param argument="--retain" type="text" value="" label="Retain Sequence with this Name" help="Do not edit or remove the sequence with this exact name during row-wise functions. Can be used multiple times. (must match a seq name)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
307 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
308 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
309 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
310 <repeat name="retain_strings" title="strings to retain" min="0">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
311 <param argument="--retain_str" type="text" value="" label="Retain Sequences Containing this String" help="Do not edit or remove sequences with names containing this text. Case-sensitive.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
312 <validator type="empty_field"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
313 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
314 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
315 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
316 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
317 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
318
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
319 <param argument="--keep_gaponly" type="boolean" truevalue="--keep_gaponly" falsevalue="" checked="false" label="Keep Gap-Only Columns" help=" Keep columns in the alignment that consist entirely of gaps."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
320 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
321
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
322 <section name="visualisation_options" title="Visualisation Options" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
323 <!-- Visualisation options -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
324 <section name="basic_visualisation_options" title="Basic Visualisation Options" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
325 <param argument="--plot_input" type="boolean" checked="false" falsevalue="" truevalue="--plot_input" label="Plot input alignment" help="Visualisation of the input alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
326 <param argument="--plot_output" type="boolean" checked="false" falsevalue="" truevalue="--plot_output" label="Plot output alignment" help="Visualisation of the cleaned output alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
327 <param argument="--plot_markup" type="boolean" checked="false" falsevalue="" truevalue="--plot_markup" label="Plot markup" help="Visualisation of the input alignment with deleted rows and columns marked"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
328 <param argument="--plot_consensus_identity" type="boolean" checked="false" falsevalue="" truevalue="--plot_consensus_identity" label="Plot consensus identity" help="Plot a mini alignment showing positions which are identical to or differ from the consensus."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
329 <param argument="--plot_consensus_similarity" type="boolean" checked="false" falsevalue="" truevalue="--plot_consensus_similarity" label="Plot consensus similarity" help="Plot a mini alignment showing positions based on their score when when compared via a substitution matrix to the consensus."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
330 <conditional name="output_settings_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
331 <param name="output_settings_param" type="select" label="Change output settings?" help="Change the output settings.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
332 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
333 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
334 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
335 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
336 <param argument="--plot_width" type="integer" value="5" min="2" max="20" label="Plot width" help="Mini alignment width in inches."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
337 <param argument="--plot_height" type="integer" value="3" min="2" max="15" label="Plot height" help="Mini alignment height in inches."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
338 <param argument="--plot_dpi" type="integer" min="72" max="1200" value="300" label="Plot DPI" help="DPI for mini alignments"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
339 <param argument="--plot_keep_numbers" type="boolean" checked="false" falsevalue="" truevalue="--plot_keep_numbers" label="Plot keep numbers" help="If specified, for mini alignments based on CIAlign output with smaller than 10 sequences (or if force_numbers is switched on) the rows will be labelled based on the input alignment, rather than renumbered."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
340 <param argument="--plot_force_numbers" type="boolean" checked="false" falsevalue="" truevalue="--plot_force_numbers" label="Plot force numbers" help="Force all rows to be numbered on the mini alignments rather than labelling e.g. every 10th row for larger plots. Will cause labels to overlap on large plots."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
341 <param argument="--plot_identity_palette" type="text" value="bone" label="Plot identity palette" help="Matplotlib palette name for identity mini alignments.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
342 <validator type="regex">^[a-zA-Z_]+$</validator>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
343 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
344 <param argument="--plot_identity_gap_col" type="color" value="#ffffff" label="Plot identity gap col" help="Colour for gaps in identity mini alignments.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
345 <sanitizer invalid_char="">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
346 <valid initial="string.ascii_letters,string.digits">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
347 <add value="#" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
348 </valid>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
349 </sanitizer>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
350 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
351 <param argument="--plot_similarity_palette" type="text" value="bone" label="Plot similarity palette" help="Matplotlib palette name for similarity mini alignments.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
352 <validator type="regex">^[a-zA-Z_]+$</validator>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
353 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
354 <param argument="--plot_similarity_gap_col" type="color" value="#ffffff" label="Plot similarity gap col" help="Colour for gaps in similarity mini alignments.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
355 <sanitizer invalid_char="">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
356 <valid initial="string.ascii_letters,string.digits">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
357 <add value="#" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
358 </valid>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
359 </sanitizer>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
360 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
361 <param argument="--plot_sub_matrix_name" type="select" label="Substitution matrix to use for similarity plots" help="BLOSUM62 for amino acid, NUC.4.4 for nucleotide">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
362 <option value="BLOSUM62">BLOSUM62</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
363 <option value="NUC.4.4" selected="true">NUC.4.4</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
364 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
365 <param argument="--palette" type="select" value="CBS" label="Colour palette" help="Colour palette. Currently implemented CBS (colour blind safe) or bright.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
366 <option value="CBS" selected="true">CBS</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
367 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
368 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
369 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
370 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
371 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
372
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
373 <!-- Sequence Logos -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
374 <conditional name="sequence_logo_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
375 <param name="sequence_logo_param" type="select" label="Make sequence logo?" help="Draw a sequence logo.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
376 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
377 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
378 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
379 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
380 <param argument="--sequence_logo_type" type="select" label="Type of sequence logo" help="Type of sequence logo to plot">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
381 <option value="bar">Bar</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
382 <option value="text" selected="true">Text</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
383 <option value="both">Both (Bar and Text)</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
384 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
385 <param argument="--sequence_logo_dpi" type="integer" min="72" max="1200" value="300" label="Resolution (DPI)" help="DPI (dots per inch) for sequence logo."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
386 <param argument="--sequence_logo_font" type="text" value="monospace" label="Logo Font" help="Font for bases / amino acids in a text based sequence logo">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
387 <validator type="regex">^[a-zA-Z\- ]+$</validator>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
388 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
389 <param argument="--sequence_logo_nt_per_row" type="integer" value="50" label="Number of Bases/amino acids per row" help="Number of bases / amino acids to show per row in the sequence logo, where the logo is too large to show on a single line"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
390 <param argument="--logo_start" type="integer" optional="true" label="Logo Start" help="Start sequence logo"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
391 <param argument="--logo_end" type="integer" optional="true" label="Logo End" help="End sequence logo"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
392 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
393 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
394 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
395
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
396 <!-- Statistics Plots -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
397 <section name="statistics_plots" title="Statistics Plots" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
398 <param argument="--plot_stats_input" type="boolean" checked="false" falsevalue="" truevalue="--plot_stats_input" label="Plot stats input" help="Plot the statistics for the input MSA"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
399 <param argument="--plot_stats_output" type="boolean" checked="false" falsevalue="" truevalue="--plot_stats_output" label="Plot stats output" help="Plot the statistics for the output MSA"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
400 <section name="stats_settings" title="Statistics Plots Settings" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
401 <param argument="--plot_stats_dpi" type="integer" value="300" min="72" max="1200" label="DPI" help="DPI for coverage plot"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
402 <param argument="--plot_stats_width" type="integer" min="2" max="20" value="5" label="Plot width" help="Width for coverage plot (inches)"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
403 <param argument="--plot_stats_height" type="integer" min="2" max="15" value="3" label="Plot height" help="Height for coverage plot (inches)"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
404 <param argument="--plot_stats_colour" type="text" value="#0000ff" label="Colour" help="Colour for coverage plot (hex code or name)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
405 <sanitizer invalid_char="">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
406 <valid initial="string.ascii_letters,string.digits">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
407 <add value="#" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
408 </valid>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
409 </sanitizer>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
410 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
411 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
412 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
413 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
414
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
415
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
416 <section name="interpretation_options" title="Interpretation Options" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
417 <!-- Consensus Sequences -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
418 <conditional name="consensus_sequences_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
419 <param name="consensus_sequences_param" type="select" label="Consensus Sequences" help="This generates a consensus sequence based on the cleaned alignment.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
420 <option value="true">Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
421 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
422 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
423 <when value="true">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
424 <!-- consensus_sequences -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
425 <param argument="--consensus_type" type="select" label="Type of consensus sequence" help="Can be majority, to use the most common character at each position in the consensus, even if this is a gap, or majority_nongap, to use the most common non-gap character at each position">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
426 <option value="majority" selected="true">majority</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
427 <option value="majority_nongap">majority_nongap</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
428 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
429 <param argument="--consensus_keep_gaps" type="boolean" truevalue="--consensus_keep_gaps" falsevalue="" checked="false" label="Include gaps?" help="Should gaps be included in the consensus"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
430 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
431 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
432 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
433
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
434 <!-- Position Matrices -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
435 <section name="position_matrices" title="Position Matrices" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
436 <param argument="--pwm_input" type="boolean" checked="false" falsevalue="" truevalue="--pwm_input" label="Generate input matrices" help="Generate a position frequency matrix, position probability matrix and position weight matrix based on the input alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
437 <param argument="--pwm_output" type="boolean" checked="false" falsevalue="" truevalue="--pwm_output" label="Generate output matrices" help="Generate a position frequency matrix, position probability matrix and position weight matrix based on the cleaned output alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
438 <section name="matrices_settings" title="Position Matrices Settings" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
439 <param argument="--pwm_start" type="integer" optional="true" label="Start the PWM" help="Start the PWM and other matrices from this column of the input alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
440 <param argument="--pwm_end" type="integer" optional="true" label="End the PWM" help="End the PWM and other matrices at this column of the input alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
441 <param argument="--pwm_freqtype" type="select" label="Background frequency matrix" help="Choose how to compute background frequencies for the PWM: - equal: assume all residues are equally common
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
442 - calc: derive from the input PFM - calc2: derive from the full alignment (same as calc if no bounds) - user: provide your own frequencies (check https://davetang.org/muse/2013/10/01/position-weight-matrix/)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
443 <option value="user">user</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
444 <option value="equal" selected="true">equal</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
445 <option value="calc">calc</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
446 <option value="calc2">calc2</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
447 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
448 <param argument="--pwm_alphatype" type="select" label="Pseudocount type" help="If alphatype is 'calc', alpha is calculated as frequency(base), If alpha type is 'user' the user provides the value of alpha as pwm_alphatype. To run without pseudocounts set pwm_alphatype as user and pwm_alphaval as 0.">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
449 <option value="user">user</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
450 <option value="calc" selected="true">calc</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
451 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
452 <param argument="--pwm_alphaval" type="integer" value="1" label="Alpha value" help="User defined value of the alpha parameter to use as a pseudocount in the PPM."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
453 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
454 <param argument="--pwm_output_blamm" type="boolean" checked="false" falsevalue="" truevalue="--pwm_output_blamm" label="Output for BLAM" help="Output PPM formatted for BLAMM software"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
455 <param argument="--pwm_output_meme" type="boolean" checked="false" falsevalue="" truevalue="--pwm_output_meme" label="Output for MEME" help="Output PPM formatted for MEME software"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
456 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
457
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
458 <!-- Similarity Matrices -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
459 <section name="similarity_matrices" title="Similarity Matrices" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
460 <param argument="--make_similarity_matrix_input" type="boolean" checked="false" falsevalue="" truevalue="--make_similarity_matrix_input" label="Input similarity matrix" help="Make a similarity matrix for the input alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
461 <param argument="--make_similarity_matrix_output" type="boolean" checked="false" falsevalue="" truevalue="--make_similarity_matrix_output" label="Output similarity matrix" help="Make a similarity matrix for the output alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
462 <section name="similarity_matrices_settings" title="Similarity Matrices Settings" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
463 <param argument="--make_simmatrix_keepgaps" type="select" label="Keep gaps" help="0 - exclude positions which are gaps in either or both sequences from similarity calculations, 1 - exclude positions which are gaps in both sequences, 2 - include all positions">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
464 <option value="0" selected="true">0</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
465 <option value="1">1</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
466 <option value="2">2</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
467 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
468 <param argument="--make_simmatrix_dp" type="integer" min="0" max="10" value="4" label="Decimal places" help="Number of decimal places to display in the similarity matrix output file"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
469 <param argument="--make_simmatrix_minoverlap" type="integer" value="1" label="Minimum overlap" help="Minimum overlap between two sequences to have non-zero similarity in the similarity matrix"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
470 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
471 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
472 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
473
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
474 <!-- Editing Functions -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
475 <section name="editing_functions" title="Editing Options" expanded="false">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
476 <!-- get section -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
477 <conditional name="get_section_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
478 <param name="get_section_param" type="select" label="Retrieve and process a section of the alignment?">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
479 <option value="true" >Yes</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
480 <option value="false" selected="true">No</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
481 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
482 <when value="true">
1
3c5bdab3c7b7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit 4272ec0a9c9fc6c2a54aa702a3dc446ec598ffcc
iuc
parents: 0
diff changeset
483 <param argument="--section_start" value="" type="integer" label="Section start" help="Start position in the original alignment for the section to be extracted"/>
3c5bdab3c7b7 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit 4272ec0a9c9fc6c2a54aa702a3dc446ec598ffcc
iuc
parents: 0
diff changeset
484 <param argument="--section_end" value="" type="integer" label="Section end" help="End position in the original alignment for the section to be extracted"/>
0
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
485 </when>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
486 <when value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
487 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
488 <!-- replace bases-->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
489 <param argument="--replace_input_tu" type="boolean" checked="false" falsevalue="" truevalue="--replace_input_tu" label="Replace input T - U " help="Generates a copy of the input alignment with U's instead of T's"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
490 <param argument="--replace_input_ut" type="boolean" checked="false" falsevalue="" truevalue="--replace_input_ut" label="Replace input U - T " help="Generates a copy of the input alignment with T's instead of U's"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
491 <param argument="--replace_output_tu" type="boolean" checked="false" falsevalue="" truevalue="--replace_output_tu" label="Replace output T - U " help="Generates a copy of the output alignment with U's instead of T's"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
492 <param argument="--replace_output_ut" type="boolean" checked="false" falsevalue="" truevalue="--replace_output_ut" label="Replace output U -T " help="Generates a copy of the output alignment with T's instead of U's"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
493 <!-- Unaligning -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
494 <param argument="--unalign_input" type="boolean" checked="false" falsevalue="" truevalue="--unalign_input" label="Input alignment with no gaps " help="Generates a copy of the input alignment with no gaps"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
495 <param argument="--unalign_output" type="boolean" checked="false" falsevalue="" truevalue="--unalign_output" label="Out alignment with no gaps " help="Generates a copy of the output alignment with no gaps"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
496 <param argument="--deduplicate_ids" type="boolean" checked="false" falsevalue="" truevalue="--deduplicate_ids" label="Remove duplicates" help="Remove sequences with duplicate names from the input."/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
497 <param argument="--duporder" type="select" label="Duplicates order" help="Set to first to keep the first instance of the sequence name and last to keep the last">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
498 <option value="first" selected="true">first</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
499 <option value="last">last</option>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
500 </param>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
501 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
502 </inputs>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
503
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
504 <outputs>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
505 <data name="output_cleaned" format="fasta" from_work_dir="output_cleaned.fasta" label="${tool.name} on ${on_string}: Cleaned Alignment"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
506 <data name="output_removed" format="txt" from_work_dir="output_removed.txt" label="${tool.name} on ${on_string}: Removed Sequences"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
507 <data name="output_log" format="txt" from_work_dir="output_log.txt" label="${tool.name} on ${on_string}: Log File">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
508 <filter>basic_options['log_out']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
509 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
510 <!-- Visualisation Options Simple Outputs -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
511 <data name="plot_input" format="png" from_work_dir="output_input.png" label="${tool.name} on ${on_string}: Input Plot">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
512 <filter>visualisation_options['basic_visualisation_options']['plot_input'] or basic_options['visualise'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
513 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
514 <data name="plot_output" format="png" from_work_dir="output_output.png" label="${tool.name} on ${on_string}: Output Plot">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
515 <filter>visualisation_options['basic_visualisation_options']['plot_output'] or basic_options['visualise'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
516 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
517 <data name="plot_markup" format="png" from_work_dir="output_markup.png" label="${tool.name} on ${on_string}: Markup Plot">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
518 <filter>visualisation_options['basic_visualisation_options']['plot_markup'] or basic_options['visualise'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
519 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
520 <data name="plot_markup_legend" format="png" from_work_dir="output_markup_legend.png" label="${tool.name} on ${on_string}: Markup Legend">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
521 <filter>visualisation_options['basic_visualisation_options']['plot_markup'] or basic_options['visualise'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
522 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
523 <data name="plot_consensus_identity" format="png" from_work_dir="output_consensus_identity.png" label="${tool.name} on ${on_string}: Consensus Identity Plot">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
524 <filter>visualisation_options['basic_visualisation_options']['plot_consensus_identity'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
525 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
526 <data name="plot_consensus_similarity" format="png" from_work_dir="output_consensus_similarity.png" label="${tool.name} on ${on_string}: Consensus Similarity Plot">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
527 <filter>visualisation_options['basic_visualisation_options']['plot_consensus_similarity']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
528 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
529 <!-- Visualisation Options Outputs -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
530 <data name="logo_bar" format="png" from_work_dir="output_logo_bar.png" label="${tool.name} on ${on_string}: Logo Bar Chart">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
531 <filter>(visualisation_options['sequence_logo_cond']['sequence_logo_param'] == 'true' and (visualisation_options['sequence_logo_cond']['sequence_logo_type'] == 'bar' or visualisation_options['sequence_logo_cond']['sequence_logo_type'] == 'both'))</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
532 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
533 <data name="logo_text" format="png" from_work_dir="output_logo_text.png" label="${tool.name} on ${on_string}: Logo Text Chart">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
534 <filter>(visualisation_options['sequence_logo_cond']['sequence_logo_param'] == 'true' and (visualisation_options['sequence_logo_cond']['sequence_logo_type'] == 'text' or visualisation_options['sequence_logo_cond']['sequence_logo_type'] == 'both'))</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
535 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
536
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
537 <!-- Statistics plots of the input -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
538 <collection name="plot_stats_input" type="list" label="Input stats plots">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
539 <discover_datasets pattern="(output_input_)(?P&lt;designation&gt;.+)\.png$" format="png" directory="." visible="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
540 <filter>visualisation_options['statistics_plots']['plot_stats_input'] or basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
541 </collection>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
542
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
543 <!-- Statistics plots of the output -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
544 <collection name="plot_stats_outputs" type="list" label="Output stats plots">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
545 <discover_datasets pattern="(output_output_)(?P&lt;designation&gt;.+)\.png$" format="png" directory="." visible="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
546 <filter>visualisation_options['statistics_plots']['plot_stats_output'] or basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
547 </collection>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
548
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
549 <!-- Interpretaion Options Outputs -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
550 <data name="output_consensus" format="fasta" from_work_dir="output_consensus.fasta" label="${tool.name} on ${on_string}: Consensus Sequence">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
551 <filter>interpretation_options['consensus_sequences_cond']['consensus_sequences_param'] == 'true' or basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
552 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
553 <data name="output_with_consensus" format="fasta" from_work_dir="output_with_consensus.fasta" label="${tool.name} on ${on_string}: Cleaned + Consensus">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
554 <filter>interpretation_options['consensus_sequences_cond']['consensus_sequences_param'] == 'true' or basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
555 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
556 <data name="pwm_input" format="txt" from_work_dir="output_pwm_input.txt" label="${tool.name} on ${on_string}: PWM Input">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
557 <filter>interpretation_options['position_matrices']['pwm_input']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
558 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
559 <data name="ppm_input" format="txt" from_work_dir="output_ppm_input.txt" label="${tool.name} on ${on_string}: PPM Input">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
560 <filter>interpretation_options['position_matrices']['pwm_input']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
561 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
562 <data name="pfm_input" format="txt" from_work_dir="output_pfm_input.txt" label="${tool.name} on ${on_string}: PFM Input">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
563 <filter>interpretation_options['position_matrices']['pwm_input']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
564 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
565 <data name="ppm_meme_input" format="txt" from_work_dir="output_ppm_meme_input.txt" label="${tool.name} on ${on_string}: PPM for MEME (Input)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
566 <filter>interpretation_options['position_matrices']['pwm_input'] and interpretation_options['position_matrices']['pwm_output_meme']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
567 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
568 <data name="blamm_input" format="txt" from_work_dir="output_pfm_blamm_input.txt" label="${tool.name} on ${on_string}: PFM for BLAMM (Input)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
569 <filter>interpretation_options['position_matrices']['pwm_input'] and interpretation_options['position_matrices']['pwm_output_blamm']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
570 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
571 <data name="pwm_output" format="txt" from_work_dir="output_pwm_output.txt" label="${tool.name} on ${on_string}: PWM Output">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
572 <filter>interpretation_options['position_matrices']['pwm_output']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
573 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
574 <data name="ppm_output" format="txt" from_work_dir="output_ppm_output.txt" label="${tool.name} on ${on_string}: PPM Output">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
575 <filter>interpretation_options['position_matrices']['pwm_output']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
576 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
577 <data name="pfm_output" format="txt" from_work_dir="output_pfm_output.txt" label="${tool.name} on ${on_string}: PFM Output">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
578 <filter>interpretation_options['position_matrices']['pwm_output']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
579 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
580 <data name="ppm_meme_output" format="txt" from_work_dir="output_ppm_meme_output.txt" label="${tool.name} on ${on_string}: PPM for MEME (Output)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
581 <filter>interpretation_options['position_matrices']['pwm_output'] and interpretation_options['position_matrices']['pwm_output_meme']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
582 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
583 <data name="blamm_output" format="txt" from_work_dir="output_pfm_blamm_output.txt" label="${tool.name} on ${on_string}: PFM for BLAMM (Output)">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
584 <filter>interpretation_options['position_matrices']['pwm_output'] and interpretation_options['position_matrices']['pwm_output_blamm']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
585 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
586 <data name="input_similarity" format="tsv" from_work_dir="output_input_similarity.tsv" label="${tool.name} on ${on_string}: Input Similarity">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
587 <filter>interpretation_options['similarity_matrices']['make_similarity_matrix_input'] or basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
588 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
589 <data name="output_similarity" format="tsv" from_work_dir="output_output_similarity.tsv" label="${tool.name} on ${on_string}: Output Similarity">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
590 <filter>interpretation_options['similarity_matrices']['make_similarity_matrix_output'] or basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
591 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
592 <data name="output_output_column_stats" format="tsv" from_work_dir="output_output_column_stats.tsv" label="${tool.name} on ${on_string}: Output column stats">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
593 <filter>basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
594 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
595 <data name="output_input_column_stats" format="tsv" from_work_dir="output_output_column_stats.tsv" label="${tool.name} on ${on_string}: Input column stats">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
596 <filter>basic_options['interpret'] or basic_options['all']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
597 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
598 <!-- Editing Options Outputs -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
599 <data name="U_input" format="fasta" from_work_dir="output_U_input.fasta" label="${tool.name} on ${on_string}: Input: U instead of T">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
600 <filter>editing_functions['replace_input_tu']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
601 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
602 <data name="T_input" format="fasta" from_work_dir="output_T_input.fasta" label="${tool.name} on ${on_string}: Input: T instead of U">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
603 <filter>editing_functions['replace_input_ut']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
604 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
605 <data name="U_output" format="fasta" from_work_dir="output_U_output.fasta" label="${tool.name} on ${on_string}: Output: U instead of T">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
606 <filter>editing_functions['replace_output_tu']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
607 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
608 <data name="T_output" format="fasta" from_work_dir="output_T_output.fasta" label="${tool.name} on ${on_string}: Output: T instead of U">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
609 <filter>editing_functions['replace_output_ut']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
610 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
611 <data name="unaligned_input" format="fasta" from_work_dir="output_unaligned_input.fasta" label="${tool.name} on ${on_string}: Unaligned Input">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
612 <filter>editing_functions['unalign_input']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
613 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
614 <data name="unaligned_output" format="fasta" from_work_dir="output_unaligned_output.fasta" label="${tool.name} on ${on_string}: Unaligned Output">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
615 <filter>editing_functions['unalign_output']</filter>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
616 </data>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
617 </outputs>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
618 <tests>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
619 <!-- Test 1 gzip files -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
620 <test expect_num_outputs="3">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
621 <param name="input" value="example3.fasta.gz" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
622 <section name="basic_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
623 <param name="log_out" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
624 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
625 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
626 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
627 <has_n_lines n="4"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
628 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
629 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
630 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
631 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
632 <has_n_lines n="0"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
633 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
634 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
635 <output name="output_log">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
636 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
637 <has_text text="Command Line Args:"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
638 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
639 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
640 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
641 <!-- Test 2 to check clean mode -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
642 <test expect_num_outputs="3">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
643 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
644 <section name="basic_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
645 <param name="clean" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
646 <param name="log_out" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
647 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
648 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
649 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
650 <has_n_lines n="10"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
651 <has_line_matching expression="AUUCUAUCUGGGUGACUAUUCGUUAUCUCUACUUACUAUCUUACUUACUUACUUACGCUACGUACUAGCUUACGUACUGACUU" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
652 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
653 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
654 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
655 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
656 <has_n_lines n="7"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
657 <has_line_matching expression="remove_gap_only\s+89,90,91" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
658 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
659 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
660 <output name="output_log">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
661 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
662 <has_text text="Command Line Args:"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
663 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
664 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
665 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
666 <!-- Test 3 to clean amino acid -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
667 <test expect_num_outputs="3">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
668 <param name="input" value="example2.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
669 <section name="basic_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
670 <param name="clean" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
671 <param name="log_out" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
672 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
673 <section name="cleaning_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
674 <conditional name="retain_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
675 <param name="retain_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
676 <repeat name="retain_seqs">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
677 <param name="retain" value="seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
678 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
679 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
680 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
681 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
682 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
683 <has_n_lines n="2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
684 <has_line_matching expression="MKTAIKDLGTEYKLTVAEYFR" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
685 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
686 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
687 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
688 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
689 <has_n_lines n="2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
690 <has_line_matching expression="remove_gap_only\s+3,4" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
691 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
692 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
693 <output name="output_log">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
694 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
695 <has_text text="Amino acid alignment detected"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
696 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
697 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
698 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
699 <!-- Test 4 to check visualise mode -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
700 <test expect_num_outputs="7">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
701 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
702 <section name="basic_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
703 <param name="visualise" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
704 <param name="log_out" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
705 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
706 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
707 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
708 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
709 <has_line_matching expression="AGUCUAUCUGGGGUACUAUCUA------UCGCUACGUACUAGCUUACGUACUGACUUA--CGCUACGUACUAGCUUACGUACUGACUUA----"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
710 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
711 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
712 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
713 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
714 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
715 <has_line_matching expression="remove_gap_only\s+89,90,91" />
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
716 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
717 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
718 <output name="output_log">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
719 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
720 <has_text text="Command Line Args:"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
721 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
722 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
723 <output name="plot_input" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
724 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
725 <has_size size="17k" delta="1k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
726 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
727 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
728 <output name="plot_output" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
729 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
730 <has_size size="17k" delta="1k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
731 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
732 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
733 <output name="plot_markup" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
734 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
735 <has_size size="18k" delta="1k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
736 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
737 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
738 <output name="plot_markup_legend" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
739 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
740 <has_size size="11k" delta="1k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
741 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
742 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
743 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
744 <!-- Test 5 "remove divergent"" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
745 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
746 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
747 <section name="cleaning_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
748 <conditional name="remove_divergent_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
749 <param name="remove_divergent_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
750 <param name="remove_divergent_minperc" value="0.9"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
751 <repeat name="remove_divergent_retain_seqs">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
752 <param name="remove_divergent_retain" value="Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
753 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
754 <repeat name="remove_divergent_retain_seqs">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
755 <param name="remove_divergent_retain" value="Seq2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
756 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
757 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
758 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
759 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
760 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
761 <has_n_lines n="10"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
762 <not_has_text text="Seq4"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
763 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
764 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
765 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
766 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
767 <has_n_lines n="2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
768 <has_text text="remove_divergent"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
769 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
770 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
771 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
772 <!-- Test 6 "remove rare insertion"" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
773 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
774 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
775 <section name="cleaning_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
776 <conditional name="remove_insertions_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
777 <param name="remove_insertions_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
778 <param name="insertion_min_size" value="3"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
779 <param name="insertion_max_size" value="150"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
780 <param name="insertion_min_flank" value="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
781 <param name="insertion_min_perc" value="0.6"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
782 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
783 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
784 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
785 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
786 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
787 <has_line_matching expression="AGUCUAUCUGGGGUACUAUCUAUCGCUACGUACUAGCUUACGUACUGACUUA--CGCUACGUACUAGCUUACGUACUGACUUA----"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
788 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
789 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
790 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
791 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
792 <has_n_lines n="2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
793 <has_line_matching expression="remove_gap_only\s+89,90,91"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
794 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
795 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
796 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
797 <!-- Test 7 "Crop Sequence Ends"" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
798 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
799 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
800 <section name="cleaning_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
801 <conditional name="crop_ends_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
802 <param name="crop_ends_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
803 <param name="crop_ends_mingap_perc" value="0.05"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
804 <param name="crop_ends_redefine_perc" value="0.1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
805 <repeat name="crop_ends_retain_strings">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
806 <param name="crop_ends_retain_str" value="q7"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
807 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
808 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
809 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
810 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
811 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
812 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
813 <has_line_matching expression="AUUCUAUCUGGGUACUAUUGGG------UUAUCUCUACUUACUAUCUUACAGACUUGGUUA----------------------------AAAA"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
814 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
815 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
816 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
817 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
818 <has_n_lines n="2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
819 <has_line_matching expression="remove_gap_only\s+89,90,91"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
820 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
821 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
822 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
823 <!-- Test 8 "Remove Short Sequences"" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
824 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
825 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
826 <section name="cleaning_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
827 <conditional name="remove_short_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
828 <param name="remove_short_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
829 <param name="remove_min_length" value="70"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
830 <repeat name="remove_short_retain_seqs">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
831 <param name="remove_short_retain" value="Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
832 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
833 <repeat name="remove_short_retain_strings">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
834 <param name="remove_short_retain_str" value="q2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
835 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
836 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
837 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
838 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
839 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
840 <has_n_lines n="8"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
841 <not_has_text text="Seq5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
842 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
843 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
844 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
845 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
846 <has_n_lines n="2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
847 <has_text text="remove_too_short"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
848 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
849 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
850 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
851 <!-- Test 9 "Crop Divergent" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
852 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
853 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
854 <section name="cleaning_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
855 <conditional name="crop_divergent_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
856 <param name="crop_divergent_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
857 <param name="crop_divergent_min_prop_ident" value="0.5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
858 <param name="crop_divergent_min_prop_nongap" value="0.5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
859 <param name="crop_divergent_buffer_size" value="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
860 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
861 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
862 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
863 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
864 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
865 <has_line_matching expression="AUUCUAUC------UAUUGG--------UUAUCU-------------------------------------------------------"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
866 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
867 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
868 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
869 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
870 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
871 <has_line_matching expression="crop_divergent\s+89,90,91,92,93,94,95"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
872 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
873 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
874 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
875 <!-- Test 10 "Retain" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
876 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
877 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
878 <section name="cleaning_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
879 <conditional name="remove_short_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
880 <param name="remove_short_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
881 <param name="remove_min_length" value="90"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
882 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
883 <conditional name="retain_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
884 <param name="retain_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
885 <repeat name="retain_seqs">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
886 <param name="retain" value="Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
887 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
888 <repeat name="retain_strings">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
889 <param name="retain_str" value="q2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
890 </repeat>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
891 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
892 <param name="keep_gaponly" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
893 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
894 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
895 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
896 <has_n_lines n="4"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
897 <not_has_text text="Seq3"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
898 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
899 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
900 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
901 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
902 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
903 <has_text text="remove_too_short"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
904 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
905 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
906 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
907 <!-- Test 11 "Visualise basic options + settings" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
908 <test expect_num_outputs="6">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
909 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
910 <section name="visualisation_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
911 <section name="basic_visualisation_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
912 <param name="plot_consensus_identity" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
913 <param name="plot_consensus_similarity" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
914 <param name="plot_markup" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
915 <conditional name="output_settings_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
916 <param name="output_settings_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
917 <param name="plot_width" value="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
918 <param name="plot_height" value="3"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
919 <param name="plot_dpi" value="300"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
920 <param name="plot_keep_numbers" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
921 <param name="plot_force_numbers" value="false"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
922 <param name="plot_identity_palette" value="bone"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
923 <param name="plot_identity_gap_col" value="#ffffff"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
924 <param name="plot_similarity_palette" value="bone"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
925 <param name="plot_similarity_gap_col" value="#ffffff"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
926 <param name="palette" value="CBS"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
927 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
928 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
929 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
930 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
931 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
932 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
933 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
934 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
935 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
936 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
937 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
938 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
939 <has_line_matching expression="remove_gap_only\s+89,90,91"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
940 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
941 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
942 <output name="plot_consensus_identity" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
943 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
944 <has_size size="14k" delta="1k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
945 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
946 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
947 <output name="plot_consensus_similarity" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
948 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
949 <has_size size="14k" delta="1k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
950 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
951 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
952 <output name="plot_markup" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
953 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
954 <has_size size="17k" delta="2k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
955 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
956 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
957 <output name="plot_markup_legend" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
958 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
959 <has_size size="11k" delta="1k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
960 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
961 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
962 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
963 <!-- Test 14 "Visualise statistics plots and settings" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
964 <test expect_num_outputs="3">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
965 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
966 <section name="visualisation_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
967 <section name="statistics_plots">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
968 <param name="plot_stats_input" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
969 <section name="stats_settings">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
970 <param name="plot_stats_dpi" value="300"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
971 <param name="plot_stats_width" value="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
972 <param name="plot_stats_height" value="3"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
973 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
974 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
975 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
976 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
977 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
978 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
979 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
980 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
981 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
982 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
983 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
984 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
985 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
986 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
987 <output_collection name="plot_stats_input" type="list" count="5">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
988 <element name="changefreq" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
989 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
990 <has_size size="61k" delta="3k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
991 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
992 </element>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
993 <element name="coverage" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
994 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
995 <has_size size="63k" delta="3k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
996 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
997 </element>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
998 <element name="information_content" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
999 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1000 <has_size size="89k" delta="3k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1001 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1002 </element>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1003 <element name="shannon_entropy" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1004 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1005 <has_size size="91k" delta="3k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1006 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1007 </element>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1008 <element name="resfreq" ftype="png">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1009 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1010 <has_size size="77k" delta="3k"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1011 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1012 </element>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1013 </output_collection>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1014 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1015 <!-- Test 15 "Consensus Sequences" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1016 <test expect_num_outputs="4">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1017 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1018 <section name="interpretation_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1019 <conditional name="consensus_sequences_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1020 <param name="consensus_sequences_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1021 <param name="consensus_type" value="majority"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1022 <param name="consensus_keep_gaps" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1023 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1024 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1025 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1026 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1027 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1028 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1029 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1030 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1031 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1032 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1033 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1034 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1035 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1036 <output name="output_consensus" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1037 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1038 <has_n_lines n="2"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1039 <has_line_matching expression=">consensus"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1040 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1041 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1042 <output name="output_with_consensus" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1043 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1044 <has_n_lines n="16"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1045 <has_line_matching expression=">consensus"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1046 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1047 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1048 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1049 <!-- Test 16 "Position Matrices" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1050 <test expect_num_outputs="7">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1051 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1052 <section name="interpretation_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1053 <section name="position_matrices">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1054 <param name="pwm_input" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1055 <section name="matrices_settings">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1056 <param name="pwm_start" value="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1057 <param name="pwm_end" value="100"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1058 <param name="pwm_freqtype" value="equal"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1059 <param name="pwm_alphatype" value="calc"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1060 <param name="pwm_alphaval" value="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1061 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1062 <param name="pwm_output_blamm" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1063 <param name="pwm_output_meme" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1064 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1065 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1066 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1067 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1068 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1069 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1070 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1071 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1072 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1073 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1074 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1075 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1076 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1077 <output name="pwm_input" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1078 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1079 <has_n_lines n="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1080 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1081 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1082 <output name="ppm_input" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1083 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1084 <has_n_lines n="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1085 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1086 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1087 <output name="pfm_input" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1088 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1089 <has_n_lines n="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1090 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1091 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1092 <output name="ppm_meme_input" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1093 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1094 <has_n_lines n="103"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1095 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1096 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1097 <output name="blamm_input" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1098 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1099 <has_n_lines n="5"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1100 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1101 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1102 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1103 <!-- Test 17 "Similarity Sequences" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1104 <test expect_num_outputs="3">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1105 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1106 <section name="interpretation_options">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1107 <section name="similarity_matrices">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1108 <param name="make_similarity_matrix_input" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1109 <section name="similarity_matrices_settings">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1110 <param name="make_simmatrix_keepgaps" value="0"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1111 <param name="make_simmatrix_dp" value="4"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1112 <param name="make_simmatrix_minoverlap" value="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1113 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1114 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1115 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1116 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1117 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1118 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1119 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1120 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1121 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1122 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1123 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1124 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1125 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1126 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1127 <output name="input_similarity" ftype="tsv">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1128 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1129 <has_n_lines n="8"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1130 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1131 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1132 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1133 <!-- Test 18 "Extract Part of Alignment" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1134 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1135 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1136 <section name="editing_functions">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1137 <conditional name="get_section_cond">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1138 <param name="get_section_param" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1139 <param name="section_start" value="10"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1140 <param name="section_end" value="50"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1141 </conditional>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1142 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1143 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1144 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1145 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1146 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1147 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1148 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1149 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1150 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1151 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1152 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1153 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1154 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1155 <!-- Test 19 "Replace U ↔ T" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1156 <test expect_num_outputs="3">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1157 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1158 <section name="editing_functions">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1159 <param name="replace_input_ut" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1160 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1161 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1162 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1163 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1164 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1165 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1166 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1167 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1168 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1169 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1170 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1171 <output name="T_input" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1172 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1173 <not_has_text text="U"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1174 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1175 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1176 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1177 <!-- Test 20 "Unalign (remove gaps)" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1178 <test expect_num_outputs="3">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1179 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1180 <section name="editing_functions">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1181 <param name="unalign_input" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1182 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1183 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1184 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1185 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1186 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1187 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1188 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1189 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1190 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1191 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1192 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1193 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1194 <output name="unaligned_input" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1195 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1196 <not_has_text text="-"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1197 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1198 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1199 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1200 <!-- Test 21 "Remove Duplicates" -->
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1201 <test expect_num_outputs="2">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1202 <param name="input" value="example1.fasta" ftype="fasta"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1203 <section name="editing_functions">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1204 <param name="deduplicate_ids" value="true"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1205 </section>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1206 <output name="output_cleaned" ftype="fasta">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1207 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1208 <has_n_lines n="14"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1209 <has_line_matching expression=">Seq1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1210 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1211 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1212 <output name="output_removed" ftype="txt">
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1213 <assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1214 <has_n_lines n="1"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1215 </assert_contents>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1216 </output>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1217 </test>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1218 </tests>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1219 <expand macro="help"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1220 <citations>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1221 <citation type="doi">10.7717/peerj.12983</citation>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1222 </citations>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1223 <expand macro="creator"/>
c0a3b4607e66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/cialign commit fab1845778b34ff4166b2aa3efd4c88d240adb24
iuc
parents:
diff changeset
1224 </tool>