Removing states with wildcard selection doesn't work as expected -- or as I expect it to.
# fetch the moleule
fetch 1e0g
# split its states
split_states 1e0g
# remove all but the first state -- BROKEN
# in fact, the only one that IS removed is state 0001
delete not *_0001
# this does not work either; removes nothing, due to selection?
delete not (*_0001)
I expected this to work, b/c I can correctly issue the following:
# select state 2, for example
select *0002
But we cannot delete states using the wildcard.