Skip to content

core.creator

Creator information for models and archives.

Creator

Creator(
    familyName,
    givenName,
    email,
    organization,
    site=None,
    orcid=None,
)

A person credited with a model or archive.

Used in the SBML ModelHistory and in the metadata of other COMBINE formats.

Attributes:

Name Type Description
familyName

family name of the creator

givenName

given name of the creator

email

email address

organization

affiliation of the creator

site

url of a personal or institutional website

orcid

ORCID of the creator, e.g., 0000-0003-1725-179X

Example
creator = Creator(
    familyName="König",
    givenName="Matthias",
    email="konigmatt@googlemail.com",
    organization="Humboldt-University Berlin",
    orcid="0000-0003-1725-179X",
)

Initialize the creator.