-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v4' of github.com:openMetadataInitiative/openMINDS_core…
… into v4
- Loading branch information
Showing
12 changed files
with
193 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
name: openMINDS_upstream | ||
|
||
on: | ||
push: | ||
branches: | ||
- v4 | ||
|
||
on: | ||
- push | ||
- workflow_dispatch | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger central repository | ||
run: | | ||
curl -XPOST -u "${{secrets.PAT_USERNAME}}:${{secrets.PAT_TOKEN}}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/HumanBrainProject/openMINDS/actions/workflows/build.yml/dispatches --data '{"ref": "main"}' | ||
curl -XPOST -u "${{secrets.PAT_USERNAME}}:${{secrets.PAT_TOKEN}}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/openMetadataInitiative/openMINDS/actions/workflows/build.yml/dispatches --data '{"ref": "pipeline", "inputs": {"branch": "${{github.ref_name}}", "repository": "${{ github.repository }}"}' |
17 changes: 17 additions & 0 deletions
17
instances/data/contentTypes/application_vnd.ilastik.object-features+csv.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/application_vnd.ilastik.object-features+csv", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik object-features CSV file is a table with a line for every detected object and a column for every feature (e.g.: size, position) measured on that object.", | ||
"displayLabel": "ilastik object features CSV", | ||
"fileExtension": [ | ||
".csv" | ||
], | ||
"name": "application/vnd.ilastik.object-features+csv", | ||
"relatedMediaType": "https://www.iana.org/assignments/media-types/text/csv", | ||
"synonym": [ | ||
"ilastik object features CSV" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
instances/data/contentTypes/application_vnd.ilastik.object-features+hdf5.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/application_vnd.ilastik.object-features+hdf5", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik object features HDF5 file has two data entries: table and images. The images entry contains one image cutout for each object and one mask for each object, marking the pixels occupied by that object. The table entry is saved as a numpy structured array and holds the selected feature values for each object.", | ||
"displayLabel": "ilastik object features HDF5", | ||
"fileExtension": [ | ||
".hdf5", | ||
".h5" | ||
], | ||
"name": "application/vnd.ilastik.object-features+hdf5", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik object features HDF5" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
instances/data/contentTypes/application_vnd.ilastik.project+hdf5.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/application_vnd.ilastik.project+hdf5", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik project file is an hdf5 file with an .ilp extension. It holds the current state of the ilastik application such as what workflow is being used, which images are open and what features to compute on those images.", | ||
"displayLabel": "ilastik project file", | ||
"fileExtension": [ | ||
".ilp" | ||
], | ||
"name": "application/vnd.ilastik.project+hdf5", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik project", | ||
"ilastik project file", | ||
"ILP" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
instances/data/contentTypes/image_vnd.ilastik.pixelclassification+hdf5.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_vnd.ilastik.pixelclassification+hdf5", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik pixel classification HDF5 file is a multi-channel, f32 image where each channel's value is between 0.0 and 1.0 and represents the likelihood of a pixel belonging to a particular class.", | ||
"displayLabel": "ilastik pixel classification image (HDF5)", | ||
"fileExtension": [ | ||
".hdf5", | ||
".h5" | ||
], | ||
"name": "image/vnd.ilastik.pixelclassification+hdf5", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik pixel classification image (HDF5)" | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
instances/data/contentTypes/image_vnd.ilastik.pixelclassification+n5.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_vnd.ilastik.pixelclassification+n5", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik pixel classification N5 file is a multi-channel, f32 image where each channel's value is between 0.0 and 1.0 and represents the likelihood of a pixel belonging to a particular class.", | ||
"displayLabel": "ilastik pixel classification image (N5)", | ||
"fileExtension": [ | ||
".n5" | ||
], | ||
"name": "image/vnd.ilastik.pixelclassification+n5", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik pixel classification image (N5)" | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
...s/data/contentTypes/image_vnd.ilastik.pixelclassification+neuroglancer.precomputed.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_vnd.ilastik.pixelclassification+neuroglancer.precomputed", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik pixel classification neuroglancer precomputed file is a multi-channel, f32 image where each channel's value is between 0.0 and 1.0 and represents the likelihood of a pixel belonging to a particular class.", | ||
"displayLabel": "ilastik pixel classification image (neuroglancer precomputed)", | ||
"fileExtension": null, | ||
"name": "image/vnd.ilastik.pixelclassification+neuroglancer.precomputed", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik pixel classification image (neuroglancer precomputed)" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
instances/data/contentTypes/image_vnd.ilastik.segmentation+dzi.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_vnd.ilastik.segmentation+dzi", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik segmentation DZI file is a uint8 RGB image where each pixel is either red (255,0,0) if that pixel belongs to an object, or black (0,0,0) if that pixel does not belong to an object.", | ||
"displayLabel": "ilastik segmentation image (DZI)", | ||
"fileExtension": [ | ||
".dzi", | ||
".xml" | ||
], | ||
"name": "image/vnd.ilastik.segmentation+dzi", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik segmentation image (DZI)" | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
instances/data/contentTypes/image_vnd.ilastik.segmentation+dzip.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_vnd.ilastik.segmentation+dzip", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik segmentation DZIP file is a uint8 RGB image where each pixel is either red (255,0,0) if that pixel belongs to an object, or black (0,0,0) if that pixel does not belong to an object.", | ||
"displayLabel": "ilastik segmentation image (DZIP)", | ||
"fileExtension": [ | ||
".dzip" | ||
], | ||
"name": "image/vnd.ilastik.segmentation+dzip", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik segmentation image (DZIP)" | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
instances/data/contentTypes/image_vnd.ilastik.segmentation+n5.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_vnd.ilastik.segmentation+n5", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik segmentation N5 file is a uint8 RGB image where each pixel is either red (255,0,0) if that pixel belongs to an object, or black (0,0,0) if that pixel does not belong to an object.", | ||
"displayLabel": "ilastik segmentation image (N5)", | ||
"fileExtension": [ | ||
".n5" | ||
], | ||
"name": "image/vnd.ilastik.segmentation+n5", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik segmentation image (N5)" | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
instances/data/contentTypes/image_vnd.ilastik.segmentation+neuroglancer.precomputed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_vnd.ilastik.segmentation+neuroglancer.precomputed", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": "The ilastik segmentation neuroglancer computed file is a uint8 RGB image where each pixel is either red (255,0,0) if that pixel belongs to an object, or black (0,0,0) if that pixel does not belong to an object.", | ||
"displayLabel": "ilastik segmentation image (neuroglancer precomputed)", | ||
"fileExtension": null, | ||
"name": "image/vnd.ilastik.segmentation+neuroglancer.precomputed", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"ilastik segmentation image (neuroglancer precomputed)" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://openminds.ebrains.eu/vocab/" | ||
}, | ||
"@id": "https://openminds.ebrains.eu/instances/contentTypes/image_x-hdf", | ||
"@type": "https://openminds.ebrains.eu/core/ContentType", | ||
"description": null, | ||
"displayLabel": "HDF5 image", | ||
"fileExtension": [ | ||
".hdf5", | ||
".h5" | ||
], | ||
"name": "image/x-hdf", | ||
"relatedMediaType": null, | ||
"synonym": [ | ||
"HDF5 image" | ||
] | ||
} |