Nanopublication

< Home

ID

http://purl.org/np/RAhNjXCwTeXaG9aP879eWErboAW8EqX3PjmBUPYGYfp5Y

Formats

.trig | .trig.txt | .jelly | .jelly.txt

Content

@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix orcid: <https://orcid.org/> .
@prefix this: <http://purl.org/np/RAhNjXCwTeXaG9aP879eWErboAW8EqX3PjmBUPYGYfp5Y> .
@prefix sub: <http://purl.org/np/RAhNjXCwTeXaG9aP879eWErboAW8EqX3PjmBUPYGYfp5Y#> .
@prefix schema: <https://schema.org/> .
@prefix bpmn: <http://dkm.fbk.eu/index.php/BPMN2_Ontology#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix pplan: <http://purl.org/net/p-plan#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .

sub:Head {
  this: a np:Nanopublication;
    np:hasAssertion sub:assertion;
    np:hasProvenance sub:provenance;
    np:hasPublicationInfo sub:pubInfo .
}

sub:assertion {
  sub:LinguisticSystem a schema:ComputerLanguage;
    rdfs:label "python";
    rdfs:seeAlso <https://www.wikidata.org/wiki/Q28865>;
    owl:versionInfo "3.8.3.final.0" .
  
  sub:image a pplan:Variable;
    rdfs:comment "None";
    rdfs:label "image" .
  
  sub:out1 a pplan:Variable;
    rdfs:comment "None";
    rdfs:label "out1" .
  
  sub:step a bpmn:ScriptTask, pplan:Step;
    dcterms:description """@is_fairstep(label='My awesome step to add ')
# Give it your own name:
def my_awesome_step(image):
    from PIL import ImageDraw
    from PIL import Image
    new_image= ImageDraw.Draw(
        image  # Image
    ).text(
        (0, 0),  # Coordinates
        'Hello world!',  # Text
        (0, 0, 0)  # Color
    )
    # new_image = ....
    return new_image
""";
    dcterms:language sub:LinguisticSystem;
    pplan:hasInputVar sub:image;
    pplan:hasOutputVar sub:out1;
    rdfs:label "My awesome step to add " .
}

sub:provenance {
  sub:assertion prov:generatedAtTime "2021-05-19T14:24:28.448194"^^xsd:dateTime .
}

sub:pubInfo {
  sub:sig npx:hasAlgorithm "RSA";
    npx:hasPublicKey "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCOqbrPT5RmzxsvRXGHZSAXPzeRLt9ogiosL3tcPKC0g5J8B1577lnJ3oVKSfD80lgPJdr9K671RazGL/mkZ/yu/uCNqne07Q9jd6OIAEi3fldiVfGK8ZDh43rGWRuG+BlvbZ1lZRFrWsURTKTpMgh0C6vJFRIMkWH6ImbZC5JbbQIDAQAB";
    npx:hasSignature "Ewf0mncWaJIVgsOXRHaa0duMGFgw7/qGhZJdIt+j0DV0AbLnTPHiwvUq/bHsYkQzy22MSDMq/XtIOpo2dqC5fE4dDmJusbR+2RfJ9hXrZtgd6TrIipS0yVRLklTI7byht8t2x+SEd+8jkwHvXp2Rz2u1hZ8UK83REzaBeQnjvWI=";
    npx:hasSignatureTarget this: .
  
  this: npx:introduces sub:step;
    prov:generatedAtTime "2021-05-19T14:24:28.448194"^^xsd:dateTime;
    prov:wasAttributedTo orcid:0000-0001-7769-4272 .
}