Nanopublication

< Home

ID

https://w3id.org/np/RA0oTr98MdXAiRD7Y02qjBF1QkGoixo7LgmQ1Y175-jQA

Formats

.trig | .trig.txt | .jelly | .jelly.txt | .jsonld | .jsonld.txt | .nq | .nq.txt | .xml | .xml.txt

Content

@prefix this: <https://w3id.org/np/RA0oTr98MdXAiRD7Y02qjBF1QkGoixo7LgmQ1Y175-jQA> .
@prefix sub: <https://w3id.org/np/RA0oTr98MdXAiRD7Y02qjBF1QkGoixo7LgmQ1Y175-jQA/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix nt: <https://w3id.org/np/o/ntemplate/> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix orcid: <https://orcid.org/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

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

sub:assertion {
  sub:fips-by-domain a <https://w3id.org/kpxl/grlc/grlc-query>;
    dct:description "This query returns the FAIR Supporting Resources  (FSRs) per scientific domain and for specific FIP (sub-)Questions. The parameter \"Domain\" expects the IRI of a domain. The parameter \"Question_Codes\" expects one or more FIP questions (e.g. F1-MD, I3-D).";
    dct:license <http://www.apache.org/licenses/LICENSE-2.0>;
    rdfs:label "FSR by domain and question";
    <https://w3id.org/kpxl/grlc/endpoint> <https://w3id.org/np/l/nanopub-query-1.1/repo/type/6a09747868afc83837e38d1bac79362fbcc3e2032cff2f2d244f4e24cbd085c6>;
    <https://w3id.org/kpxl/grlc/sparql> """prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix np: <http://www.nanopub.org/nschema#>
prefix npa: <http://purl.org/nanopub/admin/>
prefix npx: <http://purl.org/nanopub/x/>
prefix dct: <http://purl.org/dc/terms/>
prefix fip: <https://w3id.org/fair/fip/terms/>

select ?fsr (min(?fsr_label_x) as ?fsr_label)
       (group_concat(distinct str(?community); separator=\" \") as ?communities_multi_iri)
       (group_concat(distinct replace(str(?community), \"^.*[#/]\", \"\"); separator=\"\\n\") as ?communities_label_multi)
       (group_concat(distinct ?qcode; separator=\", \") as ?questions)
       (group_concat(distinct str(?subdomain); separator=\" \") as ?subdomains_multi_iri)
       (group_concat(distinct replace(str(?subdomain), \"^.*[#/]\", \"\"); separator=\"\\n\") as ?subdomains_label_multi)
       (count(distinct ?community) as ?count)
       (min(?fsrnp_x) as ?np) (min(\"^\") as ?np_label)
where {
  { select distinct ?community ?subdomain where {
    graph npa:graph {
      ?cnp npa:hasValidSignatureForPublicKey ?cpubkey ;
        npx:hasNanopubType fip:FAIR-Implementation-Community ;
        np:hasAssertion ?ca .
      ?cnp npx:introduces|npx:describes ?community .
      filter not exists { ?cnp npx:hasNanopubType npx:ExampleNanopub . }
      filter not exists { ?cnpx npx:invalidates ?cnp ; npa:hasValidSignatureForPublicKey ?cpubkey . }
    }
    graph ?ca {
      ?community a fip:FAIR-Implementation-Community ;
        fip:has-research-domain ?subdomain .
    }
    graph <http://purl.org/np/RArRAOwj4QOppEPCR8WVvOBmrX7oRKOrPi-asX-7AY66I#assertion> {
      ?subdomain rdfs:subClassOf* ?_domain_iri .
    }
  } }
  graph ?fa {
    ?fip fip:declared-by ?community ;
      fip:has-declaration-index ?index .
  }
  graph npa:graph {
    ?fipnp np:hasAssertion ?fa ;
      npx:hasNanopubType fip:FAIR-Implementation-Profile ;
      npa:hasValidSignatureForPublicKey ?fippubkey .
    filter not exists { ?fipnp npx:hasNanopubType npx:ExampleNanopub . }
    filter not exists { ?fipnpx npx:invalidates ?fipnp ; npa:hasValidSignatureForPublicKey ?fippubkey . }
    ?index npa:hasValidSignatureForPublicKey ?ipubkey .
    filter not exists { ?indexx npx:invalidates ?index ; npa:hasValidSignatureForPublicKey ?ipubkey . }
  }
  graph npa:networkGraph {
    ?index npx:includesElement ?dnp .
  }
  graph npa:graph {
    ?dnp npx:hasNanopubType fip:FIP-Declaration ;
      np:hasAssertion ?da .
  }
  graph ?da {
    ?decl fip:declared-by ?community ;
      fip:refers-to-question ?question ;
      (fip:declares-current-use-of|fip:declares-planned-use-of) ?fsr .
  }
  
  # Extract the short question code (e.g., F1, R1.1)
  bind(replace(str(?question), \"^.*-([^-MD]+(-[MD]+)?)$\", \"$1\") as ?qcode)
  
  # MULTI-SELECT FILTER
  # If ?_question_codes is left empty, it ignores the filter. 
  # Otherwise, it checks if the string contains the extracted ?qcode.
  filter(!bound(?_question_codes) || ?_question_codes = \"\" || contains(?_question_codes, ?qcode))
  
  optional {
    graph npa:graph {
      ?fsrnp_x npx:introduces|npx:describes ?fsr ;
        rdfs:label ?fsr_label_x ;
        npa:hasValidSignatureForPublicKey ?fpubkey .
      filter not exists { ?fsrnp_x npx:hasNanopubType npx:ExampleNanopub . }
      filter not exists { ?fsrnpx npx:invalidates ?fsrnp_x ; npa:hasValidSignatureForPublicKey ?fpubkey . }
    }
  }
  filter( bound(?fsrnp_x) || not exists { graph npa:graph { ?onp npx:introduces|npx:describes ?fsr . } } )
}
group by ?fsr
order by desc(?count)""" .
}

sub:provenance {
  sub:assertion prov:wasAttributedTo orcid:0000-0002-1267-0234 .
}

sub:pubinfo {
  orcid:0000-0002-0319-6542 foaf:name "Dario Bijker" .
  
  orcid:0000-0002-1267-0234 foaf:name "Tobias Kuhn" .
  
  this: dct:created "2026-08-20T13:06:00.714Z"^^xsd:dateTime;
    dct:creator orcid:0000-0002-0319-6542, orcid:0000-0002-1267-0234;
    dct:license <https://creativecommons.org/licenses/by/4.0/>;
    npx:embeds sub:fips-by-domain;
    npx:wasCreatedAt <https://nanodash.knowledgepixels.com/>;
    prov:wasDerivedFrom <https://w3id.org/np/RAZJDpBRntHn849-15fSvHom2o3872I2Ry1zmfxGenQjk>;
    nt:wasCreatedFromProvenanceTemplate <https://w3id.org/np/RA7lSq6MuK_TIC6JMSHvLtee3lpLoZDOqLJCLXevnrPoU>;
    nt:wasCreatedFromPubinfoTemplate <https://w3id.org/np/RACJ58Gvyn91LqCKIO9zu1eijDQIeEff28iyDrJgjSJF8>,
      <https://w3id.org/np/RAMEgudZsQ1bh1fZhfYnkthqH6YSXpghSE_DEN1I-6eAI>, <https://w3id.org/np/RARW4MsFkHuwjycNElvEVtuMjpf4yWDL10-0C5l2MqqRQ>,
      <https://w3id.org/np/RAukAcWHRDlkqxk7H2XNSegc1WnHI569INvNr-xdptDGI>;
    nt:wasCreatedFromTemplate <https://w3id.org/np/RAEFAt-QcFK0ZhqfvlsmS10BnzGJA0xwOICZXkO-ai87k> .
  
  sub:sig npx:hasAlgorithm "RSA";
    npx:hasPublicKey "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCfUo0FLu1y2EeueL40lqkVdm9fTJa6WhF6MhyjhKAagbuaWe1wwyk453ot8KAQ3aHtL3B8Ze/aLf+wHrBhS0nz4wS6urc8ksIzlLCoa9KIfa0JuQunBLFptV0U9fTR8kDlPoB+klNrUfzeCXmkdgnnUiiwBoN+j1eN87XMSHKI3wIDAQAB";
    npx:hasSignature "IC1gz52D5NlXXnBvHRttgAEGcmebdBLYcOgpGMisPczz7aBNEnCYvAnbheMCGScTf0cOP+85rvakrfFIAcFUzF9GK0msjjgMXxu2twKTytB6PcSUxu1uUmm9Bfy+JgjuHj+/6CeQgIjidmjsHYecuN/uF89DzO4/XpaqUyFJNv8=";
    npx:hasSignatureTarget this:;
    npx:signedBy orcid:0000-0002-0319-6542 .
}