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
There is one small mistake in your source code of simulate_counts.R.
In function SimulateVeloCycle, the 455th line should be return(list(counts_u = result$counts_u, counts_s=result$counts_s, kinet_params=final_kinetics, state_mat=result$state_mat, cell_time=result$cell_time, velocity=result$velocity, dynamics=dynamics, backbone = evf_res[[2]]$pop, chosen_hge = chosen_hge)), you mistook counts_s=result$counts_s as counts_s=result$counts_u.
The same mistake is also in the 577th line.
Thanks for you package, this helps me a lot! Please check it.
The text was updated successfully, but these errors were encountered:
There is one small mistake in your source code of
simulate_counts.R
.SimulateVeloCycle
, the 455th line should bereturn(list(counts_u = result$counts_u, counts_s=result$counts_s, kinet_params=final_kinetics, state_mat=result$state_mat, cell_time=result$cell_time, velocity=result$velocity, dynamics=dynamics, backbone = evf_res[[2]]$pop, chosen_hge = chosen_hge))
, you mistookcounts_s=result$counts_s
ascounts_s=result$counts_u
.Thanks for you package, this helps me a lot! Please check it.
The text was updated successfully, but these errors were encountered: