Skip to content

Instantly share code, notes, and snippets.

@thewilkybarkid
Created June 7, 2021 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thewilkybarkid/481fa740b00bebf31dc0b878e5a4a226 to your computer and use it in GitHub Desktop.
Save thewilkybarkid/481fa740b00bebf31dc0b878e5a4a226 to your computer and use it in GitHub Desktop.
@prefix cito: <http://purl.org/spar/cito/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix fr: <http://purl.org/spar/fr/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix prism: <http://prismstandard.org/namespaces/basic/2.0/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<docmap/123>
a fabio:workflow ; # Meant to be pwo:Workflow
dc:description "A description of the DocMap or link to the DocMap description." ; # Better to use dcterms wherever possible
dcterms:created "2021-02-05"^^xsd:date ;
dcterms:publisher "https://pci.org"^^org:Organization ; # Organization used a value type rather than node type which is odd (https://www.w3.org/TR/json-ld11/#typed-values)
cito:describes "http://dx.doi.org/10.24072/pci.evolbiol.100120" ; # Literal value rather than an ID
fr:TrackingSystem <https://sciety.org> ; # TrackingSystem is a class type not a property, and definitely doesn't describe Sciety
schema:ItemList ( <http://ec2-18-234-60-140.compute-1.amazonaws.com:8080/10.24072/pci.evolbiol.100120> ) ; # ItemList is a class type not a property
.
<http://ec2-18-234-60-140.compute-1.amazonaws.com:8080/10.24072/pci.evolbiol.100120>
a fabio:ReviewArticle ;
prism:doi "10.24072/pci.evolbiol.100120" ;
prism:publicationDate "2021-02-05"^^xsd:date ;
dcterms:creator <http://ec2-18-234-60-140.compute-1.amazonaws.com:8080/bertanne-visser> , <michael-lartoff> , <reviewer-2> ; # The last two didn't create this recommendation, but the works it's based on...
dcterms:publisher <https://peercommunityin.org> ;
dcterms:title "Multi-gene and lineage comparative assessment of the strength of selection in Hymenoptera"@en ;
cito:citation <http://dx.doi.org/10.24072/pci.evolbiol.100120> , <http://ec2-18-234-60-140.compute-1.amazonaws.com:8080/10.1101/2020.04.14.038893v5> ; # Meant to be cito:cites?
fabio:hasManifestation <http://ec2-18-234-60-140.compute-1.amazonaws.com:8080/2d62ef98a27658eb8d7a7abff40a661e> .
<https://peercommunityin.org>
rdfs:label "Peer Community In" ;
.
<http://dx.doi.org/10.24072/pci.evolbiol.100120>
a cito:citesAsRecommendedReading ;
.
<http://ec2-18-234-60-140.compute-1.amazonaws.com:8080/10.1101/2020.04.14.038893v5>
a cito:reviews ; # reviews is a property, not a class
.
<http://ec2-18-234-60-140.compute-1.amazonaws.com:8080/2d62ef98a27658eb8d7a7abff40a661e>
a fabio:WebPage ;
fabio:hasURL "http://dx.doi.org/10.24072/pci.evolbiol.100120"^^xsd:anyURI ;
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment