User:YULdigitalpreservation/SoftwareCitation

Prep for Software Citation/Modeling discussion edit

Open Questions edit

1. How might we best express the relationship (stated on SHELX homepage) that OLEX2, and WinGX can call SHELX?

Example Items edit

SPARQL Queries edit

Crystallography software and scientific literature related to them edit

The following query uses these:

Everything with a CORDIS ID edit

The following query uses these:

  • Properties: CORDIS Project ID (P3400)     
    SELECT ?item ?itemLabel ?value ?valueLabel
    {
    	?item wdt:P3400 ?value .
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en"  }    
    }
    

Software developed within projects with a CORDIS ID edit

The following query uses these:

  • Properties: CORDIS Project ID (P3400)     , developer (P178)     
    SELECT ?item ?itemLabel ?value ?software ?softwareLabel
    {
    	?item wdt:P3400 ?value .
        ?software wdt:P178 ?item.
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }    
    }
    

NSF career award edit

The following query uses these:

  • Properties: award received (P166)     , image (P18)     
    SELECT ?item ?label ?_image WHERE {
      ?item wdt:P166 wd:Q23055141.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    OPTIONAL { ?item wdt:P18 ?_image. }
    }
    

ERC Advanced grant edit

The following query uses these:

  • Properties: award received (P166)     , image (P18)     
    SELECT ?item ?label ?_image WHERE {
      ?item wdt:P166 wd:Q20588568.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    OPTIONAL { ?item wdt:P18 ?_image. }
    }
    LIMIT 100
    

All items with sponsor as ERC edit

The following query uses these:

  • Properties: sponsor (P859)     , image (P18)     
    SELECT ?item ?label ?_image WHERE {
      ?item wdt:P859 wd:Q1377836.
      SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" . 
        ?item rdfs:label ?label
      }
      
    OPTIONAL { ?item wdt:P18 ?_image. }
    }
    LIMIT 100
    

Software used in publications for which ERC is the sponsor edit

The following query uses these:

Biological Databases by sponsor edit

The following query uses these:

  • Properties: instance of (P31)     , sponsor (P859)     
    SELECT ?item ?itemLabel ?sponsor ?sponsorLabel 
    WHERE {
      ?item wdt:P31 wd:Q4117139.
      ?item wdt:P859 ?sponsor.
     SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      }
    

Databases by sponsor edit

The following query uses these:

  • Properties: instance of (P31)     , subclass of (P279)     , sponsor (P859)     
    SELECT DISTINCT ?item ?itemLabel ?sponsor ?sponsorLabel WHERE {
      ?item wdt:P31/wdt:P279* wd:Q8513.
      ?item wdt:P859 ?sponsor.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

zenodo id edit

The following query uses these:

  • Properties: Zenodo ID (P4901)     
    SELECT ?item ?itemLabel ?value 
    {
    	?item wdt:P4901 ?value .
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }   
    }