comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:02e619ae15dc
1 <tool id="indelRates_3way" name="Estimate Indel Rates" version="1.0.0">
2 <description> for 3-way alignments</description>
3 <requirements>
4 <requirement type="package" version="0.7.1">bx-python</requirement>
5 <requirement type="package" version="1.0.0">galaxy-ops</requirement>
6 </requirements>
7 <command interpreter="python">
8 getIndelRates_3way.py $input1 $out_file1
9 #if $region.type == "align"
10 "None"
11 #else
12 $region.input2 $input2.dbkey $input2.metadata.chromCol,$input2.metadata.startCol,$input2.metadata.endCol,$input2.metadata.strandCol
13 #end if
14 </command>
15 <inputs>
16 <page>
17 <param format="tabular" name="input1" type="data" label="Select dataset containing Indels"/>
18
19 <conditional name="region">
20 <param name="type" type="select" label="Estimate rates corresponding to" multiple="false">
21 <option value="win" selected="True">Intervals in your history</option>
22 <option value="align">Alignment block</option>
23 </param>
24 <when value="win">
25 <param format="interval" name="input2" type="data" label="Choose intervals">
26 <validator type="unspecified_build" />
27 </param>
28 </when>
29 <when value="align" />
30 </conditional>
31
32 </page>
33 </inputs>
34 <outputs>
35 <data format="tabular" name="out_file1" metadata_source="input1"/>
36 </outputs>
37
38 <tests>
39 <test>
40 <param name="input1" value="indels_3way.tabular"/>
41 <param name="type" value="align"/>
42 <output name="out_file1" file="indelrates_3way.tabular"/>
43 </test>
44 </tests>
45
46 <help>
47
48 .. class:: infomark
49
50 **What it does**
51
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.
53
54 -----
55
56 .. class:: warningmark
57
58 **Note**
59
60 This tool only works on the output of the 'Estimate Indel Rates for 3-way alignments' tool.
61
62 </help>
63
64
65 </tool>