You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use the example files metadata_example_multi.txt and otu_example_multi.txt to test, except "There were 50 or more warnings" everything is normal, one of the warning is :
"1: In if (!is.element(class(x), c( "matrix", "data.frame", ... :the condition has length > 1 and only the first element will be used"
I also got a result file, has anyone encountered this situation, this way Is the demo file available?
The text was updated successfully, but these errors were encountered:
I found the problem comes from the FEAST_rarefy function, is.element(class(x), c("matrix", "data.frame", "array")) will return 2 bool values but if() only needs one.
> class(x)
[1] "matrix" "array"
I don't why class() will give two types, very strange. Maybe R4.2.0 the class() function changes.
so I modify the FEAST_rarefy(), delete the line 5. I think that won't change my result
Hope authors can fix this problem, Thanks @liashenhav@kant
I use the example files metadata_example_multi.txt and otu_example_multi.txt to test, except "There were 50 or more warnings" everything is normal, one of the warning is :
"1: In if (!is.element(class(x), c( "matrix", "data.frame", ... :the condition has length > 1 and only the first element will be used"
I also got a result file, has anyone encountered this situation, this way Is the demo file available?
The text was updated successfully, but these errors were encountered: