annotation.conf 704 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # -*- Mode: Text; tab-width: 2; indent-tabs-mode: nil; coding: utf-8; -*-
  2. # vim:set ft=conf ts=2 sw=2 sts=2 autoindent:
  3. # Simple text-based definitions of entity, relation and event types
  4. # and event attributes.
  5. [entities]
  6. patient
  7. age
  8. gender
  9. ethnicity
  10. ------
  11. gene
  12. mutation
  13. ------
  14. characteristic
  15. disease
  16. ------
  17. body-part
  18. location
  19. [relations]
  20. has Arg1:patient, Arg2:age
  21. has Arg1:patient, Arg2:gender
  22. has Arg1:patient, Arg2:ethnicity
  23. has Arg1:mutation, Arg2:characteristic
  24. has Arg1:patient, Arg2:mutation
  25. relatedTo Arg1:mutation, Arg2:disease
  26. has Arg1:disease, Arg2:body-part
  27. has Arg1:gene, Arg2:mutation
  28. has Arg1:mutation, Arg2:location
  29. [events]
  30. # (none defined)
  31. [attributes]
  32. # (none defined)