Open Artur-man opened 3 months ago
Hey @Artur-man,
I am getting an error while adding the MultiImageWrapper object to the VitessceConfig object. Did you also encountered the same issue while running your code?
vc <- VitessceConfig$new(schema_version = "1.0.15", name = "My config") vc$add_dataset("T604")$add_object( MultiImageWrapper$new( image_wrappers = list( OmeTiffWrapper$new(name="Test", img_path="data/cytassist_image.tiff") ) ) )
Error in obj$convert_and_save(self$dataset$uid, length(private$objs), : unused argument (base_dir = self$base_dir)
Regards, Ashish Jain
Ah ok, I think I have corrected this in my fork as well. You have to pass the self$base_dir
from MultiImageWrapper
's convert_and_save
to OmeTiffWrapper
's convert_and_save
, like in here: https://github.com/vitessce/vitessceR/commit/a6dd34fcf83cf1f120e8b9206681b5c7665a3740.
Hey there,
I would like to create this issue, also discussed in https://imagesc.zulipchat.com. It seems
OmeTiffWrapper
objects behave well withAnnDataWrapper
with no problem, but are there any plans for implementing anOmeZarrWrapper
functioning similar toOmeTiffWrapper
?Sharing an example below: