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
The emodel in an memodel entity has ion_channel_models set to None, but when I fetch the emodel directly, then it has the ion_channel_models.
I would expect the ion_channel_models to be present in both cases.
Script to reproduce:
iterator = client.search_entity( entity_type=MEModel, token=access_token, limit=1, ) memodel = next(iterator) emodel = client.get_entity( entity_id=memodel.emodel.id, entity_type=EModel, token=access_token ) print(memodel.emodel.ion_channel_models). # gives None print(emodel.ion_channel_models). # gives actualm list of ion channel models
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The emodel in an memodel entity has ion_channel_models set to None, but when I fetch the emodel directly, then it has the ion_channel_models.
I would expect the ion_channel_models to be present in both cases.
Script to reproduce:
The text was updated successfully, but these errors were encountered: