PathVisio / GPML

Graphical Pathway Markup Language
5 stars 3 forks source link

support for quotes in evidence #87

Open egonw opened 1 year ago

egonw commented 1 year ago

The current schema says:

<gpml:Evidences>
  <gpml:Evidence elementId="xsd:ID [1] ?" value="xsd:string [0..1] ?"> [0..*] ?
    <gpml:Xref> ... </gpml:Xref> [1] ?
    <gpml:Url> ... </gpml:Url> [0..1] ?
  </gpml:Evidence>
</gpml:Evidences>

What about extending this to, where one quote would be one evidence, and multiple evidences could have the same Xref?

<gpml:Evidences>
  <gpml:Evidence elementId="xsd:ID [1] ?" value="xsd:string [0..1] ?"> [0..*] ?
    <gpml:Xref> ... </gpml:Xref> [1] ?
    <gpml:Quote> ... </gpml:Quote> [0..1] ?
    <gpml:Url> ... </gpml:Url> [0..1] ?
  </gpml:Evidence>
</gpml:Evidences>