I am interested, as a bit of an exercise, in writing a little parser in python that can use a set of potential tags, operators, and parentheses so that I can specify things like this:
(DP>10) & (LowMQ[0] < 0.05) & (SPV < 0.05)
I would need to parse out the tags DP, LowMQ, and SPV as well as the operators and order of operations. I have seen this done reasonably often in Java, but I have not seen this in python. Any suggestions on where to start or some example code?