File: mreps.xml

package info (click to toggle)
mobyle-programs 4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,508 kB
  • sloc: xml: 128,440; sh: 20; makefile: 4
file content (291 lines) | stat: -rw-r--r-- 9,840 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<?xml version='1.0' encoding='UTF-8'?>
<!-- XML Authors: Corinne Maufrais, Nicolas Joly and Bertrand Neron,             -->
<!-- 'Biological Software and Databases' Group, Institut Pasteur, Paris.         -->
<!-- Distributed under LGPLv2 License. Please refer to the COPYING.LIB document. -->
<program>
  <head>
    <name>mreps</name>
    <version>2.5</version>
    <doc>
      <title>mreps</title>
      <description>
        <text lang="en">Algorithm for finding tandem repeats in DNA sequences</text>
      </description>
      <authors>G. Kucherov</authors>
      <reference>R. Kolpakov, G. Kucherov, Finding maximal repetitions in a word in linear time, 1999 Symposium on Foundations of Computer Science (FOCS), New-York (USA), pp. 596-604, IEEE Computer Society</reference>
      <reference>R. Kolpakov, G. Kucherov, Finding Approximate Repetitions under Hamming Distance, 9-th European Symposium on Algorithms (ESA), Aarhus (Denmark), Lecture Notes in Computer Science, vol. 2161, pp 170-181.</reference>
      <doclink>http://bioinfo.lifl.fr/mreps/</doclink>
      <homepagelink>http://bioinfo.lifl.fr/mreps/</homepagelink>
      <sourcelink>http://bioinfo.lifl.fr/mreps/</sourcelink>
    </doc>
    <category>sequence:nucleic:repeats</category>
    <command>mreps</command>
  </head>
  <parameters>
    <parameter ismandatory="1" issimple="1">
      <name>query</name>
      <prompt lang="en">Query Sequence file</prompt>
      <type>
        <biotype>DNA</biotype>
        <datatype>
          <class>Sequence</class>
        </datatype>
        <dataFormat>FASTA</dataFormat>
      </type>
      <format>
        <code proglang="perl">" -fasta $value"</code>
        <code proglang="python">" -fasta "+str(value)</code>
      </format>
      <argpos>20</argpos>
    </parameter>
    <parameter>
      <name>err</name>
      <prompt lang="en">Specifies the resolution (-res)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value ) ? " -res $value" : ""</code>
        <code proglang="python">( "" , " -res " + str(value) )[ value is not None]</code>
      </format>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>from_v</name>
      <prompt lang="en">Specifies starting position (-from)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -from $value" : ""</code>
        <code proglang="python">( "" , " -from " + str(value) )[ value is not None ]</code>
      </format>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>to</name>
      <prompt lang="en">Specifies end position (-to)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -to $value" : ""</code>
        <code proglang="python">( "" , " -to " + str(value) )[ value is not None ]</code>
      </format>
      <ctrl>
        <message>
          <text lang="en">End position must be greater or equal to the starting position</text>
        </message>
        <code proglang="perl">$value &gt;= $from_v</code>
        <code proglang="python">value &gt;= from_v</code>
      </ctrl>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>win</name>
      <prompt lang="en">Processes by sliding windows of size 2*n overlaping by n (-win)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -win $value" : ""</code>
        <code proglang="python">( "" , " -win " + str(value) )[ value is not None ]</code>
      </format>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>minsize</name>
      <prompt lang="en">Report repetitions whose size is at least n (-minsize)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -minsize $value" : ""</code>
        <code proglang="python">( "" , " -minsize " + str(value) )[ value is not None ]</code>
      </format>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>maxsize</name>
      <prompt lang="en">Report repetitions whose size is at most n (-maxsize)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -maxsize $value" : ""</code>
        <code proglang="python">( "" , " -maxsize " + str(value) )[ value is not None ]</code>
      </format>
      <ctrl>
        <message>
          <text lang="en">Maximal size must be greater or equal to the minimal size</text>
        </message>
        <code proglang="perl">$value &gt;= $minsize</code>
        <code proglang="python">value &gt;= minsize</code>
      </ctrl>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>minperiod</name>
      <prompt lang="en">Report repetitions whose period is at least n (-minperiod)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -minperiod $value" : ""</code>
        <code proglang="python">( "" , " -minperiod " + str(value) )[ value is not None ]</code>
      </format>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>maxperiod</name>
      <prompt lang="en">Report repetitions whose period is at most n (-maxperiod)</prompt>
      <type>
        <datatype>
          <class>Integer</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -maxperiod $value" : ""</code>
        <code proglang="python">( "" , " -maxperiod " + str(value) )[ value is not None ]</code>
      </format>
      <ctrl>
        <message>
          <text lang="en">Maximal period must be greater or equal to the minimal period</text>
        </message>
        <code proglang="perl">$value &gt;= $minperiod</code>
        <code proglang="python">value &gt;= minperiod</code>
      </ctrl>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Integer value</text>
      </comment>
    </parameter>
    <parameter>
      <name>exp</name>
      <prompt lang="en">Report repetitions whose exponent is at least n (-exp)</prompt>
      <type>
        <datatype>
          <class>Float</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -exp $value" : ""</code>
        <code proglang="python">( "" , " -exp " + str(value) )[ value is not None ]</code>
      </format>
      <ctrl>
        <message>
          <text lang="en">You must give a float value greater than or equal to 1.0</text>
        </message>
        <code proglang="perl">$value &gt;= 1.0</code>
        <code proglang="python">value &gt;= 1.0</code>
      </ctrl>
      <argpos>10</argpos>
      <comment>
        <text lang="en">Float value greater tha 1.0</text>
      </comment>
    </parameter>
    <parameter>
      <name>allowsmall</name>
      <prompt lang="en">Output small repeats that can occur randomly (-allowsmall)</prompt>
      <type>
        <datatype>
          <class>Boolean</class>
        </datatype>
      </type>
      <vdef>
        <value>0</value>
      </vdef>
      <format>
        <code proglang="perl">( $value) ? " -allowsmall" : ""</code>
        <code proglang="python">( "" , " -allowsmall" )[ value ]</code>
      </format>
      <argpos>10</argpos>
    </parameter>
    <parameter>
      <name>noprint</name>
      <prompt lang="en">Do not output repetitions sequences (-noprint)</prompt>
      <type>
        <datatype>
          <class>Boolean</class>
        </datatype>
      </type>
      <vdef>
        <value>0</value>
      </vdef>
      <format>
        <code proglang="perl">( $value) ? " -noprint" : ""</code>
        <code proglang="python">( "" , " -noprint" )[ value ]</code>
      </format>
      <argpos>10</argpos>
    </parameter>
    <parameter>
      <name>xml</name>
      <prompt lang="en">XML format output file name (-xmloutput)</prompt>
      <type>
        <datatype>
          <class>Filename</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " -xmloutput $value" : ""</code>
        <code proglang="python">( "" , " -xmloutput " + str(value) )[ value is not None ]</code>
      </format>
      <argpos>10</argpos>
    </parameter>
    <parameter isout="1">
      <name>xmlout</name>
      <prompt lang="en">XML output file</prompt>
      <type>
        <datatype>
          <class>MrepsXmlReport</class>
          <superclass>Report</superclass>
        </datatype>
      </type>
      <precond>
        <code proglang="perl">$xml</code>
        <code proglang="python">xml is not None</code>
      </precond>
      <argpos>10</argpos>
      <filenames>
        <code proglang="perl">$xml</code>
        <code proglang="python">str(xml)</code>
      </filenames>
    </parameter>
  </parameters>
</program>