mia
mia copied to clipboard
rename calculateDPCoA, calculateNMDS, calculateRDA, calculateCCA
This PR makes the following naming modifications :
-
calculateDPCoA
-->getDPCoA
-
calculateNMDS
-->getNMDS
-
calculateRDA
-->getRDA
-
calculateCCA
-->getCCA
Thanks! Certain ordination methods that we use come from scater package. They use calculate* and run*, for instance, calculatePCA and runMDS. That is why we have to think about if we
- Keep these unchanged
- Keep calculate* and run* aliases
- Replace calculate* and run* with get* and add* like done in this PR
- Add get* and run* aliases also for scater ordination methods.
I have to think about this little bit