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
{{ message }}
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
When you want to run metaMS_runGC against a DB but you search also unknowns and that only 1 unknown was found you obtain an error :
Error in x[, settings$timeComparison] : incorrect number of dimensions
Calls: runGC ... match.unannot.patterns -> sapply -> sapply -> lapply -> FUN -> mean
This time this is not due to a variable which is a matrix whereas it should be a list but it apparently due to a list with only 1 thing in it... So like this, we have something like :
To correct it I add something to make a list of list when you have only 1 id in each files :
#To correct issue when 1 unkn only in noannot.idx (make a list and not a list of list)
if(unique(lengths(noannot.idx)) == 1){
xset.work <- lapply(xset.work, function(x) list(x))
}
When you want to run metaMS_runGC against a DB but you search also unknowns and that only 1 unknown was found you obtain an error :
This time this is not due to a variable which is a matrix whereas it should be a list but it apparently due to a list with only 1 thing in it... So like this, we have something like :
whereas we should have something like :
With the name of file first, then the different pseudospectra.
The text was updated successfully, but these errors were encountered: