comparison closestBed.xml @ 17:a2d4c30ba2f9 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
author iuc
date Sun, 21 Jun 2015 22:49:46 -0400
parents 0d3aa592ce27
children 102424c60727
comparison
equal deleted inserted replaced
16:e30113df8cf6 17:a2d4c30ba2f9
1 <tool id="bedtools_closestbed" name="ClosestBed" version="@WRAPPER_VERSION@.0"> 1 <tool id="bedtools_closestbed" name="ClosestBed" version="@WRAPPER_VERSION@.0">
2 <description></description> 2 <description>find the closest, potentially non-overlapping interval</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
7 <expand macro="stdio" /> 7 <expand macro="stdio" />
18 $addition2.id 18 $addition2.id
19 #end if 19 #end if
20 $io 20 $io
21 -mdb $mdb 21 -mdb $mdb
22 -t $ties 22 -t $ties
23 #if $k:
24 -k $k
25 #end if
23 -a $inputA 26 -a $inputA
24 -b $inputBs 27 -b $inputBs
25 > $output 28 > $output
26 ]]> 29 ]]>
27 </command> 30 </command>
51 <option value="ref">Report distance with respect to the reference genome. B features with a lower (start, stop) are upstream. (-ref)</option> 54 <option value="ref">Report distance with respect to the reference genome. B features with a lower (start, stop) are upstream. (-ref)</option>
52 <option value="a">Report distance with respect to A. When A is on the - strand, "upstream" means B has a higher (start,stop). (-a)</option> 55 <option value="a">Report distance with respect to A. When A is on the - strand, "upstream" means B has a higher (start,stop). (-a)</option>
53 <option value="b">Report distance with respect to B. When B is on the - strand, "upstream" means A has a higher (start,stop). (-b)</option> 56 <option value="b">Report distance with respect to B. When B is on the - strand, "upstream" means A has a higher (start,stop). (-b)</option>
54 </param> 57 </param>
55 <when value="ref"> 58 <when value="ref">
56 <param name="iu" type="boolean" checked="false" truevalue="-iu" falsevalue="" 59 <expand macro="closest_D_option" />
57 label="Ignore features in B that are upstream of features in A"
58 help="This option requires -D and follows its orientation rules for determining what is 'upstream'. (-iu)" />
59
60 <param name="id" type="boolean" checked="false" truevalue="-id" falsevalue=""
61 label="Ignore features in B that are downstream of features in A"
62 help="This option requires -D and follows its orientation rules for determining what is 'downstream'. (-id)" />
63 </when> 60 </when>
64 <when value="a"> 61 <when value="a">
65 <param name="iu" type="boolean" checked="false" truevalue="-iu" falsevalue="" 62 <expand macro="closest_D_option" />
66 label="Ignore features in B that are upstream of features in A"
67 help="This option requires -D and follows its orientation rules for determining what is 'upstream'. (-iu)" />
68
69 <param name="id" type="boolean" checked="false" truevalue="-id" falsevalue=""
70 label="Ignore features in B that are downstream of features in A"
71 help="This option requires -D and follows its orientation rules for determining what is 'downstream'. (-id)" />
72 </when> 63 </when>
73 <when value="b"> 64 <when value="b">
74 <param name="iu" type="boolean" checked="false" truevalue="-iu" falsevalue="" 65 <expand macro="closest_D_option" />
75 label="Ignore features in B that are upstream of features in A"
76 help="This option requires -D and follows its orientation rules for determining what is 'upstream'. (-iu)" />
77
78 <param name="id" type="boolean" checked="false" truevalue="-id" falsevalue=""
79 label="Ignore features in B that are downstream of features in A"
80 help="This option requires -D and follows its orientation rules for determining what is 'downstream'. (-id)" />
81 </when> 66 </when>
82 </conditional> 67 </conditional>
68
69 <param name="k" type="integer" value="1" optional="True" min="1"
70 label="Report the k closest hits" help="(-k)"/>
83 71
84 <param name="io" type="boolean" checked="false" truevalue="-io" falsevalue="" 72 <param name="io" type="boolean" checked="false" truevalue="-io" falsevalue=""
85 label="Ignore features in B that overlap A" 73 label="Ignore features in B that overlap A"
86 help="That is, we want close, yet not touching features only. (-io)" /> 74 help="That is, we want close, yet not touching features only. (-io)" />
87 75
124 <param name="inputA" value="closestBed_c.bed" ftype="bed" /> 112 <param name="inputA" value="closestBed_c.bed" ftype="bed" />
125 <param name="inputB" value="closestBed_d.bed" ftype="bed" /> 113 <param name="inputB" value="closestBed_d.bed" ftype="bed" />
126 <param name="addition2_select" value="a" /> 114 <param name="addition2_select" value="a" />
127 <output name="output" file="closestBed_result5.bed" ftype="bed" /> 115 <output name="output" file="closestBed_result5.bed" ftype="bed" />
128 </test> 116 </test>
117 <test>
118 <param name="inputA" value="closestBedA.bed" ftype="bed" />
119 <param name="inputB" value="a.bed" ftype="bed" />
120 <param name="k" value="3" />
121 <output name="output" file="closestBed_result6.bed" ftype="bed" />
122 </test>
129 </tests> 123 </tests>
130 <help> 124 <help>
131 <![CDATA[ 125 <![CDATA[
132 **What it does** 126 **What it does**
133 127