Replies: 1 comment 1 reply
-
Hi Asiye, @asiyeka Best, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello. I noticed when I save my mae file using saveHDF5MultiAssayExperimen and a prefix such as "test_", if I use the same prefix while using loadHDF5MultiAssayExperiment, it gives the error below:
Error in HDF5Array::stop_if_bad_dir(dir, prefix) :
Directory "h5_mae" does not seem to contain an HDF5-based
SummarizedExperiment object previously saved with
saveHDF5SummarizedExperiment(..., prefix="test__"). Make sure you're
using the same 'prefix' that was used when the object was saved.
basically it's adding a "_" to my prefix before it searches for my file. I solved it by using loadHDF5MultiAssayExperiment(dir = "h5_mae", prefix= "test"). But shouldn't we use the same prefix value in both functions?
Beta Was this translation helpful? Give feedback.
All reactions