# HG changeset patch # User iuc # Date 1773941538 0 # Node ID 61f9ddbc63ca6d599754b78684e77c0289a12a6c # Parent aff5135563c6ce208bd7a513c3dba8721b28354d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/column_maker commit bbe4c5db82c91ea04ca98a7bae1f62a49961d109 diff -r aff5135563c6 -r 61f9ddbc63ca column_maker.xml --- a/column_maker.xml Thu Aug 22 08:25:44 2024 +0000 +++ b/column_maker.xml Thu Mar 19 17:32:18 2026 +0000 @@ -1,4 +1,4 @@ - + on rows @@ -42,7 +42,7 @@ #if str($error_handling.auto_col_types) == 'on': #set $col_types = $input.metadata.column_types #else: - #set $col_types = ','.join(['str' for t in $input.metadata.column_types.split(',')]) + #set $col_types = ','.join(['str' for t in str($input.metadata.column_types).split(',')]) #end if --column-types $col_types $avoid_scientific_notation @@ -314,12 +314,14 @@ - Columns are referenced with **c** and a **number**. For example, **c1** refers to the first column of a tab-delimited file +- Basic arithmetic operations are supported: addition (``+``), subtraction (``-``), multiplication (``*``), division (``/``), modulo (``%``), exponentiation (``**``), floor division (``//``) + - The following built-in Python functions are available for use in expressions:: - abs | all | any | ascii | bin | bool | chr | complex | divmod | float | format | hex | int | len | list + abs | all | any | ascii | bin | bool | chr | complex | divmod | float | format | hex | int | len | list map | max | min | oct | ord | pow | range | reversed | round | set | sorted | str | sum | type - acos | acosh | asin | asinh | atan | atan2 | atanh | cbrt | ceil | comb | copysign | cos | cosh | degrees + acos | acosh | asin | asinh | atan | atan2 | atanh | cbrt | ceil | comb | copysign | cos | cosh | degrees dist | erf | erfc | exp | exp2 | expm1 | fabs | factorial | floor | fmod | frexp | fsum | gamma | gcd hypot | inf | isclose | isfinite | isinf | isnan | isqrt | ldexp | lgamma | log | log10 | log1p | log2 modf | nextafter | perm | pow | prod | remainder | sin | sqrt | tan | tanh | tau | trunc | ulp