-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Represent reference points #14
Comments
I’d say the number of reference points is rather small so far. So don’t like (1) because too much expansion of core properties. The diff between (2) and (3) is level of indirection and maybe formality. I wish I can’t quite figure out what part of the model is Secondary question: is RMSD any RMS deviation, or only RMS atomic position deviation? Seems to me the latter, and there are a lot of other RMS deviation types (distance, weight–basically any measurement or observation type). That likely needs modeling too. |
Agreed. I added (1) for completeness sake but I feel it is "hiding" some information in arbitrarily broach concepts - this time for
In my mind, this would be an class to be instantiated for this specific type of constraint and be part of the I-Adopt specification. Something similar to the following, using
However, I did no yet check whether there would be a suitable concept in some other ontology that could be re-used here.
There's plenty of other |
We had some questions concerning variables the modelling of variables where the property is in relation to some kind of reference point. Take Root mean square deviation of atomic positions (or RMSD) as an example. Here, you have two variants of a molecule (e.g., some protein) and compare the positions of atoms within those molecules. One of the molecules is considered the reference molecule wheras the second one is considered the variant. The observation is then made for the variant to "measure" its deviation from the reference molecule.
For modelling, we now have to make a decision how and where to capture this information. Overall I see three options right now as follows:
For all options we start with a modelling like
RMSD
Protein X
(1) Subclassing Properties
As the number of reference points is rather small, we could subclass those properties for these reference points and mint something like
RMSD with respect to Protein A
as a subclass ofRMSD
. This new property would then be used instead of the vanillaRMSD
.That would be rather easy to integrate but the information about the reference point is rather obstructed unless the minted sub-property somehow models it on its own.
(2) New Role for Reference Points
This would require adding a property to I-ADOPT similar to
hasMatrix
orhasContextObject
along the lines ofhasReferencePoint
. Then we could refer to the reference point as a part the Variable description itself.So the above model would look like
RMSD
Protein X
Protein A
Part of the modelling could be to create a sub-property for
hasContextObject
. As a reminder, the description for `hasContextObject`` readsTo me the reference point is one of such background information but has a very distinct role that can not just be subsumed by the generic
ContextObject
. This might warrant a new property or we go for option (3).(3) Use a Constraint on ContextObject
As mentioned under (2), I think that the reference point not just be "yet another ContextObject". Another object might be, to put that information in a Constraint of a ContextObject.
So, the Variable description would become
RMSD
Protein X
Protein A
- constrainedis reference point
This would not require a change to the I-ADOPT model but still maintain the information.
We could "encourage" this pattern via the Variable Design Patterns which we had started a while back and additionally include this in the "how to model"-tutorial.
As you might have guessed from the description, I'm currently tending towards Option 3.
However, I'd like to hear from others. Do you other ideas how to keep the information about the reference points as mentioned above?
The text was updated successfully, but these errors were encountered: