We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given
[Term] id: CHEBI:0 name: c0 is_a: CHEBI:1 [Term] id: CHEBI:1 name: c1 is_obsolete: true replaced_by: CHEBI:2 is_a: CHEBI:3 [Term] id: CHEBI:2 name: c2 [Term] id: CHEBI:3 name: c3
running repair will rewire c0 (which points to an obsoleted c1)
however, it will leave in place the axioms about c1:
robot repair -i t.obo -o t2.obo && cat t2.obo
yields
[Term] id: CHEBI:0 name: c0 is_a: CHEBI:2 ! c2 [Term] id: CHEBI:1 name: c1 is_a: CHEBI:3 ! c3 is_obsolete: true replaced_by: CHEBI:2 [Term] id: CHEBI:2 name: c2 [Term] id: CHEBI:3 name: c3
it would be useful have an axiom that rewires c1 is_a c3 => c2 is_a c3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given
running repair will rewire c0 (which points to an obsoleted c1)
however, it will leave in place the axioms about c1:
robot repair -i t.obo -o t2.obo && cat t2.obo
yields
it would be useful have an axiom that rewires c1 is_a c3 => c2 is_a c3
The text was updated successfully, but these errors were encountered: