mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
Update the expression language
This commit is contained in:
@ -8,7 +8,7 @@ import (
|
|||||||
// corresponds to the last commit, and not the one when the file will be
|
// corresponds to the last commit, and not the one when the file will be
|
||||||
// commited
|
// commited
|
||||||
|
|
||||||
var _Commit = "13ff892"
|
var _Commit = "e065e29"
|
||||||
var _Version = "Release 4.4.0"
|
var _Version = "Release 4.4.0"
|
||||||
|
|
||||||
// Version returns the version of the obitools package.
|
// Version returns the version of the obitools package.
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package obiseq
|
package obiseq
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
"regexp"
|
"regexp"
|
||||||
@ -145,14 +146,14 @@ var OBILang = gval.NewLanguage(
|
|||||||
ismap := obiutils.IsAMap(args[0])
|
ismap := obiutils.IsAMap(args[0])
|
||||||
return ismap, nil
|
return ismap, nil
|
||||||
}),
|
}),
|
||||||
|
gval.Function("isvector", func(args ...interface{}) (interface{}, error) {
|
||||||
|
isvector := obiutils.IsASlice(args[0])
|
||||||
|
return isvector, nil
|
||||||
|
}),
|
||||||
gval.Function("sprintf", func(args ...interface{}) (interface{}, error) {
|
gval.Function("sprintf", func(args ...interface{}) (interface{}, error) {
|
||||||
text := fmt.Sprintf(args[0].(string), args[1:]...)
|
text := fmt.Sprintf(args[0].(string), args[1:]...)
|
||||||
return text, nil
|
return text, nil
|
||||||
}),
|
}),
|
||||||
gval.Function("gsub", func(args ...interface{}) (interface{}, error) {
|
|
||||||
text := strings.ReplaceAll(args[0].(string), args[1].(string), args[2].(string))
|
|
||||||
return text, nil
|
|
||||||
}),
|
|
||||||
gval.Function("subspc", func(args ...interface{}) (interface{}, error) {
|
gval.Function("subspc", func(args ...interface{}) (interface{}, error) {
|
||||||
text := strings.ReplaceAll(args[0].(string), " ", "_")
|
text := strings.ReplaceAll(args[0].(string), " ", "_")
|
||||||
return text, nil
|
return text, nil
|
||||||
@ -181,6 +182,14 @@ var OBILang = gval.NewLanguage(
|
|||||||
}
|
}
|
||||||
return val, nil
|
return val, nil
|
||||||
}),
|
}),
|
||||||
|
gval.Function("string", func(args ...interface{}) (interface{}, error) {
|
||||||
|
val, err := obiutils.InterfaceToString(args[0])
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("%v cannot be converted to a string value", args[0])
|
||||||
|
}
|
||||||
|
return val, nil
|
||||||
|
}),
|
||||||
gval.Function("ifelse", func(args ...interface{}) (interface{}, error) {
|
gval.Function("ifelse", func(args ...interface{}) (interface{}, error) {
|
||||||
if args[0].(bool) {
|
if args[0].(bool) {
|
||||||
return args[1], nil
|
return args[1], nil
|
||||||
@ -192,13 +201,52 @@ var OBILang = gval.NewLanguage(
|
|||||||
composition := (args[0].(*BioSequence)).Composition()
|
composition := (args[0].(*BioSequence)).Composition()
|
||||||
return float64(composition['g']-composition['c']) / float64(composition['g']+composition['c']), nil
|
return float64(composition['g']-composition['c']) / float64(composition['g']+composition['c']), nil
|
||||||
}),
|
}),
|
||||||
|
gval.Function("qualities", func(args ...interface{}) (interface{}, error) {
|
||||||
|
qualities := (args[0].(*BioSequence)).Qualities()
|
||||||
|
rep := make([]interface{}, len(qualities))
|
||||||
|
for i, q := range qualities {
|
||||||
|
rep[i] = float64(q)
|
||||||
|
}
|
||||||
|
return rep, nil
|
||||||
|
}),
|
||||||
|
gval.Function("elementof", func(args ...interface{}) (interface{}, error) {
|
||||||
|
if obiutils.IsASlice(args[0]) {
|
||||||
|
pos, err := obiutils.InterfaceToInt(args[1])
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if slice, ok := args[0].([]interface{}); ok {
|
||||||
|
return slice[pos], nil
|
||||||
|
} else {
|
||||||
|
return nil, errors.New("obi: first argument incorrect slice")
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if obiutils.IsAMap(args[0]) {
|
||||||
|
pos, err := obiutils.InterfaceToString(args[1])
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if m, ok := args[0].(map[string]interface{}); ok {
|
||||||
|
return m[pos], nil
|
||||||
|
} else {
|
||||||
|
return nil, errors.New("obi: first argument incorrect map")
|
||||||
|
}
|
||||||
|
} else if s, ok := args[0].(string); ok {
|
||||||
|
pos, err := obiutils.InterfaceToInt(args[1])
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return string(s[pos]), nil
|
||||||
|
}
|
||||||
|
return nil, fmt.Errorf("invalid arguments")
|
||||||
|
}),
|
||||||
gval.Function("gc", func(args ...interface{}) (interface{}, error) {
|
gval.Function("gc", func(args ...interface{}) (interface{}, error) {
|
||||||
composition := (args[0].(*BioSequence)).Composition()
|
composition := (args[0].(*BioSequence)).Composition()
|
||||||
return float64(composition['g']+composition['c']) / float64(args[0].(*BioSequence).Len()), nil
|
return float64(composition['g']+composition['c']) / float64(args[0].(*BioSequence).Len()-composition['o']), nil
|
||||||
}),
|
}),
|
||||||
gval.Function("composition", func(args ...interface{}) (interface{}, error) {
|
gval.Function("composition", func(args ...interface{}) (interface{}, error) {
|
||||||
comp := (args[0].(*BioSequence)).Composition()
|
comp := (args[0].(*BioSequence)).Composition()
|
||||||
scomp := make(map[string]float64)
|
scomp := make(map[string]interface{}, 5)
|
||||||
for k, v := range comp {
|
for k, v := range comp {
|
||||||
scomp[string(k)] = float64(v)
|
scomp[string(k)] = float64(v)
|
||||||
}
|
}
|
||||||
@ -209,4 +257,22 @@ var OBILang = gval.NewLanguage(
|
|||||||
results := pattern.ReplaceAllString(args[0].(string), args[2].(string))
|
results := pattern.ReplaceAllString(args[0].(string), args[2].(string))
|
||||||
return results, nil
|
return results, nil
|
||||||
}),
|
}),
|
||||||
|
gval.Function("substr", func(args ...interface{}) (interface{}, error) {
|
||||||
|
str, ok1 := args[0].(string)
|
||||||
|
start, ok2 := args[1].(float64) // Gval utilise float64 pour les nombres
|
||||||
|
length, ok3 := args[2].(float64)
|
||||||
|
|
||||||
|
if !ok1 || !ok2 || !ok3 {
|
||||||
|
return nil, fmt.Errorf("invalid arguments")
|
||||||
|
}
|
||||||
|
|
||||||
|
startIndex := int(start)
|
||||||
|
endIndex := startIndex + int(length)
|
||||||
|
|
||||||
|
if startIndex < 0 || endIndex > len(str) {
|
||||||
|
return nil, fmt.Errorf("index out of range")
|
||||||
|
}
|
||||||
|
|
||||||
|
return str[startIndex:endIndex], nil
|
||||||
|
}),
|
||||||
)
|
)
|
||||||
|
@ -4,6 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
@ -14,7 +15,12 @@ import (
|
|||||||
// It returns the string representation and an error if any occurred during the conversion process.
|
// It returns the string representation and an error if any occurred during the conversion process.
|
||||||
func InterfaceToString(i interface{}) (val string, err error) {
|
func InterfaceToString(i interface{}) (val string, err error) {
|
||||||
err = nil
|
err = nil
|
||||||
val = fmt.Sprintf("%v", i)
|
if vc, ok := i.(interface{ String() string }); ok {
|
||||||
|
val = vc.String()
|
||||||
|
} else {
|
||||||
|
val = fmt.Sprintf("%v", i)
|
||||||
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,6 +73,10 @@ func InterfaceToBool(i interface{}) (val bool, err error) {
|
|||||||
val = t != 0 // standardizes across systems
|
val = t != 0 // standardizes across systems
|
||||||
case uint64:
|
case uint64:
|
||||||
val = t != 0 // standardizes across systems
|
val = t != 0 // standardizes across systems
|
||||||
|
case string:
|
||||||
|
val = strings.ToLower(t) == "true" || t == "1" || strings.ToLower(t) == "yes" || strings.ToLower(t) == "on" || strings.ToLower(t) == "t"
|
||||||
|
case nil:
|
||||||
|
val = false
|
||||||
default:
|
default:
|
||||||
err = &NotABoolean{"value attribute cannot be casted to a boolean"}
|
err = &NotABoolean{"value attribute cannot be casted to a boolean"}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user