the query would be much more clear using table maker
but it also works in direct query thanks to the fact theat the position is UNIQUE
to get it right remember that a query works with an implict pointer inside the object
"find STS Map = Chr_6
either returns false, on some STS or TRUE and points on the value Chr_6
what you want is
find STS ( Map = Chr_6 # Left >70000) & ( Map = Chr_6 # Right < 100000)
in this way you go back to Map = Chr_6 twice before looking for left or right
example
on the worm database
acedb at beta.crbm.cnrs-mop.fr> query find rearrangement ( map = V # left = -0.316634 ) & ( map = V # Right = -0.22476)
// Reponse: 48 bytes.
// Found 1 objects
// 1 Active Objects
acedb at beta.crbm.cnrs-mop.fr> show map
// Reponse: 144 bytes.
Rearrangement adDf1059
Map V Ends Left -0.316634
Right -0.22476
// 1 object dumped
// 1 Active Objects
---