You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds completed version of Omero imaging data registration script:
* General metadata is stored in openBIS (imaging experiments and samples)
* Data and additional metadata key-value-pairs are stored in OMERO
* Add readme for Omero etl script
* Added some comments to code
* Minor code cleanup
Co-authored-by: Sven F <[email protected]>
Co-authored-by: luiskuhn <[email protected]>
Co-authored-by: luiskuhn <[email protected]>
Co-authored-by: Tobias Koch <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# Changelog
2
2
3
+
## 1.7.0 2021-03-19
4
+
5
+
* Provides fully tested functionality to register generic imaging data, with OMERO server support (v5.4.10). [Link to PR](https://github.com/qbicsoftware/etl-scripts/pull/78)
6
+
* Uses an omero-importer-cli (with Bio-formats) for image file registration into an OMERO server instance
7
+
* Uses an initial version of the openBIS-OMERO metadata model
For each tissue sample multiple images (the data files) can be created, so multiple Q_BMI_GENERIC_IMAGING_RUN samples are created and attached to that tissue sample
292
+
...Q_BIOLOGICAL_SAMPLE -> one Q_BMI_GENERIC_IMAGING_RUN per data file
293
+
294
+
**Expected data structure**
295
+
In every use case, the data structure needs to contain a top folder around the respective data in order to accommodate metadata files.
296
+
297
+
The sample code found in the top folder is of type `Q_BIOLOGICAL_SAMPLE` (tissue imaging).
298
+
299
+
**Valid file types**:
300
+
Valid files in the folder are any imaging files that can be handled by the OMERO server
301
+
302
+
**Incoming structure overview:**
303
+
```
304
+
QABCD002A8
305
+
|-- QABCD002A8
306
+
| |-- Est-B1a.lif
307
+
| |-- Image_1.czi
308
+
| |-- Image_2.czi
309
+
| |-- Image7246.tif
310
+
| |-- metadata_3.tsv
311
+
| |-- rubisco_avg.mrc
312
+
| `-- tomogram_x.mrc
313
+
|-- QABCD002A8.sha256sum
314
+
`-- source_dropbox.txt
315
+
```
316
+
317
+
The metadata file, ending in `.tsv` has tab-separated columns:
tomogram_x.mrc NCIT_C18113 cell FEI Dr. Horrible 01.03.2021
321
+
rubisco_avg.mrc NCIT_C18113 cell FEI Max Mustermann 01.04.2021
322
+
Image7246.tif NCIT_C18216 leaf Zeiss Max Mustermann 23.02.2021
323
+
Est-B1a.lif NCIT_C17753 root Zeiss Max Mustermann 01.02.2021
324
+
Image_1.czi NCIT_C17753 leaf Zeiss Max Mustermann 11.02.2021
325
+
Image_2.czi NCIT_C17753 leaf Zeiss Max Mustermann 01.02.2021
326
+
```
327
+
328
+
column name | description
329
+
--------------|----------------
330
+
`IMAGE_FILE_NAME`| one of the file names found in the incoming folder per line
331
+
`IMAGING_MODALITY`| Ontology Identifier for the imaging modality, currently from the [NCI Thesaurus](https://ncit.nci.nih.gov/ncitbrowser/pages/home.jsf?version=21.02d). **Examples:** NCIT_C18113 (Cryo-Electron Microscopy), NCIT_C18216 (Transmission Electron Microscopy), NCIT_C17753 (Confocal Microscopy)
332
+
`IMAGED_TISSUE` | the imaged tissue
333
+
`INSTRUMENT_MANUFACTURER` | the imaging instrument manufacturer
334
+
`INSTRUMENT_USER` | the person who measured the data file using the imaging instrument
335
+
`IMAGING_DATE` | the date of the measurement in dd.mm.yyyy format (days and months with leading zeroes)
0 commit comments