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
Some Methods have specific requirements/dependencies. For example, the JansenRit model requires its own coupling SigmoidalJansenRit
JansenRit
SigmoidalJansenRit
I added the required nodes already to the class dictionary:
def ontoclass2dict(ontoclass): """ Convert an OntoClass object to a JSON object Args: ontoclass: OntoClass object Returns: dict: JSON object """ return { "id": uid2int(ontoclass.identifier), "iri": ontoclass.iri, "label": ontoclass.label.first(), "symbol": label2symbol(ontoclass), "type": ontology.get_type(ontoclass).label.first(), "definition": ontoclass.definition.first(), "collapsed": True, "childNodes": [], "childLinks": [], "is_a": [p.name for p in ontoclass.is_a if isinstance(p, owl.ThingClass)], "requires": [ p.name for p in ontoclass.requires ], }
Would it be possible to implement a mechanism in the front-end that co-adds the corresponding classes to the workspace?
The text was updated successfully, but these errors were encountered:
Yes, we can totally do this. What would be the strategy in case there is more than just one option available?
Sorry, something went wrong.
Maybe we can highlight the edges representing dependencies so the user can choose between options if more are available. Something like in https://github.com/vasturiano/react-force-graph/blob/master/example/highlight/index.html
What do you say?
romina1601
No branches or pull requests
Background
Some Methods have specific requirements/dependencies. For example, the
JansenRit
model requires its own couplingSigmoidalJansenRit
Goal
Implementation
I added the required nodes already to the class dictionary:
Would it be possible to implement a mechanism in the front-end that co-adds the corresponding classes to the workspace?
The text was updated successfully, but these errors were encountered: