annotate column_maker.xml @ 2:464b9305180e draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
author devteam
date Thu, 25 Oct 2018 17:31:42 -0400
parents 626658afe4cb
children be25c075ed54
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
1 <tool id="Add_a_column1" name="Compute" version="1.2.0">
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
2 <description>an expression on every row</description>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
3 <requirements>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
4 <requirement type="package" version="2.7.13">python</requirement>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
5 <requirement type="package" version="4.4">sed</requirement>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
6 </requirements>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
7 <command detect_errors="aggressive"><![CDATA[
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
8 #if $header_lines_conditional.header_lines_select == "yes":
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
9 (sed -n '1,1p' '$input' | sed "s|$|%${header_lines_conditional.header_new_column_name}|" | tr "%" "\t") > header &&
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
10 sed '1,1d' '$input' > data &&
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
11 #else:
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
12 touch header &&
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
13 ln -s '$input' data &&
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
14 #end if
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
15
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
16 python '$__tool_directory__/column_maker.py'
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
17 data column_maker_output
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
18 "$cond"
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
19 $round
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
20 ${input.metadata.columns}
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
21 "${input.metadata.column_types}" &&
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
22 cat header column_maker_output > '$out_file1'
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
23 ]]></command>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
24 <inputs>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
25 <param name="cond" type="text" value="c3-c2" label="Add expression"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
26 <param format="tabular" name="input" type="data" label="as a new column to" help="Dataset missing? See TIP below"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
27 <param name="round" type="select" label="Round result?">
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
28 <option value="no">NO</option>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
29 <option value="yes">YES</option>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
30 </param>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
31 <conditional name="header_lines_conditional">
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
32 <param name="header_lines_select" type="select" label="Skip a header line" help="# characters are already considered as comments and kept" >
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
33 <option value="no" >no</option>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
34 <option value="yes" >yes</option>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
35 </param>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
36 <when value="no">
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
37 </when>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
38 <when value="yes">
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
39 <param name="header_new_column_name" type="text" value="New Column" label="The new column name" />
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
40 </when>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
41 </conditional>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
42 </inputs>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
43 <outputs>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
44 <data format_source="input" name="out_file1" metadata_source="input"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
45 </outputs>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
46 <tests>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
47 <test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
48 <param name="cond" value="c3-c2"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
49 <param name="input" value="1.bed"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
50 <param name="round" value="no"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
51 <output name="out_file1" file="column_maker_out1.interval"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
52 </test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
53 <test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
54 <param name="cond" value="c4*1"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
55 <param name="input" value="1.interval"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
56 <param name="round" value="no"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
57 <output name="out_file1" file="column_maker_out2.interval"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
58 </test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
59 <test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
60 <param name="cond" value="c4*1"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
61 <param name="input" value="1.header.tsv"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
62 <param name="round" value="no"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
63 <conditional name="header_lines_conditional">
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
64 <param name="header_lines_select" value="yes" />
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
65 <param name="header_new_column_name" value="value1_again" />
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
66 </conditional>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
67 <output name="out_file1" file="column_maker_out2.header.tsv"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
68 </test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
69 <test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
70 <param name="cond" value="c4*1"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
71 <param name="input" value="1.interval"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
72 <param name="round" value="yes"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
73 <output name="out_file1" file="column_maker_out3.interval"/>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
74 </test>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
75 </tests>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
76 <help>
0
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
77
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
78 .. class:: infomark
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
79
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
80 **TIP:** If your data is not TAB delimited, use *Text Manipulation-&gt;Convert*
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
81
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
82 -----
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
83
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
84 **What it does**
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
85
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
86 This tool computes an expression for every row of a dataset and appends the result as a new column (field).
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
87
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
88 - Columns are referenced with **c** and a **number**. For example, **c1** refers to the first column of a tab-delimited file
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
89
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
90 - **c3-c2** will add a length column to the dataset if **c2** and **c3** are start and end position
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
91
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
92 -----
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
93
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
94 **Example**
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
95
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
96 If this is your input::
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
97
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
98 chr1 151077881 151077918 2 200 -
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
99 chr1 151081985 151082078 3 500 +
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
100
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
101 computing "c4*c5" will produce::
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
102
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
103 chr1 151077881 151077918 2 200 - 400.0
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
104 chr1 151081985 151082078 3 500 + 1500.0
2
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
105
0
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
106 if, at the same time, "Round result?" is set to **YES** results will look like this::
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
107
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
108 chr1 151077881 151077918 2 200 - 400
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
109 chr1 151081985 151082078 3 500 + 1500
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
110
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
111 You can also use this tool to evaluate expressions. For example, computing "c3>=c2" for Input will result in the following::
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
112
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
113 chr1 151077881 151077918 2 200 - True
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
114 chr1 151081985 151082078 3 500 + True
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
115
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
116 or computing "type(c2)==type('') for Input will return::
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
117
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
118 chr1 151077881 151077918 2 200 - False
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
119 chr1 151081985 151082078 3 500 + False
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
120
2
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
121
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
122 The following build-in functions are available::
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
123
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
124 abs | all | any | bin | bool | chr | ceil | cmp | complex
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
125
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
126 divmod | exp | float | log | floor | hex | int | len | long
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
127
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
128 max | min | oct | ord | pow | range | reversed
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
129
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
130 round | sorted | sqrt | str | sum | type | unichr | unicode |
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
131
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
132 </help>
464b9305180e planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/column_maker commit f6e96ffa420035051ea4632596dfd171074aa66d
devteam
parents: 1
diff changeset
133 <citations />
0
08a01b2ce4cd Imported from capsule None
devteam
parents:
diff changeset
134 </tool>