Add more apps for tagger

This commit is contained in:
Jan Eitzinger 2025-06-06 16:04:37 +02:00
parent 249128e011
commit 3d6dca9386
14 changed files with 32 additions and 4 deletions

View File

@ -0,0 +1 @@
alf

View File

@ -0,0 +1,7 @@
calc_rate
qmdffgen
dynamic
evbopt
explore
black_box
poly_qmdff

View File

@ -0,0 +1,3 @@
chroma
qdp
qmp

View File

@ -0,0 +1 @@
cp2k

View File

@ -0,0 +1 @@
cpmd

View File

@ -0,0 +1 @@
flame

View File

@ -1,4 +1,3 @@
GROMACS
gromacs
GMX
gmx
mdrun

View File

@ -0,0 +1 @@
lmp

View File

@ -0,0 +1 @@
orca

View File

@ -1,3 +1,4 @@
python
pip
anaconda
conda

View File

@ -0,0 +1,3 @@
pw
neb
ph

View File

@ -0,0 +1,10 @@
dscf
grad
ridft
rdgrad
ricc2
statpt
aoforce
escf
egrad
odft

View File

@ -1,2 +1 @@
VASP
vasp

View File

@ -111,7 +111,7 @@ func (t *AppTagger) Match(job *schema.Job) {
for _, a := range t.apps {
tag := a.tag
for _, s := range a.strings {
if strings.Contains(jobscript, s) {
if strings.Contains(strings.ToLower(jobscript), s) {
if !r.HasTag(id, t.tagType, tag) {
r.AddTagOrCreateDirect(id, t.tagType, tag)
break out