7 OBITools expression language
Several OBITools (e.g. obigrep, obiannotate) allow the user to specify some simple expressions to compute values or define predicates. This expressions are parsed and evaluated using the gval go package, which allows for evaluating go-Like expression.
7.1 Variables usable in the expression
sequenceis the sequence object on which the expression is evaluated.annotationsis a map object containing every annotations associated to the currently processed sequence.
7.2 Function defined in the language
Instrospection functions
len(x)-
It is a generic function allowing to retreive the size of a object. It returns the length of a sequences, the number of element in a map like
annotations, the number of elements in an array. The reurned value is anint. contains(map,key)-
Tests if the
mapcontains a value assciated tokey
Cast functions
int(x)-
Converts if possible the
xvalue to an integer value. The function returns anint. numeric(x)-
Converts if possible the
xvalue to a float value. The function returns afloat. bool(x)-
Converts if possible the
xvalue to a boolean value. The function returns abool.
Condition function
ifelse(condition,val1,val2)-
The
conditionvalue has to be aboolvalue. If it istruethe function returnsval1, otherwise, it is returningval2.
7.3 Accessing to the sequence annotations
The annotations variable is a map object containing all the annotations associated to the currently processed sequence. Index of the map are the attribute names. It exists to possibillities to retreive an annotation. It is possible to use the classical [] indexing operator, putting the attribute name quoted by double quotes between them.
annotations["direction"]The above code retreives the direction annotation. A second notation using the dot (.) is often more convenient.
annotations.directionSpecial attributes of the sequence are accessible only by dedicated methods of the sequence object.
- The sequence identifier :
Id() - THe sequence definition :
Definition()
sequence.Id()