Method to load a trained MOFA model.
The training of MOFA is done using a Python framework, and the model output
is saved as an .hdf5 file, which has to be loaded in the R package.
# NOT RUN {# path to the hdf5 filefilepath <- system.file("extdata", "CLL_model.hdf5", package = "MOFAdata")
# load the modelMOFAobject <- loadModel(filepath)
# }