-
Notifications
You must be signed in to change notification settings - Fork 34
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
Ensure owltools produces correct aspect when generating predicted GAFs #237
Comments
Example
which is correct now gives
|
From my observation, it seems that your speculation is correct. When I ran owltools with the following option,
The owltools internally calls Init() of BasicAnnotationPropagator. In this method, there's a code that creates an
What happens in this method is that map right now is first to fill the map with
Later, this aspectMap is used in predictForBioEntity of BasicAnnotationPropagator and getSubOntology(linkedClass) still returns null, and the
So what happens in
When Anyway, it may be sufficient to put new conditions that check null keys in |
See geneontology/go-site#524
What appears to be happening is this. OWLTools is making an assumption that the 'namespace' tag is present, and uses this to make the aspect.
In the context of the pipeline we make a temporary version of the GO imports closure that has this stripped out. We should change this, but owltools should not silently continue if this is not present.
The text was updated successfully, but these errors were encountered: