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
The function music_prop_t_statistics seems to expect a matrix as input for both bulk.control.mtx and bulk.case.mtx, and works that way for most of the function. However, at one point it calls
This fails because bulk.case is a matrix, not an ExpressionSet. But you can't call the music_prop_t_statistics function successfully using an ExpressionSet for arguments.
Hi @jaclynbeck-sage,
I also ran in to this problem, and this is needed to be solved urgently. Besides, I think the correct function name should be music2_prop_t_statistics : ).
For myself, I solved this by copying music2_prop_t_statistics function to an R script file and modifying the code. Then, one can import the correct function by sourcing this R script through Source('path_to_R_script'). Hoping this could help, and hoping the problem could be solved officially. Thanks in advance @xuranw.
The function
music_prop_t_statistics
seems to expect a matrix as input for bothbulk.control.mtx
andbulk.case.mtx
, and works that way for most of the function. However, at one point it callsThis fails because bulk.case is a matrix, not an ExpressionSet. But you can't call the
music_prop_t_statistics
function successfully using an ExpressionSet for arguments.I think removing the exprs call should work? i.e.
The text was updated successfully, but these errors were encountered: