I'm creating my first ontology with protege 5.2 and I'm running into some trouble.
Let's say I have the following Classes:
Gender
with subclasses Female
and Male
Human
with subclasses Patient
and Doctor
Disease
with subclass Cancer
with subclass Prostate_Cancer
and the properties:
hasDisease
(doman: Patient
, range: Disease
)
hasGender
(domain: Patient
, range: Gender
)
Now I want to specify that a Patient
who hasDisease
Prostate_Cancer
is a Patient
who also hasGender
Male
.
Is this possible without creating new classes?