Changes for page 3 Try it yourself!

Last modified by maaike on 2022/07/06 10:08

From version 4.1
edited by oschmid
on 2022/07/05 13:20
Change comment: Renamed from xwiki:Collabs.fens-2022-poster-examples.Try it yourself!.WebHome
To version 6.1
edited by oschmid
on 2022/07/05 15:00
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -Try it yourself!
1 +3 Try it yourself!
Content
... ... @@ -6,6 +6,8 @@
6 6  1. Find datasets that contain NIfTI files
7 7  1. Find the software that can be used to open .smr file formats?
8 8  
9 +[[https:~~/~~/lab.ch.ebrains.eu/hub/user-redirect/lab/tree/shared/Practical%20Guide%20to%20Using%20the%20EBRAINS%20Knowledge%20Graph%20in%20(your)%20Research%20-%20User%20Examples/query.ipynb>>https://lab.ch.ebrains.eu/hub/user-redirect/lab/tree/shared/Practical%20Guide%20to%20Using%20the%20EBRAINS%20Knowledge%20Graph%20in%20(your)%20Research%20-%20User%20Examples/query.ipynb]]
10 +
9 9  === Example 1 - How many datasets used human subjects? ===
10 10  
11 11  ==== **Search UI** ====
... ... @@ -291,4 +291,70 @@
291 291  }
292 292  {{/code}}
293 293  
296 +=== (% id="cke_bm_3314S" style="display:none" %) (%%)Example 4 - Find the software that can be used to open .smr file formats? ===
297 +
298 +==== **Search UI** ====
299 +
300 +
301 +[[https:~~/~~/search.kg.ebrains.eu/?category=Software&inputFormats[0]=application%2Fvnd.spike2.sonpy.son>>https://search.kg.ebrains.eu/?category=Software&inputFormats[0]=application%2Fvnd.spike2.sonpy.son]]
302 +
303 +
304 +==== **Query Builder** ====
305 +
306 +{{code language="json" layout="LINENUMBERS"}}
307 +{
308 + "@context": {
309 + "@vocab": "https://core.kg.ebrains.eu/vocab/query/",
310 + "query": "https://schema.hbp.eu/myQuery/",
311 + "propertyName": {
312 + "@id": "propertyName",
313 + "@type": "@id"
314 + },
315 + "path": {
316 + "@id": "path",
317 + "@type": "@id"
318 + }
319 + },
320 + "meta": {
321 + "type": "https://openminds.ebrains.eu/core/SoftwareVersion",
322 + "responseVocab": "https://schema.hbp.eu/myQuery/"
323 + },
324 + "structure": [
325 + {
326 + "propertyName": "query:id",
327 + "path": "@id"
328 + },
329 + {
330 + "propertyName": "query:shortName",
331 + "path": "https://openminds.ebrains.eu/vocab/shortName"
332 + },
333 + {
334 + "propertyName": "query:versionIdentifier",
335 + "path": "https://openminds.ebrains.eu/vocab/versionIdentifier"
336 + },
337 + {
338 + "propertyName": "query:inputFormat",
339 + "path": "https://openminds.ebrains.eu/vocab/inputFormat",
340 + "required": true,
341 + "structure": [
342 + {
343 + "propertyName": "query:name",
344 + "path": "https://openminds.ebrains.eu/vocab/name"
345 + },
346 + {
347 + "propertyName": "query:fileExtension",
348 + "path": "https://openminds.ebrains.eu/vocab/fileExtension",
349 + "required": true,
350 + "filter": {
351 + "op": "CONTAINS",
352 + "value": ".smr"
353 + }
354 + }
355 + ]
356 + }
357 + ]
358 +}
359 +{{/code}}
360 +
361 +
294 294