Skip to content

NFDI4BIOIMAGE/NFDI4BI-KG

Repository files navigation

NFDI4BI-KG

Graphs and queries

Since June 16 2025, the NFDI4BIOIMAGE Knowledge Graph is operational at http://kg.nfdi4bioimage.de.
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
prefix zenodocomm: <https://zenodo.org/communities/>
prefix sio: <http://semanticscience.org/resource/>

Graphs

Default graph

The default graph is the union of all named graphs.

Named graphs

SELECT ?graph (count(?subject) as ?number_of_triples)
WHERE {
  graph ?graph {  ?subject ?predicate ?object }
}
group by ?graph
graphnumber_of_triples
https://kg.nfdi4bioimage.de/n4bikg/core16
https://kg.nfdi4bioimage.de/n4bikg/n4bi_zenodo_community5349
https://kg.nfdi4bioimage.de/n4bikg/services9
https://kg.nfdi4bioimage.de/n4bikg/owl13774

Example queries

spo

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
select ?s ?p ?plabel ?o ?olabel where 
{
  ?s ?p ?o
  optional {
    ?p rdfs:label ?plabel.
  }
  optional {
    ?o rdfs:label ?olabel .
  }
}
limit 10
spplabeloolabel
https://nfdi4bioimage.de/rdf/nodehttp://www.w3.org/1999/02/22-rdf-syntax-ns#typehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0001039nfdi consortium
https://nfdi4bioimage.de/rdf/nodehttp://purl.org/dc/elements/1.1/descriptionNationale Forschungsdateninfrastruktur für Mikroskopie und Bildanalyse
https://nfdi4bioimage.de/rdf/nodehttp://purl.org/dc/elements/1.1/descriptionNational Research Data Infrastructure for Microscopy and Bioimage Analysis
https://nfdi4bioimage.de/rdf/nodehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000136foundation date2023-03-01
https://nfdi4bioimage.de/rdf/nodehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0001006has external identifierhttps://wikidata.org/entity/Q113500855
https://nfdi4bioimage.de/rdf/nodehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0001008has urlhttps://nfdi4bioimage.de
https://nfdi4bioimage.de/rdf/nodehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0010015has acronymN4BI
https://nfdi4bioimage.de/rdf/nodehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0010015has acronymNFDI4BIOIMAGE
https://nfdi4bioimage.de/rdf/nodehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000195represents collectionhttps://zenodo.org/communities/nfdi4bioimage
https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0001039http://www.w3.org/1999/02/22-rdf-syntax-ns#typehttp://www.w3.org/2002/07/owl#Class

Creators and contributors for a record

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
select *
where
{
  <https://doi.org/10.5281/zenodo.14013026> dcite:creator ?creator .
  ?creator dcite:givenName ?creator_given_name ;
           dcite:familyName ?creator_family_name .
  ?creator dcite:affiliation ?affiliation .
  filter(isiri(?affiliation))
  ?affiliation rdfs:label ?affiliation_name .
}
limit 40
creatorcreator_given_namecreator_family_nameaffiliationaffiliation_name
https://orcid.org/0000-0001-9568-895XChristianSchmidthttps://ror.org/0546hnb39University of Konstanz
https://orcid.org/0000-0001-9568-895XChristianSchmidthttps://ror.org/04cdgtt98German Cancer Research Center
https://orcid.org/0000-0001-9568-895XChristianChristian Schmidthttps://ror.org/0546hnb39University of Konstanz
https://orcid.org/0000-0001-9568-895XChristianChristian Schmidthttps://ror.org/04cdgtt98German Cancer Research Center
https://orcid.org/0000-0001-7734-3771StefanieStefanie Weidtkamp-Petershttps://ror.org/01vnkaz16NFDI4BIOIMAGE
https://orcid.org/0000-0001-7734-3771StefanieStefanie Weidtkamp-Petershttps://ror.org/024z2rq82Heinrich Heine University Düsseldorf
https://orcid.org/0000-0001-7734-3771StefanieWeidtkamp-Petershttps://ror.org/01vnkaz16NFDI4BIOIMAGE
https://orcid.org/0000-0001-7734-3771StefanieWeidtkamp-Petershttps://ror.org/024z2rq82Heinrich Heine University Düsseldorf
https://orcid.org/0000-0001-6523-7496SusanneKunishttps://ror.org/04qmmjx98Osnabrück University
b0TomBoissonnethttps://ror.org/024z2rq82Heinrich Heine University Düsseldorf
b1BettinaHagenhttps://ror.org/04xx1tc24Max Planck Institute for Biology of Ageing

Some records must have the full name set as ‘family name’.

ORCID properties

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
select *
where
{
  <https://orcid.org/0000-0001-7734-3771> dcite:givenName ?first;
                                          dcite:familyName ?last .
}
firstlast
StefanieStefanie Weidtkamp-Peters
StefanieWeidtkamp-Peters

Number of records in zenodo community

<<prefixes>>
select (count(?record) as ?records) where {
  graph <https://kg.nfdi4bioimage.de/n4bikg/n4bi_zenodo_community> { <https://zenodo.org/communities/nfdi4bioimage> <http://semanticscience.org/resource/SIO_000088> ?record} 
  }
limit 10
records
261

Number of records total

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
prefix zenodocomm: <https://zenodo.org/communities/>
prefix sio: <http://semanticscience.org/resource/>

select distinct ?record where
{
  ?record dcite:creator ?creator .
}
record
https://doi.org/10.5281/zenodo.11261115
https://doi.org/10.5281/zenodo.14626054
https://doi.org/10.5281/zenodo.14623257
https://doi.org/10.5281/zenodo.14620253
https://doi.org/10.5281/zenodo.14418209
https://doi.org/10.5281/zenodo.14412107
https://doi.org/10.5281/zenodo.14278058
https://doi.org/10.5281/zenodo.13640979
https://doi.org/10.5281/zenodo.13628852
https://doi.org/10.5281/zenodo.13506641
https://doi.org/10.5281/zenodo.13168693
https://doi.org/10.5281/zenodo.12623730
https://doi.org/10.5281/zenodo.12521485
https://doi.org/10.5281/zenodo.12087272
https://doi.org/10.5281/zenodo.12077569
https://doi.org/10.5281/zenodo.11574994
https://doi.org/10.5281/zenodo.11574435
https://doi.org/10.5281/zenodo.11525313
https://doi.org/10.5281/zenodo.11448638
https://doi.org/10.5281/zenodo.11412513
https://doi.org/10.5281/zenodo.11369042
https://doi.org/10.5281/zenodo.11344132
https://doi.org/10.5281/zenodo.11312181
https://doi.org/10.5281/zenodo.11259495
https://doi.org/10.5281/zenodo.11235081
https://doi.org/10.5281/zenodo.11220181
https://doi.org/10.5281/zenodo.11191762
https://doi.org/10.5281/zenodo.11126631
https://doi.org/10.5281/zenodo.11122233
https://doi.org/10.5281/zenodo.11080237
https://doi.org/10.5281/zenodo.10978831
https://doi.org/10.5281/zenodo.10968458
https://doi.org/10.5281/zenodo.10947701
https://doi.org/10.5281/zenodo.10935236
https://doi.org/10.5281/zenodo.10907116
https://doi.org/10.5281/zenodo.17186869
https://doi.org/10.5281/zenodo.17174207
https://doi.org/10.5281/zenodo.17085991
https://doi.org/10.5281/zenodo.16812312
https://doi.org/10.5281/zenodo.16793739
https://doi.org/10.5281/zenodo.15858127
https://doi.org/10.5281/zenodo.15793536
https://doi.org/10.5281/zenodo.15751975
https://doi.org/10.5281/zenodo.15750255
https://doi.org/10.5281/zenodo.15735577
https://doi.org/10.5281/zenodo.15698366
https://doi.org/10.5281/zenodo.15606013
https://doi.org/10.5281/zenodo.15546497
https://doi.org/10.5281/zenodo.15481680
https://doi.org/10.5281/zenodo.15469809
https://doi.org/10.5281/zenodo.15424704
https://doi.org/10.5281/zenodo.15379632
https://doi.org/10.5281/zenodo.15367563
https://doi.org/10.5281/zenodo.15319829
https://doi.org/10.5281/zenodo.15279551
https://doi.org/10.5281/zenodo.15267559
https://doi.org/10.5281/zenodo.15223802
https://doi.org/10.5281/zenodo.15193418
https://doi.org/10.5281/zenodo.15182563
https://doi.org/10.5281/zenodo.15165424
https://doi.org/10.5281/zenodo.14848838
https://doi.org/10.5281/zenodo.14001044
https://doi.org/10.5281/zenodo.10816895
https://doi.org/10.5281/zenodo.15268798
https://doi.org/10.5281/zenodo.8340248
https://doi.org/10.5281/zenodo.8019760
https://doi.org/10.5281/zenodo.7928333
https://doi.org/10.5281/zenodo.7082609
https://doi.org/10.5281/zenodo.7082514
https://doi.org/10.5281/zenodo.6560026
https://doi.org/10.5281/zenodo.6504714
https://doi.org/10.5281/zenodo.6504467
https://doi.org/10.5281/zenodo.6504208
https://doi.org/10.5281/zenodo.6501614
https://doi.org/10.5281/zenodo.15423904
https://doi.org/10.5281/zenodo.15083018
https://doi.org/10.5281/zenodo.15031842
https://doi.org/10.5281/zenodo.14999220
https://doi.org/10.5281/zenodo.14845059
https://doi.org/10.5281/zenodo.14716546
https://doi.org/10.5281/zenodo.14650434
https://doi.org/10.5281/zenodo.14234608
https://doi.org/10.5281/zenodo.14001388
https://doi.org/10.5281/zenodo.13991322
https://doi.org/10.5281/zenodo.13970736
https://doi.org/10.5281/zenodo.13831274
https://doi.org/10.5281/zenodo.13747937
https://doi.org/10.5281/zenodo.13380289
https://doi.org/10.5281/zenodo.11503289
https://doi.org/10.5281/zenodo.11235513
https://doi.org/10.5281/zenodo.10687659
https://doi.org/10.5281/zenodo.10617006
https://doi.org/10.5281/zenodo.10609771
https://doi.org/10.5281/zenodo.10008465
https://doi.org/10.5281/zenodo.17087096
https://doi.org/10.5281/zenodo.16911980
https://doi.org/10.5281/zenodo.15756866
https://doi.org/10.5281/zenodo.15597856
https://doi.org/10.5281/zenodo.15575379
https://doi.org/10.5281/zenodo.15479606
https://doi.org/10.5281/zenodo.15393592
https://doi.org/10.5281/zenodo.7890311
https://doi.org/10.5281/zenodo.15026373
https://doi.org/10.5281/zenodo.14832855
https://doi.org/10.5281/zenodo.14178789
https://doi.org/10.5281/zenodo.14013026
https://doi.org/10.5281/zenodo.13861026
https://doi.org/10.5281/zenodo.11501662
https://doi.org/10.5281/zenodo.11350689
https://doi.org/10.5281/zenodo.11109616
https://doi.org/10.5281/zenodo.10939520
https://doi.org/10.5281/zenodo.15796252
https://doi.org/10.5281/zenodo.8070038
https://doi.org/10.5281/zenodo.5101158
https://doi.org/10.5281/zenodo.15065070
https://doi.org/10.5281/zenodo.14988921
https://doi.org/10.5281/zenodo.17251110
https://doi.org/10.5281/zenodo.8349563
https://doi.org/10.5281/zenodo.15308773
https://doi.org/10.5281/zenodo.15225616
https://doi.org/10.5281/zenodo.15033241
https://doi.org/10.5281/zenodo.14997835
https://doi.org/10.5281/zenodo.14954254
https://doi.org/10.5281/zenodo.14953098
https://doi.org/10.5281/zenodo.14950686
https://doi.org/10.5281/zenodo.13837146
https://doi.org/10.5281/zenodo.16992303
https://doi.org/10.5281/zenodo.14998017
https://doi.org/10.5281/zenodo.14951142
https://doi.org/10.5281/zenodo.8434325
https://doi.org/10.5281/zenodo.8414319
https://doi.org/10.5281/zenodo.15047849
https://doi.org/10.5281/zenodo.14979253
https://doi.org/10.5281/zenodo.14975462
https://doi.org/10.5281/zenodo.14909526
https://doi.org/10.5281/zenodo.14044640
https://doi.org/10.5281/zenodo.14044380
https://doi.org/10.5281/zenodo.11548617
https://doi.org/10.5281/zenodo.10793700
https://doi.org/10.5281/zenodo.10730424
https://doi.org/10.5281/zenodo.17093454
https://doi.org/10.5281/zenodo.16880913
https://doi.org/10.5281/zenodo.16735994
https://doi.org/10.5281/zenodo.15152576
https://doi.org/10.5281/zenodo.16979744
https://doi.org/10.5281/zenodo.15771899
https://doi.org/10.5281/zenodo.7656540
https://doi.org/10.5281/zenodo.14006558
https://doi.org/10.5281/zenodo.13684187
https://doi.org/10.5281/zenodo.10886750
https://doi.org/10.5281/zenodo.10083555
https://doi.org/10.1038/s41598-019-56067-w
https://doi.org/10.5281/zenodo.17014253
https://doi.org/10.5281/zenodo.8329306
https://doi.org/10.5281/zenodo.14014252
https://doi.org/10.5281/zenodo.14792534
https://doi.org/10.5281/zenodo.11031747
https://doi.org/10.5281/zenodo.10808486
https://doi.org/10.5281/zenodo.17404133
https://doi.org/10.5281/zenodo.17372593
https://doi.org/10.5281/zenodo.17191504
https://doi.org/10.5281/zenodo.11502721
https://doi.org/10.5281/zenodo.16993178
https://doi.org/10.5281/zenodo.16736220
https://doi.org/10.5281/zenodo.17103962
https://doi.org/10.5281/zenodo.16735885
https://doi.org/10.5281/zenodo.8139354
https://doi.org/10.5281/zenodo.17296688
https://doi.org/10.5281/zenodo.14035822
https://doi.org/10.5281/zenodo.15373555
https://doi.org/10.5281/zenodo.14381522
https://doi.org/10.5281/zenodo.17092348
https://doi.org/10.5281/zenodo.16736342
https://doi.org/10.5281/zenodo.16561545
https://doi.org/10.5281/zenodo.16561338
https://doi.org/10.5281/zenodo.16412004
https://doi.org/10.5281/zenodo.12699637
https://doi.org/10.5281/zenodo.14937632
https://doi.org/10.5281/zenodo.17098115
https://doi.org/10.5281/zenodo.17092303
https://doi.org/10.5281/zenodo.16735893
https://doi.org/10.5281/zenodo.16992904
https://doi.org/10.5281/zenodo.16993059
https://doi.org/10.5281/zenodo.16980217
https://doi.org/10.5281/zenodo.16992716
https://doi.org/10.5281/zenodo.16993297
https://doi.org/10.5281/zenodo.16991961
https://doi.org/10.5281/zenodo.16980661
https://doi.org/10.5281/zenodo.16993955
https://doi.org/10.5281/zenodo.14186101
https://doi.org/10.5281/zenodo.10389955
https://doi.org/10.5281/zenodo.11146807
https://doi.org/10.5281/zenodo.16980386
https://doi.org/10.5281/zenodo.16993649
https://doi.org/10.5281/zenodo.7015307
https://doi.org/10.5281/zenodo.7394675

Count number of creators and contributors per record.

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
select ?record (count(distinct ?creator) as ?ncreators) (count(distinct ?contributor) as ?ncontributor)
where
{
  ?record dcite:contributor ?contributor ;
          dcite:creator ?creator .
}
group by ?record
recordncreatorsncontributor
https://doi.org/10.5281/zenodo.1493763211
https://doi.org/10.5281/zenodo.1103174711
https://doi.org/10.1038/s41598-019-56067-w11
https://doi.org/10.5281/zenodo.1698021721
https://doi.org/10.5281/zenodo.1495114213
https://doi.org/10.5281/zenodo.1699290441
https://doi.org/10.5281/zenodo.1135068932
https://doi.org/10.5281/zenodo.1709811511
https://doi.org/10.5281/zenodo.1404438091
https://doi.org/10.5281/zenodo.1699395521
https://doi.org/10.5281/zenodo.1537355531
https://doi.org/10.5281/zenodo.1418610115
https://doi.org/10.5281/zenodo.1699305921
https://doi.org/10.5281/zenodo.1699317851
https://doi.org/10.5281/zenodo.16979744121
https://doi.org/10.5281/zenodo.1699329711
https://doi.org/10.5281/zenodo.1673599482
https://doi.org/10.5281/zenodo.1673622072
https://doi.org/10.5281/zenodo.1150272119
https://doi.org/10.5281/zenodo.510115811
https://doi.org/10.5281/zenodo.1673634252
https://doi.org/10.5281/zenodo.1673589342
https://doi.org/10.5281/zenodo.1417878951
https://doi.org/10.5281/zenodo.1698066121
https://doi.org/10.5281/zenodo.1698038616
https://doi.org/10.5281/zenodo.14044640101
https://doi.org/10.5281/zenodo.1699271611
https://doi.org/10.5281/zenodo.1709234852
https://doi.org/10.5281/zenodo.1699364911
https://doi.org/10.5281/zenodo.1709230342
https://doi.org/10.5281/zenodo.14909526101
https://doi.org/10.5281/zenodo.1110961631
https://doi.org/10.5281/zenodo.1709345482
https://doi.org/10.5281/zenodo.1710396252
https://doi.org/10.5281/zenodo.1699196111
https://doi.org/10.5281/zenodo.1401302651
https://doi.org/10.5281/zenodo.1673588552

Records by institution (affiliation)

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
select ?institution (count(distinct ?record) as ?nrecords)
where

{
  ?record dcite:creator ?creator .
  ?creator dcite:affiliation ?institution .
  filter(isiri(?institution))
}
group by ?institution
order by desc(?nrecords)
institutionnrecords
https://ror.org/01vnkaz1686
https://ror.org/042aqky3044
https://ror.org/03s7gtk4035
https://ror.org/05tpnw77233
https://ror.org/04cdgtt9827
https://ror.org/024z2rq8225
https://ror.org/0546hnb3922
https://ror.org/00rcxh77416
https://ror.org/000h6jb2914
https://ror.org/04c4bwh6313
https://ror.org/034waa2379
https://ror.org/023b0x4858
https://ror.org/04qmmjx988
https://ror.org/00pd74e087
https://ror.org/05d78xc366
https://ror.org/0245cg2235
https://ror.org/04v4h0v245
https://ror.org/0534re6845
https://ror.org/013czdx644
https://ror.org/01zwmgk084
https://ror.org/038t36y304
https://ror.org/0030f2a113
https://ror.org/01f5dqg103
https://ror.org/01v7r4v083
https://ror.org/02nv7yv053
https://ror.org/02s3760523
https://ror.org/03a4sp9743
https://ror.org/03fqpzb443
https://ror.org/04ers2y353
https://ror.org/004hd5y142
https://ror.org/00r0qs5242
https://ror.org/014nnvj652
https://ror.org/02catss522
https://ror.org/02h2x01612
https://ror.org/02se0t6362
https://ror.org/03h2bxq362
https://ror.org/04xx1tc242
https://ror.org/055s37c972
https://ror.org/00ggpsq731
https://ror.org/00v34f6931
https://ror.org/00vn06n101
https://ror.org/01k8bwd501
https://ror.org/01k97gp341
https://ror.org/01y9bpm731
https://ror.org/01zjc69081
https://ror.org/0259fwx541
https://ror.org/02778hg051
https://ror.org/02jhqqg571
https://ror.org/0305k8y391
https://ror.org/0327sr1181
https://ror.org/03a1kwz481
https://ror.org/03av75f261
https://ror.org/03mstc5921
https://ror.org/04mz5ra381
https://ror.org/05745n7871
https://ror.org/05mxhda181
https://ror.org/05nfk71081
https://ror.org/05qj6w3241
https://ror.org/05qpz1x621
https://ror.org/05wwzbv211

Records by creator

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
select ?creator (count(distinct ?record) as ?nrecords)
where

{
  ?record dcite:creator ?creator .
  ?creator dcite:familyName ?name .
}
group by ?creator
order by desc(?nrecords)
creatornrecords
https://orcid.org/0000-0001-5949-232735
https://orcid.org/0000-0003-4028-811X31
https://orcid.org/0000-0001-9568-895X20
https://orcid.org/0000-0001-7734-377116
https://orcid.org/0000-0002-6999-132X13
https://orcid.org/0000-0003-2104-951913
https://orcid.org/0009-0007-5101-478613
https://orcid.org/0000-0001-5805-577411
https://orcid.org/0000-0002-6658-219211
https://orcid.org/0000-0002-5567-869010
https://orcid.org/0000-0003-3430-268310
https://orcid.org/0000-0002-3328-94679
https://orcid.org/0000-0002-5332-35899
https://orcid.org/0000-0002-8367-51639
https://orcid.org/0000-0001-6523-74968
https://orcid.org/0000-0002-3879-70578
https://orcid.org/0000-0003-2408-75888
https://orcid.org/0000-0003-3780-86638
https://orcid.org/0000-0002-5862-61326
https://orcid.org/0000-0001-7769-01675
https://orcid.org/0000-0002-4101-69875
https://orcid.org/0000-0003-1717-31385
https://orcid.org/0000-0001-9629-05644
https://orcid.org/0000-0002-2579-55464
https://orcid.org/0000-0002-5497-62664
https://orcid.org/0000-0002-6626-24634
https://orcid.org/0000-0002-6990-47164
https://orcid.org/0000-0002-7059-40304
https://orcid.org/0009-0002-1826-70994
https://orcid.org/0000-0001-8665-63823
https://orcid.org/0000-0002-1964-49603
https://orcid.org/0000-0002-2101-84163
https://orcid.org/0000-0002-3079-65863
https://orcid.org/0000-0002-4382-51043
https://orcid.org/0000-0002-5467-871X3
https://orcid.org/0000-0002-7452-11463
https://orcid.org/0000-0002-9051-37013
https://orcid.org/0000-0003-1323-37623
https://orcid.org/0000-0003-2778-74833
https://orcid.org/0009-0003-6932-023X3
https://orcid.org/0000-0001-6178-28842
https://orcid.org/0000-0001-9324-32362
https://orcid.org/0000-0002-0723-60382
https://orcid.org/0000-0002-0829-51012
https://orcid.org/0000-0002-1279-51332
https://orcid.org/0000-0002-1481-29962
https://orcid.org/0000-0002-1789-18612
https://orcid.org/0000-0002-2484-27422
https://orcid.org/0000-0002-3519-58862
https://orcid.org/0000-0002-4044-91662
https://orcid.org/0000-0002-4526-24722
https://orcid.org/0000-0002-5546-55212
https://orcid.org/0000-0002-6075-07572
https://orcid.org/0000-0002-6165-46792
https://orcid.org/0000-0002-6243-25682
https://orcid.org/0000-0002-9845-63932
https://orcid.org/0000-0003-1945-63422
https://orcid.org/0000-0003-3002-81702
https://orcid.org/0000-0003-3099-618X2
https://orcid.org/0009-0007-5222-26832
b01
b11
b21
b31
b41
b51
b61
b71
b81
b91
b101
b111
b121
b131
b141
b151
b161
b171
b181
b191
b201
b211
b221
b231
b241
b251
b261
b271
b281
b291
b301
https://orcid.org/0000-0001-5246-93511
https://orcid.org/0000-0001-5525-59731
https://orcid.org/0000-0001-5655-01301
https://orcid.org/0000-0001-6107-567X1
https://orcid.org/0000-0001-6919-36461
https://orcid.org/0000-0001-6966-08141
https://orcid.org/0000-0001-7250-37561
https://orcid.org/0000-0001-7276-776X1
https://orcid.org/0000-0001-7292-83081
https://orcid.org/0000-0001-7553-905X1
https://orcid.org/0000-0001-7713-024X1
https://orcid.org/0000-0001-8528-90231
https://orcid.org/0000-0001-8698-53891
https://orcid.org/0000-0001-8736-87961
https://orcid.org/0000-0001-9021-31971
https://orcid.org/0000-0001-9227-97981
https://orcid.org/0000-0001-9274-25781
https://orcid.org/0000-0001-9309-75311
https://orcid.org/0000-0001-9734-97671
https://orcid.org/0000-0001-9773-40081
https://orcid.org/0000-0001-9868-46711
https://orcid.org/0000-0001-9993-533X1
https://orcid.org/0000-0002-0024-50461
https://orcid.org/0000-0002-0347-78381
https://orcid.org/0000-0002-0550-74631
https://orcid.org/0000-0002-1355-50431
https://orcid.org/0000-0002-1784-29201
https://orcid.org/0000-0002-2068-46951
https://orcid.org/0000-0002-2198-52621
https://orcid.org/0000-0002-2217-75581
https://orcid.org/0000-0002-2382-97221
https://orcid.org/0000-0002-2542-08671
https://orcid.org/0000-0002-2902-71651
https://orcid.org/0000-0002-3085-74571
https://orcid.org/0000-0002-3333-91291
https://orcid.org/0000-0002-3439-16741
https://orcid.org/0000-0002-3885-52531
https://orcid.org/0000-0002-4182-75601
https://orcid.org/0000-0002-4232-45431
https://orcid.org/0000-0002-4375-06911
https://orcid.org/0000-0002-4378-60611
https://orcid.org/0000-0002-4392-81541
https://orcid.org/0000-0002-4482-60101
https://orcid.org/0000-0002-4666-96101
https://orcid.org/0000-0002-4894-19131
https://orcid.org/0000-0002-5192-126X1
https://orcid.org/0000-0002-5444-52461
https://orcid.org/0000-0002-5513-954X1
https://orcid.org/0000-0002-5857-14771
https://orcid.org/0000-0002-5884-44711
https://orcid.org/0000-0002-6027-07961
https://orcid.org/0000-0002-6209-23641
https://orcid.org/0000-0002-6574-25881
https://orcid.org/0000-0002-6586-71291
https://orcid.org/0000-0002-6634-97291
https://orcid.org/0000-0002-6681-15301
https://orcid.org/0000-0002-7018-04601
https://orcid.org/0000-0002-7390-87951
https://orcid.org/0000-0002-8251-15971
https://orcid.org/0000-0002-8500-13571
https://orcid.org/0000-0002-8516-80341
https://orcid.org/0000-0002-8818-71931
https://orcid.org/0000-0002-9071-23561
https://orcid.org/0000-0002-9134-52951
https://orcid.org/0000-0002-9397-84751
https://orcid.org/0000-0002-9574-95531
https://orcid.org/0000-0002-9723-90631
https://orcid.org/0000-0003-1334-63881
https://orcid.org/0000-0003-1379-70231
https://orcid.org/0000-0003-1896-90311
https://orcid.org/0000-0003-2237-11471
https://orcid.org/0000-0003-2370-34301
https://orcid.org/0000-0003-2380-88301
https://orcid.org/0000-0003-2528-53911
https://orcid.org/0000-0003-2547-933X1
https://orcid.org/0000-0003-2778-66241
https://orcid.org/0000-0003-3001-14911
https://orcid.org/0000-0003-3385-42321
https://orcid.org/0000-0003-3399-75321
https://orcid.org/0000-0003-3667-187X1
https://orcid.org/0000-0003-3763-07971
https://orcid.org/0000-0003-3925-67781
https://orcid.org/0000-0003-4025-17121
https://orcid.org/0000-0003-4043-165X1
https://orcid.org/0000-0003-4105-19901
https://orcid.org/0000-0003-4328-71711
https://orcid.org/0000-0003-4358-22691
https://orcid.org/0000-0003-4726-24811
https://orcid.org/0000-0003-4813-59271
https://orcid.org/0009-0002-1414-32911
https://orcid.org/0009-0004-5318-59661
https://orcid.org/0009-0005-1758-17901
https://orcid.org/0009-0009-8508-85851

Number of images per OMERO instance.

<<prefixes>>
prefix omecore: <https://ld.openmicroscopy.org/core/>
select * where {
  graph n4bikg:services {
    ?omero dcat:accesURL ?sparql_endpoint_url .
 }
  }
omerosparql_endpoint_url
https://omero-nfdi.uni-muenster.dehttps://omero-nfdi.uni-muenster.de/vkg/sparql
https://evolomero.evolbio.mpg.dehttps://evolomero.evolbio.mpg.de/vkg/sparql
service <https://evolomero.evolbio.mpg.de/vkg/sparql> {
    ?img a omecore:Image .
    }
# }
# }
img
https://evolomero.evolbio.mpg.de/Image/75
https://evolomero.evolbio.mpg.de/Image/13
https://evolomero.evolbio.mpg.de/Image/93
https://evolomero.evolbio.mpg.de/Image/94
https://evolomero.evolbio.mpg.de/Image/325
https://evolomero.evolbio.mpg.de/Image/34
https://evolomero.evolbio.mpg.de/Image/182
https://evolomero.evolbio.mpg.de/Image/18
https://evolomero.evolbio.mpg.de/Image/2
https://evolomero.evolbio.mpg.de/Image/183
https://evolomero.evolbio.mpg.de/Image/268
https://evolomero.evolbio.mpg.de/Image/37
https://evolomero.evolbio.mpg.de/Image/282
https://evolomero.evolbio.mpg.de/Image/66
https://evolomero.evolbio.mpg.de/Image/315
https://evolomero.evolbio.mpg.de/Image/45
https://evolomero.evolbio.mpg.de/Image/285
https://evolomero.evolbio.mpg.de/Image/199
https://evolomero.evolbio.mpg.de/Image/180
https://evolomero.evolbio.mpg.de/Image/190
https://evolomero.evolbio.mpg.de/Image/203
https://evolomero.evolbio.mpg.de/Image/31
https://evolomero.evolbio.mpg.de/Image/82
https://evolomero.evolbio.mpg.de/Image/264
https://evolomero.evolbio.mpg.de/Image/188
https://evolomero.evolbio.mpg.de/Image/269
https://evolomero.evolbio.mpg.de/Image/309
https://evolomero.evolbio.mpg.de/Image/172
https://evolomero.evolbio.mpg.de/Image/69
https://evolomero.evolbio.mpg.de/Image/54
https://evolomero.evolbio.mpg.de/Image/10
https://evolomero.evolbio.mpg.de/Image/293
https://evolomero.evolbio.mpg.de/Image/295
https://evolomero.evolbio.mpg.de/Image/278
https://evolomero.evolbio.mpg.de/Image/52
https://evolomero.evolbio.mpg.de/Image/170
https://evolomero.evolbio.mpg.de/Image/111
https://evolomero.evolbio.mpg.de/Image/324
https://evolomero.evolbio.mpg.de/Image/291
https://evolomero.evolbio.mpg.de/Image/169
https://evolomero.evolbio.mpg.de/Image/281
https://evolomero.evolbio.mpg.de/Image/29
https://evolomero.evolbio.mpg.de/Image/254
https://evolomero.evolbio.mpg.de/Image/56
https://evolomero.evolbio.mpg.de/Image/306
https://evolomero.evolbio.mpg.de/Image/152
https://evolomero.evolbio.mpg.de/Image/165
https://evolomero.evolbio.mpg.de/Image/290
https://evolomero.evolbio.mpg.de/Image/22
https://evolomero.evolbio.mpg.de/Image/185
https://evolomero.evolbio.mpg.de/Image/287
https://evolomero.evolbio.mpg.de/Image/258
https://evolomero.evolbio.mpg.de/Image/89
https://evolomero.evolbio.mpg.de/Image/63
https://evolomero.evolbio.mpg.de/Image/106
https://evolomero.evolbio.mpg.de/Image/72
https://evolomero.evolbio.mpg.de/Image/167
https://evolomero.evolbio.mpg.de/Image/108
https://evolomero.evolbio.mpg.de/Image/299
https://evolomero.evolbio.mpg.de/Image/155
https://evolomero.evolbio.mpg.de/Image/28
https://evolomero.evolbio.mpg.de/Image/197
https://evolomero.evolbio.mpg.de/Image/23
https://evolomero.evolbio.mpg.de/Image/14
https://evolomero.evolbio.mpg.de/Image/64
https://evolomero.evolbio.mpg.de/Image/6
https://evolomero.evolbio.mpg.de/Image/301
https://evolomero.evolbio.mpg.de/Image/158
https://evolomero.evolbio.mpg.de/Image/279
https://evolomero.evolbio.mpg.de/Image/68
https://evolomero.evolbio.mpg.de/Image/189
https://evolomero.evolbio.mpg.de/Image/58
https://evolomero.evolbio.mpg.de/Image/294
https://evolomero.evolbio.mpg.de/Image/305
https://evolomero.evolbio.mpg.de/Image/320
https://evolomero.evolbio.mpg.de/Image/161
https://evolomero.evolbio.mpg.de/Image/277
https://evolomero.evolbio.mpg.de/Image/300
https://evolomero.evolbio.mpg.de/Image/312
https://evolomero.evolbio.mpg.de/Image/101
https://evolomero.evolbio.mpg.de/Image/313
https://evolomero.evolbio.mpg.de/Image/99
https://evolomero.evolbio.mpg.de/Image/175
https://evolomero.evolbio.mpg.de/Image/46
https://evolomero.evolbio.mpg.de/Image/53
https://evolomero.evolbio.mpg.de/Image/151
https://evolomero.evolbio.mpg.de/Image/267
https://evolomero.evolbio.mpg.de/Image/42
https://evolomero.evolbio.mpg.de/Image/256
https://evolomero.evolbio.mpg.de/Image/5
https://evolomero.evolbio.mpg.de/Image/55
https://evolomero.evolbio.mpg.de/Image/86
https://evolomero.evolbio.mpg.de/Image/85
https://evolomero.evolbio.mpg.de/Image/260
https://evolomero.evolbio.mpg.de/Image/270
https://evolomero.evolbio.mpg.de/Image/81
https://evolomero.evolbio.mpg.de/Image/65
https://evolomero.evolbio.mpg.de/Image/59
https://evolomero.evolbio.mpg.de/Image/160
https://evolomero.evolbio.mpg.de/Image/329
https://evolomero.evolbio.mpg.de/Image/24
https://evolomero.evolbio.mpg.de/Image/191
https://evolomero.evolbio.mpg.de/Image/83
https://evolomero.evolbio.mpg.de/Image/103
https://evolomero.evolbio.mpg.de/Image/35
https://evolomero.evolbio.mpg.de/Image/318
https://evolomero.evolbio.mpg.de/Image/157
https://evolomero.evolbio.mpg.de/Image/41
https://evolomero.evolbio.mpg.de/Image/265
https://evolomero.evolbio.mpg.de/Image/112
https://evolomero.evolbio.mpg.de/Image/50
https://evolomero.evolbio.mpg.de/Image/26
https://evolomero.evolbio.mpg.de/Image/198
https://evolomero.evolbio.mpg.de/Image/286
https://evolomero.evolbio.mpg.de/Image/8
https://evolomero.evolbio.mpg.de/Image/176
https://evolomero.evolbio.mpg.de/Image/96
https://evolomero.evolbio.mpg.de/Image/266
https://evolomero.evolbio.mpg.de/Image/314
https://evolomero.evolbio.mpg.de/Image/173
https://evolomero.evolbio.mpg.de/Image/196
https://evolomero.evolbio.mpg.de/Image/113
https://evolomero.evolbio.mpg.de/Image/95
https://evolomero.evolbio.mpg.de/Image/104
https://evolomero.evolbio.mpg.de/Image/317
https://evolomero.evolbio.mpg.de/Image/32
https://evolomero.evolbio.mpg.de/Image/261
https://evolomero.evolbio.mpg.de/Image/76
https://evolomero.evolbio.mpg.de/Image/181
https://evolomero.evolbio.mpg.de/Image/74
https://evolomero.evolbio.mpg.de/Image/4
https://evolomero.evolbio.mpg.de/Image/274
https://evolomero.evolbio.mpg.de/Image/9
https://evolomero.evolbio.mpg.de/Image/201
https://evolomero.evolbio.mpg.de/Image/61
https://evolomero.evolbio.mpg.de/Image/187
https://evolomero.evolbio.mpg.de/Image/36
https://evolomero.evolbio.mpg.de/Image/11
https://evolomero.evolbio.mpg.de/Image/272
https://evolomero.evolbio.mpg.de/Image/60
https://evolomero.evolbio.mpg.de/Image/43
https://evolomero.evolbio.mpg.de/Image/110
https://evolomero.evolbio.mpg.de/Image/156
https://evolomero.evolbio.mpg.de/Image/62
https://evolomero.evolbio.mpg.de/Image/195
https://evolomero.evolbio.mpg.de/Image/49
https://evolomero.evolbio.mpg.de/Image/12
https://evolomero.evolbio.mpg.de/Image/193
https://evolomero.evolbio.mpg.de/Image/168
https://evolomero.evolbio.mpg.de/Image/7
https://evolomero.evolbio.mpg.de/Image/88
https://evolomero.evolbio.mpg.de/Image/328
https://evolomero.evolbio.mpg.de/Image/15
https://evolomero.evolbio.mpg.de/Image/159
https://evolomero.evolbio.mpg.de/Image/40
https://evolomero.evolbio.mpg.de/Image/73
https://evolomero.evolbio.mpg.de/Image/154
https://evolomero.evolbio.mpg.de/Image/177
https://evolomero.evolbio.mpg.de/Image/303
https://evolomero.evolbio.mpg.de/Image/288
https://evolomero.evolbio.mpg.de/Image/311
https://evolomero.evolbio.mpg.de/Image/21
https://evolomero.evolbio.mpg.de/Image/107
https://evolomero.evolbio.mpg.de/Image/276
https://evolomero.evolbio.mpg.de/Image/284
https://evolomero.evolbio.mpg.de/Image/17
https://evolomero.evolbio.mpg.de/Image/296
https://evolomero.evolbio.mpg.de/Image/78
https://evolomero.evolbio.mpg.de/Image/162
https://evolomero.evolbio.mpg.de/Image/292
https://evolomero.evolbio.mpg.de/Image/321
https://evolomero.evolbio.mpg.de/Image/3
https://evolomero.evolbio.mpg.de/Image/298
https://evolomero.evolbio.mpg.de/Image/297
https://evolomero.evolbio.mpg.de/Image/319
https://evolomero.evolbio.mpg.de/Image/84
https://evolomero.evolbio.mpg.de/Image/70
https://evolomero.evolbio.mpg.de/Image/202
https://evolomero.evolbio.mpg.de/Image/109
https://evolomero.evolbio.mpg.de/Image/39
https://evolomero.evolbio.mpg.de/Image/19
https://evolomero.evolbio.mpg.de/Image/20
https://evolomero.evolbio.mpg.de/Image/25
https://evolomero.evolbio.mpg.de/Image/79
https://evolomero.evolbio.mpg.de/Image/252
https://evolomero.evolbio.mpg.de/Image/38
https://evolomero.evolbio.mpg.de/Image/251
https://evolomero.evolbio.mpg.de/Image/302
https://evolomero.evolbio.mpg.de/Image/204
https://evolomero.evolbio.mpg.de/Image/100
https://evolomero.evolbio.mpg.de/Image/273
https://evolomero.evolbio.mpg.de/Image/323
https://evolomero.evolbio.mpg.de/Image/259
https://evolomero.evolbio.mpg.de/Image/307
https://evolomero.evolbio.mpg.de/Image/194
https://evolomero.evolbio.mpg.de/Image/263
https://evolomero.evolbio.mpg.de/Image/33
https://evolomero.evolbio.mpg.de/Image/30
https://evolomero.evolbio.mpg.de/Image/102
https://evolomero.evolbio.mpg.de/Image/92
https://evolomero.evolbio.mpg.de/Image/51
https://evolomero.evolbio.mpg.de/Image/153
https://evolomero.evolbio.mpg.de/Image/192
https://evolomero.evolbio.mpg.de/Image/27
https://evolomero.evolbio.mpg.de/Image/178
https://evolomero.evolbio.mpg.de/Image/163
https://evolomero.evolbio.mpg.de/Image/310
https://evolomero.evolbio.mpg.de/Image/80
https://evolomero.evolbio.mpg.de/Image/289
https://evolomero.evolbio.mpg.de/Image/67
https://evolomero.evolbio.mpg.de/Image/97
https://evolomero.evolbio.mpg.de/Image/105
https://evolomero.evolbio.mpg.de/Image/179
https://evolomero.evolbio.mpg.de/Image/283
https://evolomero.evolbio.mpg.de/Image/280
https://evolomero.evolbio.mpg.de/Image/47
https://evolomero.evolbio.mpg.de/Image/174
https://evolomero.evolbio.mpg.de/Image/322
https://evolomero.evolbio.mpg.de/Image/91
https://evolomero.evolbio.mpg.de/Image/255
https://evolomero.evolbio.mpg.de/Image/44
https://evolomero.evolbio.mpg.de/Image/200
https://evolomero.evolbio.mpg.de/Image/77
https://evolomero.evolbio.mpg.de/Image/164
https://evolomero.evolbio.mpg.de/Image/253
https://evolomero.evolbio.mpg.de/Image/171
https://evolomero.evolbio.mpg.de/Image/87
https://evolomero.evolbio.mpg.de/Image/275
https://evolomero.evolbio.mpg.de/Image/184
https://evolomero.evolbio.mpg.de/Image/1
https://evolomero.evolbio.mpg.de/Image/57
https://evolomero.evolbio.mpg.de/Image/308
https://evolomero.evolbio.mpg.de/Image/304
https://evolomero.evolbio.mpg.de/Image/316
https://evolomero.evolbio.mpg.de/Image/48
https://evolomero.evolbio.mpg.de/Image/186
https://evolomero.evolbio.mpg.de/Image/98
https://evolomero.evolbio.mpg.de/Image/271
https://evolomero.evolbio.mpg.de/Image/262
https://evolomero.evolbio.mpg.de/Image/90
https://evolomero.evolbio.mpg.de/Image/16
https://evolomero.evolbio.mpg.de/Image/257
https://evolomero.evolbio.mpg.de/Image/71

Updates

Updating the zenodo community graph

N4BI_zenodo_community/readme.org

Updating the services graph

N4BI_Services/readme.org

Update core graph

N4BI_core/readme.org

Update nfdicore ontology

Affected terms

Find all terms from the nfdi core ontology used in our KG and check if they are still present in the most recent nfdicore version (3.0.5)
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/NFDI_>
select ?g ?s ?p ?o where {
  graph ?g {?s ?p ?o}

  values ?g {
    <https://kg.nfdi4bioimage.de/n4bikg/core>
    <https://kg.nfdi4bioimage.de/n4bikg/services>
    <https://kg.nfdi4bioimage.de/n4bikg/n4bi_zenodo_community>
  }

  bind(concat(str(?p), str(?o)) as ?spo)
  filter(contains(?spo, str(nfdicore:)))
  }
gspo
https://kg.nfdi4bioimage.de/n4bikg/serviceshttps://omero-nfdi.uni-muenster.dehttp://www.w3.org/1999/02/22-rdf-syntax-ns#typehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000001
https://kg.nfdi4bioimage.de/n4bikg/serviceshttps://omero-nfdi.uni-muenster.dehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000201https://omero-nfdi.uni-muenster.de/vkg/sparql
https://kg.nfdi4bioimage.de/n4bikg/serviceshttps://evolomero.evolbio.mpg.dehttp://www.w3.org/1999/02/22-rdf-syntax-ns#typehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000001
https://kg.nfdi4bioimage.de/n4bikg/serviceshttps://evolomero.evolbio.mpg.dehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000201https://evolomero.evolbio.mpg.de/vkg/sparql
https://kg.nfdi4bioimage.de/n4bikg/serviceshttps://omero-training.gerbi-gmb.de/http://www.w3.org/1999/02/22-rdf-syntax-ns#typehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000001
https://kg.nfdi4bioimage.de/n4bikg/serviceshttps://omero-tim.gerbi-gmb.dehttp://www.w3.org/1999/02/22-rdf-syntax-ns#typehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000001
https://kg.nfdi4bioimage.de/n4bikg/n4bi_zenodo_communityhttps://nfdi4bioimage.de/rdf/nodehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000195https://zenodo.org/communities/nfdi4bioimage
https://kg.nfdi4bioimage.de/n4bikg/n4bi_zenodo_communityhttps://zenodo.org/communities/nfdi4bioimagehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0001008https://zenodo.org/communities/nfdi4bioimage

Load most recent version

nfdicore = Graph()
nfdicore.parse("https://ise-fizkarlsruhe.github.io/nfdicore/ontology.ttl")

# Check properties
object_properties = nfdicore.query("select ?p where {?p a owl:ObjectProperty. }").serialize(format='csv').decode('utf8').split("\r\n")[1:]
for test_prop in [
        "https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000201",
        "https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000195",
        "https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0001008"]:
    print(test_prop, test_prop in object_properties)

classes = nfdicore.query("select ?p where {?p a owl:Class. }").serialize(format='csv').decode('utf8').split("\r\n")[1:]

print("https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000001", "https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000001" in classes)

Need to replace the three properties[3/3]

NFDI_0000201

select * where {
  <https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000201> ?prop ?val .
  }
propval
http://www.w3.org/1999/02/22-rdf-syntax-ns#typehttp://www.w3.org/2002/07/owl#ObjectProperty
http://www.w3.org/2000/01/rdf-schema#labelhas sparql endpoint
http://www.w3.org/2000/01/rdf-schema#commentThe property relates a data resource to its SPARQL Endpoint.
http://www.w3.org/2000/01/rdf-schema#subPropertyOfhttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000226
https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000012sparqlEndpoint
http://www.w3.org/2002/07/owl#inverseOfhttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000202
arq --data https://ise-fizkarlsruhe.github.io/nfdicore/ontology.ttl " 
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/NFDI_> 
prefix owl: <http://www.w3.org/2002/07/owl#>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select * where { 
    ?prop a owl:ObjectProperty .
    ?prop rdfs:label ?label .
    filter(contains(?label, \"sparql\"))
} "

no alternative in nfdi core. looking up ols, returns dcat:acessURL

sparql updates (eval in fuseki online, requires admin login)
<<prefixes>>
prefix n4bikg: <https://kg.nfdi4bioimage.de/n4bikg/>
prefix dcat: <http://www.w3.org/ns/dcat#>

delete { graph n4bikg:services {?s nfdicore:NFDI_0000201 ?val}}
insert {graph n4bikg:services {?s dcat:accesURL ?val}}
where {
  graph n4bikg:services {?s nfdicore:NFDI_0000201 ?val} .
}

NFDI_000195 (op)

  • affected graph: n4bi_zenodo_community
  • affected terms
prefix n4bikg: <https://kg.nfdi4bioimage.de/n4bikg/>
prefix dcat: <http://www.w3.org/ns/dcat#>
PREFIX schema:     <http://schema.org/>
<<prefixes>>
select * where {
  {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0000195 ?o}
    }
  union {
    graph n4bikg:owl { nfdicore:NFDI_0000195 rdfs:label ?label195}
    }
 }
solabel195
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimage
represents collection

will replace by (zenodo_communit provo:wasAttributedTo n4bi)

sparql update
<<prefixes>>
prefix prov <https://www.w3.org/TR/prov-o/#>

delete {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0000195 ?collection}
  }
insert {
  graph n4bikg:n4bi_zenodo_community {?collection prov:wasAttributedTo ?s;
                                                  a prov:Collection .}
  }
where {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0000195 ?collection}
  }
check
<<prefixes>>
prefix prov: <https://www.w3.org/TR/prov-o/#>
select * where {
  optional
  {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0000195 ?collection}
  }
  optional {
  graph n4bikg:n4bi_zenodo_community {?s ^prov:wasAttributedTo ?collection .
                                      ?collection ?prop ?val .}
  }
  }
scollectionpropval
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://www.w3.org/1999/02/22-rdf-syntax-ns#typehttps://www.w3.org/TR/prov-o/#Collection
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttps://nfdi.fiz-karlsruhe.de/ontology/NFDI_0001008https://zenodo.org/communities/nfdi4bioimage
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://purl.org/dc/elements/1.1/identifiernfdi4bioimage
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15268798
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11261115
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8434325
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8414319
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8349563
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8340248
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8329306
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8139354
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8070038
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.8019760
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.7928333
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.7890311
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.7656540
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.7394675
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.7082609
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.7082514
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.7015307
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.6560026
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.6504714
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.6504467
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.6504208
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.6501614
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.5101158
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15423904
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15373555
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15308773
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15225616
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15152576
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15083018
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15065070
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15047849
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15033241
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15031842
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15026373
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14999220
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14998017
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14997835
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14988921
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14979253
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14975462
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14954254
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14953098
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14951142
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14950686
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14937632
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14909526
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14845059
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14832855
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14792534
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14716546
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14650434
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14626054
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14623257
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14620253
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14418209
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14412107
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14381522
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14278058
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14234608
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14186101
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14178789
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14044640
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14044380
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14035822
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14014252
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14013026
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14006558
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14001388
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13991322
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13970736
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13861026
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13837146
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13831274
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13747937
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13684187
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13640979
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13628852
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13506641
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13380289
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.13168693
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.12699637
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.12623730
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.12521485
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.12087272
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.12077569
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11574994
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11574435
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11548617
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11525313
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11503289
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11502721
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11501662
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11448638
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11412513
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11369042
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11350689
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11344132
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11312181
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11259495
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11235513
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11235081
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11220181
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11191762
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11146807
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11126631
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11122233
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11109616
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11080237
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.11031747
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10978831
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10968458
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10947701
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10939520
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10935236
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10907116
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10886750
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10808486
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10793700
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10730424
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10687659
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10617006
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10609771
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10389955
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10083555
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10008465
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.1038/s41598-019-56067-w
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17296688
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17251110
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17186869
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17174207
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17103962
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17098115
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17093454
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17092348
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17092303
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17087096
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17085991
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17014253
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16993955
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16993649
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16993297
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16993178
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16993059
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16992904
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16992716
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16992303
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16991961
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16980661
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16980386
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16980217
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16979744
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16911980
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16880913
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16812312
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16793739
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16736342
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16736220
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16735994
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16735893
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16735885
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16561545
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16561338
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.16412004
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15858127
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15796252
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15793536
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15771899
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15756866
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15751975
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15750255
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15735577
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15698366
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15606013
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15597856
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15575379
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15546497
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15481680
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15479606
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15469809
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15424704
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15393592
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15379632
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15367563
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15319829
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15279551
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15267559
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15223802
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15193418
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15182563
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.15165424
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14848838
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14001044
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10816895
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17404133
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17372593
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17191504
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.10203284
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14264509
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14264885
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.14710820
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17424911
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17429285
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17472821
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17476640
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17477053
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17487264
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17541532
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17564219
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17579804
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17604591
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17607828
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17639350
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17659149
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17669681
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17671971
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17775761
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17775957
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17787401
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17856704
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17876813
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17897525
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17898202
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17974214
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17977384
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.17978132
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18184329
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18230666
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18415225
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18454238
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18659976
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18694155
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18712011
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18735653
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18754248
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18782352
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18953151
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18957947
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18984621
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.18998676
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19001717
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19046270
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19063027
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19107804
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19177652
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19184109
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19239481
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19246441
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19335305
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19352622
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19366801
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19450032
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19469051
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19627003
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.19949157
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.20024684
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.20039402
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.20271104
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.20275730
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.20282961
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.20509378
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttp://semanticscience.org/resource/SIO_000088https://doi.org/10.5281/zenodo.20512957
https://nfdi4bioimage.de/rdf/nodehttps://zenodo.org/communities/nfdi4bioimagehttps://www.w3.org/TR/prov-o/#wasAttributedTohttps://nfdi4bioimage.de/rdf/node

NFDI_001008 (op)

  • affected graph: n4bi_zenodo_community
  • affected terms
<<prefixes>>
select * where {
  {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0001008 ?o}
    }
  union {
    graph n4bikg:owl { nfdicore:NFDI_0001008 rdfs:label ?label }
    }
 }
solabel
https://zenodo.org/communities/nfdi4bioimagehttps://zenodo.org/communities/nfdi4bioimage
has url

will replace by (zenodo_communit provo:wasAttributedTo n4bi)

sparql update
<<prefixes>>
prefix prov <https://www.w3.org/TR/prov-o/#>

delete {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0001008 ?o}
  }
insert {
  graph n4bikg:n4bi_zenodo_community {?s schema:url ?s .}
  }
where {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0001008 ?o}
  }
check
<<prefixes>>
select * where {
  optional
  {
  graph n4bikg:n4bi_zenodo_community {?s nfdicore:NFDI_0001080 ?o}
  }
  optional {
  graph n4bikg:n4bi_zenodo_community {?s schema:url ?o .}
  }
  }
so
https://zenodo.org/communities/nfdi4bioimagehttps://zenodo.org/communities/nfdi4bioimage

Update nfdicore ontology

wget -O RDF_dumps/nfdicore-3.0.5.ttl https://ise-fizkarlsruhe.github.io/nfdicore/ontology.ttl 
wget -O RDF_dumps/

Varia

Dump entire graph and feed to gephi

construct {?s ?p ?o} where {graph ?g {?s ?p ?o}}

Parse error: Encountered ” <VAR1> “?o “” at line 1, column 21. ]] PREFIX adms: http://www.w3.org/ns/adms# PREFIX bibo: http://purl.org/ontology/bibo/ PREFIX core: https://ld.openmicroscopy.org/core/ PREFIX datacite: https://schema.datacite.org/meta/kernel-4.6/metadata.xsd# PREFIX dc: http://purl.org/dc/elements/1.1/ PREFIX dcite: https://schema.datacite.org/meta/kernel-4.6/metadata.xsd# PREFIX dcterms: http://purl.org/dc/terms/ PREFIX doap: http://usefulinc.com/ns/doap# PREFIX edam: http://purl.obolibrary.org/obo/edam# PREFIX edamontology: http://edamontology.org/ PREFIX foaf: http://xmlns.com/foaf/0.1/ PREFIX linkml: https://w3id.org/linkml/ PREFIX ncit: http://purl.obolibrary.org/obo/NCIT_ PREFIX nfdicore: https://nfdi.fiz-karlsruhe.de/ontology/ PREFIX obo: http://purl.obolibrary.org/obo/ PREFIX oboInOwl: http://www.geneontology.org/formats/oboInOwl# PREFIX ontology: https://nfdi.fiz-karlsruhe.de/ontology/ PREFIX orcid: https://orcid.org/ PREFIX owl: http://www.w3.org/2002/07/owl# PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema# PREFIX ror: https://ror.org/ PREFIX sio: http://semanticscience.org/resource/ PREFIX skos: http://www.w3.org/2004/02/skos/core# PREFIX t4fs: http://purl.obolibrary.org/obo/T4FS_ PREFIX terms: http://purl.org/dc/terms/ PREFIX vann: http://purl.org/vocab/vann/ PREFIX wd: http://www.wikidata.org/entity/ PREFIX wdt: http://www.wikidata.org/prop/direct/ PREFIX xml: http://www.w3.org/XML/1998/namespace PREFIX xo: http://rhizomik.net/redefer/xsl/xsd2owl-functions.xsl PREFIX xs: http://www.w3.org/2001/XMLSchema# PREFIX xsd: http://www.w3.org/2001/XMLSchema# PREFIX xsi: http://www.w3.org/2001/XMLSchema-instance# PREFIX zenodo: https://zenodo.org/ns/ ]]

Archiving

After each update operation, all graphs should be dumped and git committed to serve as a starting point for the next round of updates.

[2026-06-05 Fri]

core

construct {?s ?p ?o} where {
  graph $graph {?s ?p ?o}
  }

[2026-06-09 Fri]

core

construct {?s ?p ?o} where {
  graph $graph {?s ?p ?o}
  }

Changes not staged for commit: (use “git add <file>…” to update what will be committed) (use “git restore <file>…” to discard changes in working directory) modified: README.org

no changes added to commit (use “git add” and/or “git commit -a”) [main e2660a8] Archiving graphs. 1 file changed, 49 insertions(+), 26 deletions(-)

Fix typo

dcat:accesURL should be dcat:accessURL

Archive

construct {?s ?p ?o} where {
  graph $graph {?s ?p ?o}
  }
git add Archive/*.n3
git commit -m "Archiving graphs."

Changes not staged for commit: (use “git add <file>…” to update what will be committed) (use “git restore <file>…” to discard changes in working directory) modified: README.org

no changes added to commit (use “git add” and/or “git commit -a”) [main e2660a8] Archiving graphs. 1 file changed, 49 insertions(+), 26 deletions(-)

[2026-07-01 Wed]

Fix typo

dcat:accesURL should be dcat:accessURL

still an issue?

<<prefixes>>
ask where {
  ?service dcat:accessURL ?url
  }
_askResult
false

apparently not. Check sparq:sparqlService and sparql:sparqlEndpoint

prefix n4bikg: <https://kg.nfdi4bioimage.de/n4bikg/> 
prefix sparql: <http://www.w3.org/ns/sparql-service-description#>
select * where {
  graph n4bikg:services {?service a sparql:Service;
                                  sparql:endpoint ?endpoint } .
  } 
serviceendpoint
https://evolomero.evolbio.mpg.de/vkghttps://evolomero.evolbio.mpg.de/vkg/sparql
https://omero.nfdi4bioimage.de/vkghttps://omero.nfdi4bioimage.de/vkg/sparql

ok, no issue any longer

but let’s add those prefixes

prefix n4bikg: <https://kg.nfdi4bioimage.de/n4bikg/>
prefix sparql: <http://www.w3.org/ns/sparql-service-description#>

Fix labels for affiliations

Get one affil via ror prefix
prefix ror: <https://ror.org/>
prefix obo: <http://purl.obolibrary.org/obo/>
<<prefixes>>

select distinct ?affiliation ?affiliation_label where {
  ?affiliation a ?ro ;
               rdfs:label ?affiliation_label .
  values ?ro { obo:OBI_0000245 obo:OBI_0000828}


  }
affiliationaffiliation_label
https://ror.org/042aqky30TU Dresden
https://ror.org/042aqky30TU Dresden
https://ror.org/03s7gtk40Leipzig University
https://ror.org/03s7gtk40Leipzig University
https://ror.org/05tpnw772German BioImaging – Gesellschaft für Mikroskopie und Bildanalyse
https://ror.org/05tpnw772German BioImaging – Gesellschaft für Mikroskopie und Bildanalyse
https://ror.org/0546hnb39University of Konstanz
https://ror.org/0546hnb39University of Konstanz
https://ror.org/04cdgtt98German Cancer Research Center
https://ror.org/04cdgtt98German Cancer Research Center
https://ror.org/024z2rq82Heinrich Heine University Düsseldorf
https://ror.org/024z2rq82University of Düsseldorf
https://ror.org/04c4bwh63Cologne Excellence Cluster on Cellular Stress Responses in Aging Associated Diseases
https://ror.org/00rcxh774University of Cologne
https://ror.org/00rcxh774University of Cologne
https://ror.org/000h6jb29Helmholtz Centre for Environmental Research
https://ror.org/000h6jb29Helmholtz Centre for Environmental Research
https://ror.org/038t36y30Heidelberg University
https://ror.org/038t36y30Heidelberg University
https://ror.org/023b0x485Johannes Gutenberg University Mainz
https://ror.org/023b0x485Johannes Gutenberg University Mainz
https://ror.org/034waa237Cluster of Excellence on Plant Sciences
https://ror.org/04qmmjx98Osnabrück University
https://ror.org/04qmmjx98Osnabrück University
https://ror.org/0245cg223University of Freiburg
https://ror.org/0245cg223University of Freiburg
https://ror.org/05d78xc36Euro-BioImaging ERIC
https://ror.org/00pd74e08University of Münster
https://ror.org/00pd74e08University of Münster
https://ror.org/013czdx64University Hospital Heidelberg
https://ror.org/0534re684Max Planck Institute for Evolutionary Biology
https://ror.org/0534re684Max Planck Institute for Evolutionary Biology
https://ror.org/04v4h0v24Helmholtz Metadata Collaboration
https://ror.org/05wwzbv21NFDI4Chem
https://ror.org/055s37c97Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V. - Hans-Knöll-Institut (HKI)
https://ror.org/055s37c97Leibniz Institute for Natural Product Research and Infection Biology
https://ror.org/03a4sp974NFDI4Microbiota
https://ror.org/01f5dqg10NFDI4Earth
https://ror.org/00r0qs524FAIRAgro
https://ror.org/05nfk7108German Human Genome-Phenome Archive
https://ror.org/03fqpzb44NFDI4Biodiversity
https://ror.org/0305k8y39NFDI4Health
https://ror.org/01zwmgk08Leibniz Institute for Neurobiology
https://ror.org/01zwmgk08Leibniz Institute for Neurobiology
https://ror.org/01v7r4v08DataPLANT
https://ror.org/004hd5y14Leibniz Institute for Plasma Science and Technology
https://ror.org/004hd5y14Leibniz Institute for Plasma Science and Technology
https://ror.org/0030f2a11Universitätsklinikum Erlangen
https://ror.org/02nv7yv05Forschungszentrum Jülich
https://ror.org/02nv7yv05Forschungszentrum Jülich
https://ror.org/02s376052École Polytechnique Fédérale de Lausanne
https://ror.org/04ers2y35University of Bremen
https://ror.org/04xx1tc24Max Planck Institute for Biology of Ageing
https://ror.org/02se0t636Leibniz Institute of Photonic Technology
https://ror.org/02se0t636Leibniz Institute of Photonic Technology
https://ror.org/02h2x0161GEOMAR Helmholtz Centre for Ocean Research Kiel
https://ror.org/03h2bxq36University of Dundee
https://ror.org/014nnvj65TH Köln - University of Applied Sciences
https://ror.org/02catss52European Bioinformatics Institute
https://ror.org/05qpz1x62Friedrich Schiller University Jena
https://ror.org/05qj6w324Nationale Forschungsdateninfrastruktur
https://ror.org/05mxhda18University Hospital Cologne
https://ror.org/05745n787Niedersächsische Staats-und Universitätsbibliothek Göttingen
https://ror.org/04mz5ra38University of Duisburg-Essen
https://ror.org/03mstc592European Molecular Biology Laboratory
https://ror.org/03mstc592European Molecular Biology Laboratory
https://ror.org/03av75f26Max Planck Institute for Multidisciplinary Sciences
https://ror.org/03a1kwz48University of Tübingen
https://ror.org/0327sr118DIPFLeibniz Institute for Research and Information in Education
https://ror.org/02jhqqg57Leibniz Institute for Analytical Sciences - ISAS
https://ror.org/02jhqqg57Leibniz Institute for Analytical Sciences - ISAS
https://ror.org/02778hg05Universität Trier
https://ror.org/0259fwx54ZB MED - Information Centre for Life Sciences
https://ror.org/01zjc6908European Molecular Biology Laboratory
https://ror.org/01y9bpm73University of Göttingen
https://ror.org/01y9bpm73University of Göttingen
https://ror.org/01k97gp34TU Dortmund University
https://ror.org/01k8bwd50NFDI4Immuno
https://ror.org/00vn06n10Simula Research Laboratory
https://ror.org/00v34f693Quantitative Biology Center
https://ror.org/00ggpsq73Otto-von-Guericke University Magdeburg
https://ror.org/01t4ttr56Center for Scalable Data Analytics and Artificial Intelligence
https://ror.org/001jhv750NFDI4Culture
https://ror.org/04tsk2644Ruhr University Bochum
b0Institute of Neurosciences and Medicine (INM-1), Forschungszentrum Jülich
b1Helmholtz Centre for Environmental Research GmbH - UFZ
b2Heinrich-Heine-University Düsseldorf
b3Technische Universität Dresden
b4Biomedical Computer Vision Group, Heidelberg University, BioQuant
b5Single-cell Open Lab, German Cancer Research Center (DKFZ), Heidelberg, Germany
b6EMBL Heidelberg
b7Division of Chromatin Networks, German Cancer Research Center (DKFZ) and Bioquant, Heidelberg, Germany
b8Cologne Excellence Cluster on Cellular Stress Responses in Aging-Associated Diseases (CECAD), University of Cologne, Cologne, Germany
b9Regional Computing Centre (RRZK/ITCC), University of Cologne, Cologne, Germany
b10Helmholtz Center of Environmental Research - UFZ
b11Combinatorial NeuroImaging Core Facility, Leibniz Institute for Neurobiology, Magdeburg, Germany
b12Münster Imaging Network, Cells in Motion Interfaculty Centre, University of Münster
b13Helmholtz Imaging
b14Imaging Facility, Cellular Stress Responses in Aging-Associated Diseases (CECAD), Cologne, University of Cologne, Germany
b15Regional Computer Center (RRZK), University of Cologne, Cologne, Germany
b16Technical University of Dresden
b17Deutsches Krebsforschungszentrum
b18German BioImaging - Society for Microscopy and Image Analysis
b19Department of Computer Science, University of Freiburg
b20Academy of Sciences and Literature, Mainz, Germany
b21Johannes Gutenberg University Mainz
b22ScaDS.AI
b23University of Münster
b24ZIK Plasmatis, Leibniz Institute for Plasma Science and Technology, Greifswald, Germany
b25Molecular Biophysics, B CUBE - Center for Molecular and Cellular Bioengineering, Technical University Dresden, Germany
b26European Molecular Biology Laboratory (EMBL)
b27Technische Universität Dresden, Germany
b28Leibniz Institute for Neurobiology, Magdeburg, Germany
b29Department of Computer Science, University of Freiburg, Freiburg im Breisgau
b30Simula Research Laboratory
b31Hopp-Children’s Cancer Center Heidelberg (KiTZ), Heidelberg, Germany. Division of Pediatric Neuro-oncology, German Cancer Consortium (DKTK), German Cancer Research Center (DKFZ), Heidelberg, Germany. Department of Pediatric Oncology, Hematology, and Immunology, Heidelberg University Hospital; Heidelberg; Germany
b32Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg, Marburg University
b33Helmholtz Metadata Collaboration (HMC) Hub Health
b34Institute of Microbiology, Heinrich Heine University Düsseldorf, Germany
b35Center for Advanced Imaging, Heinrich-Heine-Universität Düsseldorf, Düsseldorf, Germany
b36General Microbiology, Technical University Dresden, Germany
b37Data-Driven Imaging in Medicine, University of Applied Sciences and Arts, Göttingen, Germany
b38EMBL
b39Center for Regenerative Therapies Dresden (CRTD)
b40German Cancer Research Center (DKFZ)
b41NFDI4BioImage
b42German BioImaging – Gesellschaft für Mikroskopie und Bildanalyse e.V., Konstanz, Germany
b43German BioImaging e.V Society for Microscopy and Image Analysis Konstanz, Germany
b44German BioImaging e.V.
b45German BioImaging—Society for Microscopy and Image Analysis e.V., Constance, Germany
b46German Cancer Research Center (DKFZ), Department Enabling Technology, Heidelberg, Germany
b47Universität Konstanz
b48Riccardo
b49Helmholtz-Zentrum für Umweltforschung UFZ, Leipzig
b50Umweltforschungszentrum Leipzig
b51Helmholtz Centre for Environmental Research (UFZ), Leipzig, Germany
b52Heinrich-Heine University of Düsseldorf, Center for Advanced Imaging, Düsseldorf, Germany
b53Heinrich-Heine-University Düsseldorf, Center for Advanced Imaging
b54Heinrich Heine Universität Düsseldorf
b55NFDI4BIOIMAGE
b56B CUBE, TU Dresden
b57University Münster
b58Muenster Imaging Network, University of Muenster, Muenster, Germany
b59Exzellenzcluster CECAD in der Universität zu Köln
b60Heinrich Heine Institut
b61Regional Computing Centre (RRZK), University of Cologne
b62INP Greifswald
b63Max-Planck-Institute for Evolutionary Biology
b64German Cancer Research Center (DKFZ), Department Enabling Technology, Heidelberg, Germany
b65German BioImaging - Gesellschaft für Mikroskopie und Bildanalyse e.V.
b66Department of Biology/Chemistry Center for Cellular Nanoanalytics, University of Osnabrück, Germany
b67University Osnabrück
b68Department of Biology/Chemistry Center for Cellular Nanoanalytics University Osnabrück, Germany
https://ror.org/050589e39European Molecular Biology Laboratory
b69University of Amsterdam
b70Nationale Forschungsdateninfrastruktur (NFDI) e.V.
b71Jan
b72University of Mainz, High Performance Computing Group, Mainz, Germany
b73Euro-BioImaging ERIC Bio-Hub
b74Albert-Ludwigs-Universität Freiburg, Germany
b75Data Science and Management & Cluster of Excellence on Plant Sciences (CEPLAS), University of Cologne, Cologne, Germany
b76Data Science and Management, Cluster of Excellence on Plant Sciences (CEPLAS), University of Cologne
b77Leibniz Institute for Neurobiology (LIN), Magdeburg, Germany
b78Rostock University Medical Center
b79German BioImaging - Society for Microscopy and Image Analysis e.V., Konstanz, Germany
b80Big Data Analytics Working Group, Forschungszentrum Jülich, Germany
b81Stefan
b82Wibke
b83Institute of Neuroscience and Medicine (INM-1), Forschungszentrum Jülich, Germany
https://ror.org/05grdyy37Amsterdam University Medical Centers
b84Micelio, Belgium
b85Micelio
b86Uni Bremen
https://ror.org/02skbsp27Leibniz Institute of Plant Genetics and Crop Plant Research
https://ror.org/01ygyzs83Leibniz Centre for Agricultural Landscape Research
b87Department of Biology/Chemistry and Center for Cellular Nanoanalytics, University Osnabrück, Germany
https://ror.org/013meh722University of Cambridge
b88University of Heidelberg
b89École Polytechnique Fédérale de Lausanne
b90Thomas
https://ror.org/04zrf7b53University of Kaiserslautern
b91Rheinland-Pfälzische Technische Universität Kaiserslautern-Landau, Germany
b92Center for Molecular Medicine Cologne and CECAD Research Center, University of Cologne, Cologne, Germany
b93Computational Systems Biology, University of Kaiserslautern-Landau, Kaiserslautern, Germany
b94Institute of Data Science, University of Greifswald
b95Medical Informatics Laboratory, University Medicine Greifswald
b96ZALF e. V.
b97Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute, Friedrich Schiller University Jena, Germany
b98Leiden University
b99Leiden Institute of Advanced Computer Science, The Netherlands
b100come2data
https://ror.org/032e6b942Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung
https://ror.org/02yrs2n53Constructor University
b101Saxon State and University Library Dresden, Dresden, Germany
b102SLUB Dresden
https://ror.org/05nqsnd28Deutsches Archäologisches Institut, Abteilung Athen
https://ror.org/04zc7p361University of Kassel
https://ror.org/04tjfqn96Leibniz Institute for the History and Culture of Eastern Europe (GWZO)
https://ror.org/041qv0h25Deutsches Archäologisches Institut, Zentrale
https://ror.org/041nas322University of Bonn
https://ror.org/0387jng26Max Planck Institute for Human Cognitive and Brain Sciences
https://ror.org/01nrxwf90University of Edinburgh
b103SaxFDM
b104Julius Kühn-Institut – Federal Research Centre for Cultivated Plants
b105Plant Sciences, Institute of Bio- und Geosciences, Forschungszentrum Jülich, Germany
b106Institute for Biological Data Science, Heinrich Heine University Düsseldorf, Germany
b107Servicecenter eSciences
b108Data Center for the Humanities (DCH)
b109Gesellschaft fuer Biologische Daten e.V. GFBio
b110The University of Manchester
b111Department of Breeding Research, Leibniz Institute of Plant Genetics and Crop Plant Research, Gatersleben, Germany
b112scalable minds GmbH
b113Biodata Mining Group, Faculty of Technology, University of Bielefeld, Germany
b114Max-Delbrück-Centrum für Molekulare Medizin in der Helmholtz-Gemeinschaft
b115BioCampus Montpellier
b116Centre for Digital Scholarship Leiden University Libraries, The Netherlands
b117Institute for Molecular and Clinical Immunology and Service Unit Multiparametric Bioimaging and Cytometry, University of Magdeburg, Germany
b118Hopp-Children’s Cancer Center Heidelberg (KiTZ), Heidelberg, Germany. Division of Pediatric Neuro-oncology, German Cancer Consortium (DKTK), German Cancer Research Center (DKFZ), Heidelberg, Germany
b119CNRS Délégation Ile-de-France Sud
b120Bundesanstalt für Materialforschung und -prüfung
b121Center for Molecular Medicine Cologne, University of Cologne
b122EKFZ TU Dresden
b123Hannes
b124Carl Zeiss Microscopy GmbH
b125Institute of Neurology (Edinger Institute), University Hospital, Goethe University, Frankfurt, Germany
b126Institute of Materials, Technologies and Mechanics, University of Magdeburg, Germany
b127The Carpentries: @carpentries
b128Max Planck Institute
b129KNIME
b130Friedrich Miescher Institute for Biomedical Research (FMI)
b131University Goettingen
b132@fmi-basel
b133BioVisionCenter, University of Zurich
https://ror.org/00f5q5839HAWK University of Applied Sciences and Arts

ok, so now we’ll setup a query to update all labels to be the english and german names.

Run this on the fuseki update interface

<<prefixes>>
delete {
  graph ?g {
  ror:0534re684 rdfs:label ?label .
    }
  }
insert {
  graph ?g {
    ror:0534re684 rdfs:label "Max-Planck-Institut für Evolutionsbiologie"@de, "Max Planck Institute for Evolutionary Biology"@en .
    }
  }
where {
  graph ?g {
    ror:0534re684 rdfs:label ?label .
    }
  }
HTTP/1.1 400 Bad Request
Server: nginx/1.22.1
Date: Wed01 Jul 2026 15:02:17 GMT
Content-Type: text/plain;charset=utf-8
Content-Length: 38
Connection: keep-alive
Vary: Origin
Fuseki-Request-Id: 971
Cache-Control: must-revalidateno-cacheno-store
Pragma: no-cache
SPARQL Update: No ‘update=’ parameter

Confirm

<<prefixes>>
select * where {
  ror:0534re684 rdfs:label ?label .
  }
label
Max Planck Institute for Evolutionary Biology
Max-Planck-Institut für Evolutionsbiologie

About

Repository for the NFDI4BIOIMAGE Knowledge Graph

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages