The OWL encoding of EVI is available here.
evi | <https://w3id.org/EVI> |
prov | <https://www.w3.org/ns/prov> |
schema | <https://schema.org> |
owl | <http://www.w3.org/2002/07/owl> |
rdf | <http://www.w3.org/1999/02/22-rdf-syntax-ns> |
rdfs | <http://www.w3.org/2000/01/rdf-schema> |
xsd | <http://www.w3.org/2001/XMLSchema> |
terms | <http://purl.org/dc/terms> |
Figure 1. shows the EVI semantic model built using the classes and object properties. The core PROV ontology concepts used in EVI are Entity, Activity, and Agent, with two sub-classes Person and Organization. The object properties in EVI are used to establish relations among instances, most of which are of type DigitalObject. Computations are activities performed on instances of other DigitalObjects, Software or Services.
IRI: https://w3id.org/EVI#Article
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Dr. Smith's latest preprint, submitted to “Preprint Rxiv”, is an Article, which was createdBy Mary Smith. :preprint1 a prov:Article ; dcterms:title "A title of the article"^^xsd:string ; evi:createdBy :Mary_Smith . :Mary_Smith a prov:Person .
IRI: https://w3id.org/EVI#Claim
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix evi: <http://w3id.org/EVI#> . @prefix : <http://example.com/> . # The sentence "Age (from conception) was significantly correlated with birth weight" is a Claim. :claim1 a evi:Claim ; evi:state "Age (from conception) was significantly correlated with birth weight"^^xsd:string . # "Happy birthday!" is not a Claim.
IRI: https://w3id.org/EVI#Computation
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # In Dr. Smith's research, she performed a Computation to determine the correlation of birth weight # and post-menstrual age of one thousand preterm infants. :computation1 a evi:Computation ; evi:usedDataset :dataset5 ; evi:usedSoftware :software1 ; schema:description "determines the correlation of birth weight and death"^^xsd:string . :dataset5 schema:description "birth weight and death"^^xsd:string . :software1 schema:description "computes correlation"^^xsd:string .
IRI: https://w3id.org/EVI#Container
IRI: https://w3id.org/EVI#Dataset
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Dr. Smith analyzed a Dataset consisting of the subject identifiers, post-menstrual ages, and birthrights # of one thousand babies. :analysis1 a prov:Activity ; evi:used :dataset7 ; evi:associatedWith :Mary_Smith . :dataset7 a evi:Dataset ; a evi:Identifier ; schema:description "Subject identifiers, post-menstrual ages, and birth weights of one thousand babies"^^xsd:string . # Dr. Smith's results included a computed dataset showing the correlation of age and birthweight for male and # female preterm infants in five age ranges. :analysis1 evi:generated :dataset8 . :dataset8 a evi:Dataset ; schema:description "Correlation of age and birthweight for male and female preterm infants in five age ranges"^^xsd:string .
IRI: https://w3id.org/EVI#DigitalContent
IRI: https://w3id.org/EVI#DigitalObject
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . The Dataset of babies, birth weights, and ages used to support the conclusions of Dr. Smith's preprint Article, is a DigitalObject. So is the Article itself, as well as the Figures showing, and Captions describing, the scatterplots and correlations, presented within the Article. The scatterplot Image and the output correlation Dataset upon which it is based, are also DigitalObjects.
IRI: https://w3id.org/EVI#Distribution
IRI: https://w3id.org/EVI#EvidenceGraph
(1) A minimal EvidenceGraph for Dr. Smith's Article on baby birth weights is EG1 a EvidenceGraph {"Preprint rXiv 20200729.1" a Article createdBy "Smith M" a Person} for "Preprint rXiv 20200729.1" a Article (2) A more robust EvidenceGraph for the correlation result discussed in Dr. Smith's Article might be "Post-conception age was significantly correlated with birth weight." a Claim derivedFrom Dataset2 generatedBy Computation1 using Dataset1, Software1.
IRI: https://w3id.org/EVI#Image
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . #A scatterplot Image was produced from the Dataset of babies, birth weights, and ages. :scatterplot1 a evi:Image ; evi:generatedBy :activity3 . :activity3 prov:used :dataset9 ; schema:description "babies, birth weight, and ages"^^xsd:string . :activity3 a prov:Activity . # Or :scatterplot1 evi:derivedFrom :dataset9 .
IRI: https://w3id.org/EVI#Method
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # "We used scipy.stats.pearsonr to compute the Pearson correlation coefficient" is a Method. :method1 a evi:Method ; evi:describes :activity4 ; schema:description "scipy.stats.pearsonr"^^xsd:string . :activity4 a prov:Activity ; schema:description "computes the Pearson correlation coefficient"^^xsd:string .
IRI: https://www.w3.org/ns/prov#Activity
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # A Computation in which a Dataset of Electronic Health Records (EHR) is de-identified is an Activity. :deidentification1 a prov:Activity ; evi:used :dataset1 ; evi:generated :dataset2 . :dataset1 schema:description "EHR data"^^xsd:string . :dataset2 schema:description "de-identified EHR data"^^xsd:string . # Manual annotation of the de-identified Dataset with descriptive metadata is an Activity. :annotation1 a prov:Activity ; evi:used :dataset2 ; evi:generated :dataset3 . :dataset2 schema:description "de-identified EHR data"^^xsd:string . :dataset3 schema:description "annotated de-identified EHR data"^^xsd:string . # Selection of a patient cohort from the annotated, de-identified Dataset is an Activity. :cohort_selection1 a prov:Activity ; evi:used :dataset3 ; evi:generated :dataset4 . :dataset3 schema:description "annotated de-identified EHR data"^^xsd:string . :dataset4 schema:description "cohort of annotated de-identified EHR data"^^xsd:string . # Preparation of an Article on analytic findings from the above Dataset analysis is an Activity. :articlepreparation1 a prov:Activity ; schema:description "analytics on the cohort of annotated de-identified EHR data"^^xsd:string ; evi:used :dataset4 . :dataset4 schema:description "cohort of annotated de-identified EHR data"^^xsd:string .
IRI: https://www.w3.org/ns/prov#Agent
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Dr. Mary Smith is an Agent of type Person. :Mary_Smith a prov:Person ; a prov:Agent . # The University of Virginia is an Agent, of type Organization. <https://www.virginia.edu/> a prov:Organization , prov:Agent . # The bioRxiv preprint archive is an Agent of type Organization. <https://www.biorxiv.org/> a prov:Organization , prov:Agent . # The service FAIRSCAPE_MDS, as a SoftwareAgent, is used to assign an Identifier to a Dataset. :FAIRSCAPE_MDS a prov:SoftwareAgent , prov:Agent .
IRI: http://www.w3.org/ns/prov#Bundle
IRI: https://www.w3.org/ns/prov#Entity
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix : <http://example.com/> . # The University of Virginia Hospital Neonatal ICU is an Entity. <https://childrens.uvahealth.com/services/neonatology> a prov:Entity ; a evi:Identifier ; foaf:name "University of Virginia Children's Hospital Neonatal Intensive Care Unit"^^xsd:string . # Subject 459 in Dr. Smith's study is an Entity. :study1 evi:used :subject_459 . :study1 a prov:Activity . :subject_459 a prov:Entity . # Dr. Smith's preprint is an Entity, as is Dr. Smith. :preprint1 evi:createdBy :Mary_Smith . :preprint1 a prov:Entity . :Mary_Smith a prov:Person . # Dr. Smith's medical record in the UVA Health System is an Entity. :mrn1 a prov:Entity ; evi:derivedFrom :Mary_Smith ; evi:generatedBy :activity2 . :activity2 a prov:Activity ; evi:associatedWith <https://uvahealth.com/> . <https://uvahealth.com/> a prov:Organization .
IRI: https://www.w3.org/ns/prov#Organization
IRI: https://www.w3.org/ns/prov#Person
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix prov: <http://www.w3.org/ns/prov#> . # The University of Virginia Health System is an Organization. <https://uvahealth.com> a prov:Organization . # The Association for Computing Machinery is an Organization. <https://www.acm.org> a prov:Organization . # The UVA Cavaliers basketball team, 2019 NCAA Champions, is an Organization. <https://en.wikipedia.org/wiki/2018%E2%80%9319_Virginia_Cavaliers_men%27s_basketball_team> a prov:Organization .
IRI: http://www.w3.org/ns/prov#SoftwareAgent
IRI: https://w3id.org/EVI#Reference
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix evi: <http://w3id.org/EVI#> . @prefix : <http://example.com/> . # "Smith M 2020. Post-conception age and birth weight. Preprint rXiv 20200729.1" is a Reference for Dr. Smith's Article. :reference1 a evi:Reference ; evi:represents :article1 . :article1 a evi:Article ; dcterms:title "Post-conception age and birth weight"^^xsd:string .
IRI: https://w3id.org/EVI#Schema
IRI: http://schema.org/Article
IRI: http://schema.org/Claim
IRI: http://schema.org/Dataset
IRI: http://schema.org/Organization
IRI: http://schema.org/Person
IRI: http://schema.org/Service
IRI: http://schema.org/SoftwareApplication
IRI: http://schema.org/SoftwareSourceCode
IRI: https://w3id.org/EVI#Service
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix evi: <http://w3id.org/EVI#> . # The Datacite DOI Registration Agency provides a Service online to generate globally unique Digital Object Identifiers (DOIs). <https://doi.datacite.org/> a evi:Service . # The bit.ly URL shortener is a Service. <https://bitly.com/> a evi:Service .
IRI: https://w3id.org/EVI#Software
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix evi: <http://w3id.org/EVI#> . # The python code for the function scipy.stats.pearsonr in SciPy v1.5.2 is a Software. <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> a evi:Software .
IRI: https://w3id.org/EVI#associatedWith
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Dr. Mary Smith is associatedWith the Computation(s) which analyzed her Datasets. :analysis1 a prov:Activity ; evi:associatedWith :Mary_Smith . :Mary_Smith a prov:Person .
IRI: https://w3id.org/EVI#associateFor
IRI: https://w3id.org/EVI#challengedBy
IRI: https://w3id.org/EVI#challenges
IRI: https://w3id.org/EVI#containedBy
IRI: https://w3id.org/EVI#contains
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Dr. Smith's Article contains an Image showing a scatterplot. :preprint1 a prov:Article ; evi:contains :scatterplot1 ; evi:createdBy :Mary_Smith . :Mary_Smith a prov:Person . :scatterplot1 a evi:Image .
has characteristics: transitive
IRI: https://w3id.org/EVI#contentUrl
IRI: https://w3id.org/EVI#created
IRI: https://w3id.org/EVI#createdBy
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # "Smith M 2020. Post-conception age and birth weight. Preprint rXiv 20200729.1" was createdBy Mary Smith. :preprint1 a prov:Article ; dcterms:title "Smith M 2020. Post-conception age and birth weight. Preprint rXiv 20200729.1"^^xsd:string ; evi:createdBy :Mary_Smith . :Mary_Smith a prov:Person . # "Preprint rXiv 20200729.1" an Article was createdBy "Dr. Mary Smith" a Person and "Preprint rXiv" # an Organization (because Preprint rXiv is the publisher). :preprint1 a prov:Article ; evi:contains :scatterplot1 ; evi:createdBy :Mary_Smith . :Mary_Smith a prov:Person . :scatterplot1 a evi:Image .
IRI: https://w3id.org/EVI#dataSchema
IRI: https://w3id.org/EVI#datasetUsedBy
IRI: https://w3id.org/EVI#derivedFrom
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Mary Smith's Image of a scatterplot was derivedFrom her Dataset1. :scatterplot evi:derivedFrom :dataset1 . :scatterplot1 a evi:Image .
IRI: https://w3id.org/EVI#derivedTo
IRI: https://w3id.org/EVI#describedBy
IRI: https://w3id.org/EVI#describes
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # The Method "We used scipy.stats.pearsonr to compute the Pearson correlation coefficient" describes a prov:Activity. :method1 a evi:Method ; schema:description "We used scipy.stats.pearsonr to compute the Pearson correlation coefficient"^^xsd:string ; evi:describes :computation1 ; evi:referTo <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> . :computation1 a prov:Activity . <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> a evi:Software .
IRI: https://w3id.org/EVI#directlyChallengedBy
IRI: https://w3id.org/EVI#directlyChallenges
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Dr. Chad Jones has created a new "improved" version of scipy.stats.pearsonr, v1.5.2x, deprecating the older v1.5.2, which according to Dr. # Jones, contained a bug. Dr. Jones published a note to this effect on his blog. We can link that blog post and the new version of pearsonr # to the old version via a directlyChallenges property. This entails indirectlyChallenges properties on the path to the root in the # EvidenceGraph of Dr. Smith's Article. :article2 a evi:Article ; evi:createdBy :Chad_Jone ; evi:represents :software2 . :software2 a evi:Software ; schema:version "1.5.2" . <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> a evi:Software ; schema:version "1.5.1" . :article2 evi:directlyChallenges <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> . :software2 evi:directlyChallenges <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> .
IRI: https://w3id.org/EVI#directlySupportedBy
IRI: https://w3id.org/EVI#directlySupports
IRI: https://w3id.org/EVI#distributedFrom
IRI: https://w3id.org/EVI#generated
IRI: https://w3id.org/EVI#generatedBy
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Dataset1 a Dataset was generatedBy Computation1, a Computation in Mary Smith's baby study. :dataset1 a evi:Dataset ; evi:generatedBy :computation1 . :computation1 a evi:Computation .
IRI: https://w3id.org/EVI#hasDistribution
IRI: https://w3id.org/EVI#indirectlyChallengedBy
IRI: https://w3id.org/EVI#indirectlyChallenges
IRI: https://w3id.org/EVI#packagedBy
IRI: https://w3id.org/EVI#packages
IRI: https://w3id.org/EVI#representedBy
IRI: https://w3id.org/EVI#represents
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # The Reference "Smith M 2020. Post-conception age and birth weight. Preprint rXiv 20200729.1" represents the Article "Preprint rXiv 20200729.1" :reference1 evi:represents :preprint1 . :preprint1 a prov:Article ; dcterms:title "Post-conception age and birth weight"^^xsd:string ; evi:createdBy :Mary_Smith . :Mary_Smith a prov:Person . :reference1 a evi:Reference ; dcterms:title "Smith M 2020. Post-conception age and birth weight. Preprint rXiv 20200729.1"^^xsd:string . # The photo of Dr. Mary Smith in the Author Information section of her Article, represents the Person "Dr. Mary Smith". :photo1 evi:represents :Mary_Smith . :preprint1 evi:contains :photo1 ; evi:createdBy :Mary_Smith . :photo1 a evi:Image . :Mary_Smith a prov:Person .
IRI: https://w3id.org/EVI#serviceUsedBy
IRI: https://w3id.org/EVI#softwareUsedBy
IRI: https://w3id.org/EVI#supportedBy
IRI: https://w3id.org/EVI#supports
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # The Person "Mary Smith" supports the Article "Preprint RXiv 20200729.1". To say this is to say that the # known character, credentials and reputation of the author is a support for the truth value of their Articles. :preprint1 a prov:Article ; dcterms:title "A title ..."^^xsd:string ; evi:createdBy :Mary_Smith . :Mary_Smith a prov:Person . :Mary_Smith evi:supports :preprint1 . # The Software scipy.stats.pearsonr in the SciPy v1.5.2 package supportsthe correlation statistic computed by Dr. Smith on her baby weight and age Dataset, <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> evi:supports :computation1 . :computation1 a evi:Computation ; evi:usedSoftware <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> . evi:associatedWith :Mary_Smith . <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> a evi:Software . :Mary_Smith a prov:Person . # The computed correlation statistic supports the scatterplot Image, and :computation1 evi:supports :scatterplot1 . # the scatterplot Image supports the Article's conclusion. :scatterplot1 evi:supports :claim1 .
has characteristics: transitive
IRI: http://purl.org/dc/terms/creator
IRI: https://w3id.org/EVI#used
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # The Computation on Dr. Smith's Dataset1 used the Software scipy.stats.pearsonr v1.5.2. :computation1 a evi:Computation ; prov:used <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> . evi:associatedWith :Mary_Smith . <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> a evi:Software . :Mary_Smith a prov:Person .
IRI: https://w3id.org/EVI#usedBy
IRI: https://w3id.org/EVI#usedDataset
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Mary Smith's Computation1 to determine correlations usedDataset Dataset1, a record of preterm infant ages and birth weights. :computation1 a evi:Computation ; evi:usedDataset :dataset1 ; evi:associatedWith :Mary_Smith . :Mary_Smith a prov:Person . :dataset1 a evi:Dataset ; schema:description "preterm infant ages and birth weights"^^xsd:string .
IRI: https://w3id.org/EVI#usedService
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # The Computation "AssignID" usedService FAIRSCAPE_MDS to assign an Identifier for Mary Smith's Dataset1. :AssignID a evi:Computation ; evi:usedService :FAIRSCAPE_MDS ; evi:associatedWith :Mary_Smith . :FAIRSCAPE_MDS a evi:Service ; schema:description "Assign an Identifier to a Dataset"^^xsd:string . :Mary_Smith a prov:Person .
IRI: https://w3id.org/EVI#usedSoftware
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix prov: <http://www.w3.org/ns/prov#> . @prefix evi: <http://w3id.org/EVI#> . @prefix schema: <http://schema.org/> . @prefix : <http://example.com/> . # Mary Smith's Computation1 usedSoftware "scipy.stats.pearsonr v1.5.2" a Software. :computation1 a evi:Computation ; evi:usedSoftware <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> . evi:associatedWith :Mary_Smith . <https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html> a evi:Software . :Mary_Smith a prov:Person .
IRI: https://w3id.org/EVI#additionalDocumentation
IRI: https://w3id.org/EVI#associatedPublication
IRI: https://w3id.org/EVI#publicationVenue
IRI: http://schema.org/author
IRI: http://schema.org/contentSize
IRI: http://schema.org/dateCreated
IRI: http://schema.org/dateModified
IRI: http://schema.org/datePublished
IRI: http://schema.org/description
IRI: http://schema.org/encodingFormat
IRI: http://schema.org/endTime
IRI: http://schema.org/fileFormat
IRI: http://schema.org/identifier
IRI: http://schema.org/keywords
IRI: http://schema.org/license
IRI: http://schema.org/name
IRI: http://schema.org/runtime
IRI: http://schema.org/startTime
IRI: http://schema.org/title
IRI: http://schema.org/version
IRI: https://w3id.org/EVI#state
The authors would like to thank Silvio Peroni for developing LODE, a Live OWL Documentation Environment, which is used for representing the Cross Referencing Section of this document and Daniel Garijo for developing Widoco, the program used to create the template used in this documentation.