Hi,
I am reposting this issue here (I previously posted it on github).
After installation, I was running tutorial for Version 4.0.0 from: https://www.metaboanalyst.ca/resources/vignettes/Statistical_Analysis_Module.html,
rm(list = ls())
library(MetaboAnalystR)
mSet<-InitDataObjects(“conc”, “stat”, FALSE);
However, the “mSet<-InitDataObjects(“conc”, “stat”, FALSE);” gives an error: Error in InitDataObjects(“conc”, “stat”, FALSE) :
promise already under evaluation: recursive default argument reference or earlier problems?
So, I checked through “git” and found where the “InitDataObject <-” is. It is the general_data_utils.R file in the R folder. The code line within this file is:
InitDataObjects ← function(data.type, anal.type, paired=FALSE, default.dpi=default.dpi){
rpath <<- “…/…/”;
default.dpi <<- default.dpi;
Is “default.dpi=default.dpi” the reason, why I am seeing the “promise already under evaluation”?
Thank you for your time and support!