Open unikill066 opened 3 months ago
It seems we might have identified the issue here.
In utils.R, the function should be updated from:
countsplit_matrix = function(
input,
seed = 42
) {
set.seed(seed)
split = countsplit(input, epsilon=0.5)
auc = split$train
auc@x = as.numeric(auc@x)
de = split$test
out_list = list(
'run_auc' = auc,
'run_de' = de
)
return(out_list)
}
to:
countsplit_matrix = function(
input,
seed = 42
) {
set.seed(seed)
split = countsplit(input, epsilon=0.5)
auc = split[[1]]
auc@x = as.numeric(auc@x)
de = split[[2]]
out_list = list(
'run_auc' = auc,
'run_de' = de
)
return(out_list)
}
We referenced the information from here. Please let me know if this can be implemented as a fix. If so, I will fork the repository. Thanks!
Hi, thank you for bringing this to our attention. We have implemented the fix as suggested.
I am encountering an error while trying to run
Vespucci
-run_vespucci
function. The error occurs both when running the function with the basic inputs and when additional parameters are provided.Error Message:
Code:
Despite following the instructions, I keep receiving the Error in
auc@x
indicating that no applicable method for @ is being applied to an object of class "NULL". Any guidance on what might be causing this issue would be appreciated.