-
Notifications
You must be signed in to change notification settings - Fork 50
/
mySnippet
131 lines (123 loc) · 7.57 KB
/
mySnippet
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
'memo':
'prefix': 'mem'
'body': 'ca:memo ; # use triple quotes'
'in-text block':
'prefix': 'itb'
'body': """
doiFIXME: rdf:type citec:in_text_mention ; # use in text mention name
citec:full_quote FIXME ; # use triple quotes
citec:on_pdf_page FIXME ; # integer
citec:spans_pages FIXME ; # true/false
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:mention_type ;
rdfs:label FIXME software | algorithm | hardware | database | web platform | other ; # put one in triple quotes
ca:certainty FIXME1-10 ; # integer
ca:memo FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:software_was_used ;
citec:isPresent FIXME; # true/false
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:software_name ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:version_number ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:version_date ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:url ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:creator ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
citec:has_reference doi-citedFIXME: ; # name reference like doi-cited:a2004-40-NAT_GENET_Author-YYYY, no quotes
."""
'reference block':
'prefix': 'refb'
'body': """
doi-citedFIXME: rdf:type citec:reference ;
citec:full_quote FIXME ; # use triple quotes
citec:on_pdf_page FIXME ; # integer
citec:spans_pages FIXME ; # true/false
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:reference_type ;
rdfs:label FIXME publication | user_guide | project_page | project_name ; # put one in triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:software_name ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:version_number ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:version_date ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:url ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
ca:isTargetOf
[ rdf:type ca:CodeApplication ;
ca:hasCoder "caifand" ;
ca:appliesCode [ rdf:type citec:creator ;
citec:isPresent FIXME ; # true/false
rdfs:label FIXME ; # use triple quotes
] ;
] ;
."""