comparison gmql_operators_merge_union_diff.xml @ 0:a80c93182db3 draft default tip

planemo upload for repository https://github.com/lu-brn/gmql-galaxy commit 953ee36ceda5814dc9baa03427bc0eb4ee2e93bd-dirty
author geco-team
date Tue, 26 Jun 2018 09:08:06 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a80c93182db3
1 <macros>
2 <import>gmql_queries_macros.xml</import>
3 <xml name="merge">
4 <expand macro="input_var" name="input_var" label="Input Dataset" optional="false" />
5 <expand macro="output_var" />
6 <section name="groupby" title="Group Samples" expanded="true"
7 help="Grouping metadata attributes can be specified: the samples are then partitioned in groups,
8 each with a distinct value of the grouping metadata attributes, and the MERGE operation is applied to each
9 group separately, yielding to one sample in the result dataset for each group. Samples without the grouping
10 metadata attributes are disregarded">
11 <repeat name="group_meta_atts" min="0" title="Metadata Attribute">
12 <expand macro="metajoin_attribute" name="j_att" optional="true" >
13 <expand macro="metajoin_options" />
14 </expand>
15 </repeat>
16 </section>
17 <expand macro="materialize_stm" />
18 </xml>
19 <xml name="union">
20 <expand macro="input_var" name="input_var_first" label="First Dataset to be unified" optional="false" />
21 <expand macro="input_var" name="input_var_second" label="Second Dataset to be unified" optional="false" />
22 <expand macro="output_var" />
23 <expand macro="materialize_stm" />
24 </xml>
25 <xml name="difference">
26 <param name="input_var_reference" label="Reference Dataset" type="text"
27 help="It is he dataset which is copied in the output and from which regions of DS neg are “subtracted”.
28 Must be a dataset variable already defined as output of a previous operation.">
29 <expand macro="text_val" />
30 </param>
31 <param name="input_var_negative" label="Dataset to subtract from Reference" type="text"
32 help="If any reference region is found to have intersection with a region in this dataset, it is removed from
33 the output dataset. Must be a dataset variable already defined as output of a previous operation.">
34 <expand macro="text_val" />
35 </param>
36 <param name="exact_flag" label="Exact matching?" type="boolean" help="If selected, regions are not kept in
37 the result only if they exactly matches regions in the reference dataset." />
38 <section name="joinby" title="Joinby Conditions" expanded="true"
39 help="If attributes are specified, only samples that have the same value for each attributeare considered
40 when performing the DIFFERENCE.">
41 <repeat name="group_meta_atts" min="0" title="Metadata Attribute">
42 <expand macro="metajoin_attribute" name="j_att" optional="true" >
43 <expand macro="metajoin_options" />
44 </expand>
45 </repeat>
46 </section>
47 <expand macro="output_var" />
48 <expand macro="materialize_stm" />
49 </xml>
50 </macros>