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
Hi,
I am running BEAM, and my data is such that there are two branch points with four resulting branches or lineages.
BEAM_res <- BEAM(cds[ordergene,], branch_point = 2, cores = 2)
I got this error:
Error in if (progenitor_method == "duplicate") { :
the condition has length > 1
Could somebody explain what this means, and how can I solve it?
Thanks!!
The text was updated successfully, but these errors were encountered:
This happens because progenitor_method is a vector by default, while the logical asks for a string. You can solve it by passing in progenitor_method as an argument to the call for BEAM. This should work:
This happens because progenitor_method is a vector by default, while the logical asks for a string. You can solve it by passing in progenitor_method as an argument to the call for BEAM. This should work:
Hi,
I am running BEAM, and my data is such that there are two branch points with four resulting branches or lineages.
BEAM_res <- BEAM(cds[ordergene,], branch_point = 2, cores = 2)
I got this error:
Error in if (progenitor_method == "duplicate") { :
the condition has length > 1
Could somebody explain what this means, and how can I solve it?
Thanks!!
The text was updated successfully, but these errors were encountered: