Quality of life feature to target a specific element when inspecting an object:
CLI:
$ modos show data/ex sample/sample1
sample/sample1:
'@type': Sample
cell_type: astrocyte
description: Dummy sample for tests
name: Sample 1
sex: Male
source_material: brain tissue
$ modos show --zarr data/ex assay
assay
└── assay1
API:
m = MODO('data/ex')
m.show_contents('sample/sample1')
m.list_arrays('data')
Limitations
Does not work with the --files option, as I was not sure whether it makes sense; e.g. should this list the index files (.crai, .csi, ...), should we list files directly linked to the element, or also recursively (sample1 -> data1 -> file).
Quality of life feature to target a specific element when inspecting an object:
CLI:
API:
Limitations
Does not work with the
--files
option, as I was not sure whether it makes sense; e.g. should this list the index files (.crai, .csi, ...), should we list files directly linked to the element, or also recursively (sample1 -> data1 -> file).