-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extended support for MultiAssayExperiment #133
Comments
I'm just a MOFA user but I can see that the However thinking about the following:
|
Hi @RiboRings and @antagomir |
Great! Indeed, @RiboRings could you have a look at this? |
@rargelaguet and @antagomir, thank you for your inputs. I will open a pull request to share and discuss this feature. |
Perhaps first describe how you plan to implement it, so commenting is possible prior to implementation efforts? |
I opened a pull request related to this issue (#144). The code was nearly ready and it didn't require much implementation effort. I'd be glad to hear your comments and adjust the code accordingly. |
The PR is open - I am curiously looking fwd how this might proceed. |
Hi!
The current method for MultiAssayExperiments requires some manual work which the end user may not be familiar with. As in this example, after transforming assays you also need to:
assay(mae[[1]], "counts") <- NULL
)create_mofa_from_MultiAssayExperiment
model_opts$num_factors <- 5
)prepare_mofa
As an alternative to performing those 4 steps separately, I propose to include them in a wrapper function, whose result can be directly passed to
run_mofa
.I have already prepared a working function for this purpose, and if you see value in this, I could open a pull request to MOFA2.
Thank you and cheers!
The text was updated successfully, but these errors were encountered: