-
Notifications
You must be signed in to change notification settings - Fork 0
/
templ_hint.ttl
32 lines (30 loc) · 1.26 KB
/
templ_hint.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{# HiNT
Embedded variable list
{{organism}}
{{ message.SNo }}
{{ message.UniprotA }}
{{ message.UniprotB }}
{{ message.GeneA }}
{{ message.GeneB }}
{{ message.proteinForm }} # "binary" or "co-complex"
{{ message.hilo }} # "high" or "low"
{{ Publication.Comma }} # 0:put no-comma, >1:put comma
{{ Publication.DB }} # Database name
{{ Publication.ID }} i # pmid
{{ Publication.Method }}
{{ Publication.Quality }} # "high-throughput" or "literature-curated"
#}
hnt:{{ message.UniprotA }}-{{ message.UniprotB }}
bp3:dataSource <http://identifiers.org/HINT> ;
bp3:displayName "{{ message.UniprotA }}-{{ message.UniprotB }}"^^xsd:string ;
bp3:evidence {% for Publication in message.Publications %}{% if Publication.Comma > 0 %},{% endif %} pint:evidence-{{ Publication.DB }}_{{ Publication.ID }}-MI_{{ Publication.Method }}-{{ Publication.Quality }} {% endfor %} ;
bp3:name "{{ message.UniprotA }}-{{ message.UniprotB }}"^^xsd:string ;
bp3:participant [
obo:BFO_0000051 uni:{{ message.UniprotA }} ;
] ;
bp3:participant [
obo:BFO_0000051 uni:{{ message.UniprotB }} ;
] ;
pint:networkVariety "{{ message.proteinForm }}"^^xsd:string ;
pint:accuracy "{{ message.hilo }}"^^xsd:string ;
a bp3:MolecularInteraction .