annotate RepeatMasker.xml @ 2:5673e72241aa draft

Uploaded
author bgruening
date Tue, 17 Sep 2013 03:23:49 -0400
parents 880265000696
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
1 <tool id="repeatmasker_wrapper" name="RepeatMasker" version="0.1.2">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
2 <description>Masks different kind of repeats</description>
2
5673e72241aa Uploaded
bgruening
parents: 1
diff changeset
3 <requirements>
5673e72241aa Uploaded
bgruening
parents: 1
diff changeset
4 <requirement type="binary">RepeatMasker</requirement>
5673e72241aa Uploaded
bgruening
parents: 1
diff changeset
5 </requirements>
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
6 <command>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
7 ## The command is a Cheetah template which allows some Python based syntax.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
8 ## Lines starting hash hash are comments. Galaxy will turn newlines into spaces
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
9
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
10 ## create temp directory
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
11 #import tempfile, os
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
12 #set $dirname = os.path.abspath( tempfile.mkdtemp() )
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
13 #set $input_filename = os.path.split( str($query) )[-1]
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
14 #set $output_basename = os.path.join( $dirname, $input_filename )
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
15
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
16
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
17 RepeatMasker
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
18 -parallel 8
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
19
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
20 $nolow
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
21 $noint
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
22 $norna
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
23
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
24 #if str($species)!="all":
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
25 $species
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
26 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
27
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
28
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
29 -dir $dirname
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
30
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
31 #if $adv_opts.adv_opts_selector=="advanced":
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
32
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
33 #if str($adv_opts.gc)!="0":
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
34 -gc $adv_opts.gc
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
35 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
36
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
37 $adv_opts.gccalc
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
38
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
39 #set $output_files_list = str($adv_opts.output_files).split(',')
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
40 #if "gff" in $output_files_list:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
41 -gff
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
42 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
43 #if "html" in $output_files_list:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
44 -html
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
45 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
46
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
47 $adv_opts.slow_search
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
48 $adv_opts.quick_search
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
49 $adv_opts.rush_search
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
50 $adv_opts.only_alus
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
51 $adv_opts.is_only
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
52
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
53 #else:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
54 ## Set defaults
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
55 -gff
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
56
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
57 ## End of advanced options:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
58 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
59
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
60 $query
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
61
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
62 2>&#38;1;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
63
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
64 ## Copy the output files to galaxy
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
65 ## AgR: if there are no repeats, the output files may not exist.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
66 ## This causes the job to fail, so touch files to ensure they exist.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
67 #if $adv_opts.adv_opts_selector=="advanced":
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
68
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
69 #if "summary" in $output_files_list:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
70 ## Write out the summary file (default)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
71 #set $summary_file = $output_basename + '.tbl'
1
880265000696 Uploaded
bgruening
parents: 0
diff changeset
72 touch $summary_file;
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
73 cp $summary_file $output_summary;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
74 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
75
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
76 #if "gff" in $output_files_list:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
77 ## Write out the gff file (default)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
78 #set $gff_file = $output_basename + '.out.gff'
1
880265000696 Uploaded
bgruening
parents: 0
diff changeset
79 touch $gff_file;
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
80 cp $gff_file $output_gff;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
81 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
82
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
83 #if "html" in $output_files_list:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
84 ## Write out the html file
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
85 #set $html_file = $output_basename + '.out.html'
1
880265000696 Uploaded
bgruening
parents: 0
diff changeset
86 touch $html_file;
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
87 cp $html_file $output_html;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
88 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
89
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
90 #else:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
91
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
92 ## Write out the summary file (default)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
93 #set $summary_file = $output_basename + '.tbl'
1
880265000696 Uploaded
bgruening
parents: 0
diff changeset
94 touch $summary_file;
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
95 cp $summary_file $output_summary;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
96
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
97 ## Write out the gff file (default)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
98 #set $gff_file = $output_basename + '.out.gff'
1
880265000696 Uploaded
bgruening
parents: 0
diff changeset
99 touch $gff_file;
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
100 cp $gff_file $output_gff;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
101
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
102
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
103 ## End of advanced options:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
104 #end if
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
105
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
106 ## Write out mask sequence file
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
107 #set $mask_sequence_file = $output_basename + '.masked'
1
880265000696 Uploaded
bgruening
parents: 0
diff changeset
108 touch $mask_sequence_file;
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
109 cp $mask_sequence_file $output_mask;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
110
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
111 ## Write out standard file (default)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
112 ## The default '.out' file from RepeatMasker has a 3-line header and spaces rather
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
113 ## than tabs. Remove the header and replace the whitespaces with tab
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
114 #set $standard_file = $output_basename + '.out'
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
115 tail -n +4 $standard_file | tr -s ' ' '\t' > $output_std;
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
116
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
117 ## Delete all temporary files
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
118 rm $dirname -r
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
119
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
120 </command>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
121 <inputs>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
122 <param name="query" type="data" format="fasta" label="Nucleotide query sequence(s)"/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
123
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
124 <param name="nolow" type="boolean" label="No low complexity DNA" truevalue="-nolow" falsevalue="" checked="false" help="Does not mask low_complexity DNA or simple repeats."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
125 <param name="noint" type="boolean" label="No interspersed repeats" truevalue="-noint" falsevalue="" checked="false" help="Only masks low complex/simple repeats (no interspersed repeats)."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
126
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
127 <param name="norna" type="boolean" label="No small RNA genes" truevalue="-norna" falsevalue="" checked="false" help="Does not mask small RNA (pseudo) genes."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
128
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
129 <!--
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
130 Specify the species or clade of the input sequence. The species name
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
131 must be a valid NCBI Taxonomy Database species name and be contained
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
132 in the RepeatMasker repeat database. The following collection is not complete.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
133 -->
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
134 <param name="species" type="select" label="Species" help="The list is not complete, if you need other species contact your administrator.">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
135 <option value="-species anopheles">anopheles</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
136 <option value="-species arabidopsis">arabidopsis</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
137 <option value="-species artiodactyl">artiodactyl</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
138 <option value="-species aspergillus">aspergillus</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
139 <option value="-species carnivore">carnivore</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
140 <option value="-species cat">cat</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
141 <option value="-species chicken">chicken</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
142 <option value="-species 'ciona intestinalis'">ciona intestinalis</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
143 <option value="-species 'ciona savignyi'">ciona savignyi</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
144 <option value="-species cow">cow</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
145 <option value="-species danio">danio</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
146 <option value="-species diatoaea">diatoaea</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
147 <option value="-species dog">dog</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
148 <option value="-species drosophila">drosophila</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
149 <option value="-species elegans">elegans</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
150 <option value="-species fugu">fugu</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
151 <option value="-species fungi" selected="true">fungi</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
152 <option value="-species human">human</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
153 <option value="-species maize">maize</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
154 <option value="-species mammal">mammal</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
155 <option value="-species mouse">mouse</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
156 <option value="-species pig">pig</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
157 <option value="-species rat">rat</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
158 <option value="-species rice">rice</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
159 <option value="-species rodentia">rodentia</option>
2
5673e72241aa Uploaded
bgruening
parents: 1
diff changeset
160 <option value="-species ruminantia">ruminantia</option>
0
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
161 <option value="-species wheat">wheat</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
162 </param>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
163
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
164 <conditional name="adv_opts">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
165 <param name="adv_opts_selector" type="select" label="Advanced Options">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
166 <option value="basic" selected="True">Hide Advanced Options</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
167 <option value="advanced">Show Advanced Options</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
168 </param>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
169 <when value="basic" />
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
170 <when value="advanced">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
171 <param name="is_only" type="boolean" label="Mask only E coli insertion elements" truevalue="-is_only" falsevalue="" checked="false" help="Only clips E coli insertion elements out of fasta and .qual files."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
172 <param name="slow_search" type="boolean" label="Slow search" truevalue="-s" falsevalue="" checked="false" help="0-5% more sensitive, 2-3 times slower than default."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
173 <param name="quick_search" type="boolean" label="Quick search" truevalue="-q" falsevalue="" checked="false" help="5-10% less sensitive, 2-5 times faster than default."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
174 <param name="rush_search" type="boolean" label="Rush search" truevalue="-qq" falsevalue="" checked="false" help="about 10% less sensitive, 4->10 times faster than default."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
175 <param name="only_alus" type="boolean" label="Only Alus" truevalue="-alu" falsevalue="" checked="false" help="Only masks Alus (and 7SLRNA, SVA and LTR5)(only for primate DNA)."/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
176 <param name="gccalc" type="boolean" label="Use GC depended matrices, automaticly" truevalue="-gccalc" falsevalue="" checked="true" help="RepeatMasker calculates the GC content even for batch files/small seqs"/>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
177
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
178 <param name="output_files" type="select" multiple="true" label="Additional output files">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
179 <option selected="true" value="summary">Summary file</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
180 <option value="gff">GFF file</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
181 <option value="html">HTML file</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
182 <option value="mask">Mask FastA file</option>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
183 </param>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
184
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
185 <param name="gc" type="integer" value="0" label="Use GC depended matrices" help="Use matrices calculated for 'number' percentage background GC level">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
186 <validator type="in_range" min="0" />
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
187 <validator type="in_range" max="100" />
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
188 </param>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
189
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
190 </when>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
191 </conditional>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
192
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
193 </inputs>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
194 <outputs>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
195 <data name="output_std" format="tabular" label="${tool.name} on ${on_string}: Standard" />
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
196 <data name="output_mask" format="fasta" label="${tool.name} on ${on_string}: Mask sequence">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
197 <filter>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
198 (adv_opts['adv_opts_selector'] == 'advanced' and 'mask' in adv_opts['output_files'])
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
199 </filter>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
200 </data>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
201 <data name="output_summary" format="txt" label="${tool.name} on ${on_string}: Summary">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
202 <filter>(
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
203 (adv_opts['adv_opts_selector'] == 'advanced' and 'summary' in adv_opts['output_files'])
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
204 or
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
205 (adv_opts['adv_opts_selector'] == 'basic')
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
206 )
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
207 </filter>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
208 </data>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
209 <data name="output_html" format="html" label="${tool.name} on ${on_string}: HTML">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
210 <filter>(adv_opts['adv_opts_selector'] == 'advanced' and 'html' in adv_opts['output_files'])</filter>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
211 </data>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
212 <data name="output_gff" format="gff" label="${tool.name} on ${on_string}: GFF">
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
213 <filter>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
214 (adv_opts['adv_opts_selector'] == 'advanced' and 'gff' in adv_opts['output_files'])
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
215 </filter>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
216 </data>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
217 </outputs>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
218 <help>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
219
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
220 .. class:: warningmark
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
221
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
222 **What it does**
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
223
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
224 RepeatMasker is a program that screens DNA sequences for *interspersed repeats*
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
225 and *low complexity* DNA sequences. The output of the program is a detailed
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
226 annotation of the repeats that are present in the query sequence as well as a
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
227 modified version of the query sequence in which all the annotated repeats have
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
228 been masked (default: replaced by Ns).
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
229
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
230 -----
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
231
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
232 **How to read the results**
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
233
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
234
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
235
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
236 The annotation file contains the cross_match output lines. It lists all best matches
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
237 (above a set minimum score) between the query sequence and any of the sequences in
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
238 the repeat database or with low complexity DNA. The term "best matches" reflects
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
239 that a match is not shown if its domain is over 80% contained within the domain
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
240 of a higher scoring match, where the "domain" of a match is the region in
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
241 the query sequence that is defined by the alignment start and stop. These domains
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
242 have been masked in the returned masked sequence file. In the output, matches are
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
243 ordered by query name, and for each query by position of the start of the alignment.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
244
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
245 Example:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
246
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
247 ======== ========= ========= ========= ========== =========== ========= ========= ============ =============== =================== ================ ============== ======= ==
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
248 SW score perc div. perc del. perc ins. query seq. q-pos begin q-pos end (left) w complement matching repeat repeat class/family repeat-pos begin repeat-pos end (left) ID
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
249 ======== ========= ========= ========= ========== =========== ========= ========= ============ =============== =================== ================ ============== ======= ==
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
250 1306 15.6 6.2 0.0 HSU08988 6563 6781 \(22462) C MER7A DNA/MER2_type 336 103 \(0) 1
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
251 12204 10.0 2.4 1.8 HSU08988 6782 7714 \(21529) C TIGGER1 DNA/MER2_type 2418 1493 \(0) 2
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
252 279 3.0 0.0 0.0 HSU08988 7719 7751 \(21492) + (TTTTA)n Simple_repeat 1 33 \(0) 3
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
253 1765 13.4 6.5 1.8 HSU08988 7752 8022 \(21221) C AluSx SINE/Alu 289 1 \(23) 4
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
254 12204 10.0 2.4 1.8 HSU08988 8023 8694 \(20549) C TIGGER1 DNA/MER2_type 1493 827 \(925) 5
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
255 1984 11.1 0.3 0.7 HSU08988 8695 9000 \(20243) C AluSg SINE/Alu 305 1 \(5) 6
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
256 12204 10.0 2.4 1.8 HSU08988 9001 9695 \(19548) C TIGGER1 DNA/MER2_type 827 2 \(1591) 7
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
257 711 21.2 1.4 0.0 HSU08988 9696 9816 \(19427) C MER7A DNA/MER2_type 122 2 \(224) 8
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
258 ======== ========= ========= ========= ========== =========== ========= ========= ============ =============== =================== ================ ============== ======= ==
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
259
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
260 This is a sequence in which a Tigger1 DNA transposon has integrated into a MER7 DNA transposon copy.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
261 Subsequently two Alus integrated in the Tigger1 sequence. The simple repeat is derived from the
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
262 poly A of the Alu element. The first line is interpreted like this:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
263
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
264 :Table description:
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
265
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
266 1. **1306** = Smith-Waterman score of the match, usually complexity adjusted
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
267 The SW scores are not always directly comparable. Sometimes
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
268 the complexity adjustment has been turned off, and a variety of
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
269 scoring-matrices are used.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
270
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
271 #. **15.6** = % substitutions in matching region compared to the consensus
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
272 #. **6.2** = % of bases opposite a gap in the query sequence (deleted bp)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
273 #. **0.0** = % of bases opposite a gap in the repeat consensus (inserted bp)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
274 #. **HSU08988** = name of query sequence
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
275 #. **6563** = starting position of match in query sequence
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
276 #. **7714** = ending position of match in query sequence
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
277 #. **(22462)** = no. of bases in query sequence past the ending position of match
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
278 #. **C** = match is with the Complement of the consensus sequence in the database
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
279 #. **MER7A** = name of the matching interspersed repeat
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
280 #. **DNA/MER2_type** = the class of the repeat, in this case a DNA transposon fossil of the MER2 group (see below for list and references)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
281 #. **2418** = starting position of match in database sequence (using top-strand numbering)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
282 #. **1465** = ending position of match in database sequence
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
283 #. **(0)** = no. of bases in (complement of) the repeat consensus sequence prior to beginning of the match (so 0 means that the match extended all the way to the end of the repeat consensus sequence)
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
284 #. **1** = Identifier
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
285
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
286 An asterisk (\*) in the final column (no example shown) indicates that there is
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
287 a higher-scoring match whose domain partly (&lt;80%) includes the domain of this match.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
288
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
289 Note that the SW score and divergence numbers for the three Tigger1 lines are identical.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
290 This is because the information is derived from a single alignment (the Alus were deleted
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
291 from the query before the alignment with the Tigger element was performed).
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
292 The program makes educated guesses about many fragments if they are derived from
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
293 the same element (e.g. it knows that the MER7A fragments represent one insert).
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
294 In a next version I can identify each element with a unique ID, if interest exists
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
295 (this could help to represent repeats cleaner in graphic displays).
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
296
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
297
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
298 -------
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
299
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
300 **References**
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
301
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
302 Smit, AFA, Hubley, R and Green, P. RepeatMasker Open-3.0.
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
303
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
304 http://www.repeatmasker.org/
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
305
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
306 </help>
d4a2c739da3f Initial release under a consistent username. Fixes for stdout and the trailing semicolon.
bgruening
parents:
diff changeset
307 </tool>