forked from FAIRMetrics/Metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FM_I2
57 lines (48 loc) · 2.21 KB
/
FM_I2
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
@prefix this: <https://purl.org/fair-metrics/FM_I2> . # canonical URI for the metric
@prefix sub: <https://purl.org/fair-metrics/FM_I2#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dcelem: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix nx: <http://www.nextprot.org/db/search#> .
@prefix pav: <http://swan.mindinformatics.org/ontologies/1.2/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix prv: <http://purl.org/net/provenance/ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ro: <http://purl.org/obo/owl/OBO_REL#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <http://purl.org/fair-ontology#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
sub:Head {
sub:nanopub np:hasAssertion sub:assertion ;
np:hasProvenance sub:provenance ;
np:hasPublicationInfo sub:pubinfo ;
a np:Nanopublication .
}
sub:assertion {
this: a fair:FAIR-Metric ;
foaf:primaryTopic fair:I2 .
}
sub:provenance {
sub:assertion dcterms:author "Michel Dumontier", "Mark Wilkinson" , "Susanna Sansone", "Peter Doorn", "Luiz Bonino", "Erik Schultes" ;
rdfs:comment "FAIR Metric for Fair Principle I2"^^xsd:string ;
dcat:distribution _:dist1 ;
dcat:distribution _:dist2 ;
prov:wasGeneratedBy "FAIR Metrics Working Group" .
_:dist1 dcelem:format "application/x-texinfo" ;
rdf:type <http://rdfs.org/ns/void#Dataset> ;
rdf:type <http://www.w3.org/ns/dcat#Distribution> ;
dcat:downloadURL <https://raw.githubusercontent.com/FAIRMetrics/Metrics/master/Distributions/FM_I2.tex> .
_:dist2 dcelem:format "application/pdf" ;
rdf:type <http://rdfs.org/ns/void#Dataset> ;
rdf:type <http://www.w3.org/ns/dcat#Distribution> ;
dcat:downloadURL <https://raw.githubusercontent.com/FAIRMetrics/Metrics/master/Distributions/FM_I2.pdf> .
}
sub:pubinfo {
this: dcterms:created "2017-11-21T00:00:00.0Z"^^xsd:dateTime ;
dcterms:rights <https://creativecommons.org/publicdomain/zero/1.0> ;
dcterms:rightsHolder <http://go-fair.org> ;
pav:authoredBy "Mark Wilkinson" , <https://orcid.org/0000-0001-6960-357X> ;
pav:versionNumber "1" ;
}