annotate getIndelRates_3way.xml @ 0:02e619ae15dc draft default tip

Imported from capsule None
author devteam
date Tue, 01 Apr 2014 09:12:55 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
1 <tool id="indelRates_3way" name="Estimate Indel Rates" version="1.0.0">
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
2 <description> for 3-way alignments</description>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
3 <requirements>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
4 <requirement type="package" version="0.7.1">bx-python</requirement>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
5 <requirement type="package" version="1.0.0">galaxy-ops</requirement>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
6 </requirements>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
7 <command interpreter="python">
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
8 getIndelRates_3way.py $input1 $out_file1
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
9 #if $region.type == "align"
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
10 "None"
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
11 #else
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
12 $region.input2 $input2.dbkey $input2.metadata.chromCol,$input2.metadata.startCol,$input2.metadata.endCol,$input2.metadata.strandCol
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
13 #end if
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
14 </command>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
15 <inputs>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
16 <page>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
17 <param format="tabular" name="input1" type="data" label="Select dataset containing Indels"/>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
18
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
19 <conditional name="region">
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
20 <param name="type" type="select" label="Estimate rates corresponding to" multiple="false">
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
21 <option value="win" selected="True">Intervals in your history</option>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
22 <option value="align">Alignment block</option>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
23 </param>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
24 <when value="win">
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
25 <param format="interval" name="input2" type="data" label="Choose intervals">
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
26 <validator type="unspecified_build" />
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
27 </param>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
28 </when>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
29 <when value="align" />
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
30 </conditional>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
31
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
32 </page>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
33 </inputs>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
34 <outputs>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
35 <data format="tabular" name="out_file1" metadata_source="input1"/>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
36 </outputs>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
37
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
38 <tests>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
39 <test>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
40 <param name="input1" value="indels_3way.tabular"/>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
41 <param name="type" value="align"/>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
42 <output name="out_file1" file="indelrates_3way.tabular"/>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
43 </test>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
44 </tests>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
45
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
46 <help>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
47
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
48 .. class:: infomark
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
49
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
50 **What it does**
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
51
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
52 This tool estimates the insertion and deletion rates for alignments in a window of specified size. Rates are computed over the total adjusted lengths (adjusted by disregarding masked bases) of all the alignments blocks from the indel file that fall within that window.
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
53
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
54 -----
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
55
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
56 .. class:: warningmark
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
57
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
58 **Note**
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
59
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
60 This tool only works on the output of the 'Estimate Indel Rates for 3-way alignments' tool.
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
61
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
62 </help>
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
63
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
64
02e619ae15dc Imported from capsule None
devteam
parents:
diff changeset
65 </tool>