We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
85
Hi,
Just trying to run through the tutorial using my own data but have run into this issue when predicting terminal states.
`terminal_states = [ "PNEC_2", "Multiciliated" ] vk = cr.kernels.VelocityKernel(adata_target).compute_transition_matrix() estimator = cr.estimators.GPCCA(vk)
estimator.compute_macrostates(n_states=7,cluster_key="predicted_celltype") estimator.set_terminal_states(terminal_states) estimator.compute_fate_probabilities() estimator.plot_fate_probabilities(same_plot=False)`
Any suggestions for how to resolve this?
The text was updated successfully, but these errors were encountered:
Hey,
This issue is due to cellrank step, I have three ways you could have try and see which one will work out.
estimator = cr.estimators.GPCCA(vk)
method=brandts
Let me know if above suggestions will help!
Best, Ken
Sorry, something went wrong.
Also please check the cellrank repo (issues) to see solution, for example: theislab/cellrank#1022
No branches or pull requests
Hi,
Just trying to run through the tutorial using my own data but have run into this issue when predicting terminal states.
`terminal_states = [
"PNEC_2",
"Multiciliated"
]
vk = cr.kernels.VelocityKernel(adata_target).compute_transition_matrix()
estimator = cr.estimators.GPCCA(vk)
estimator.compute_macrostates(n_states=7,cluster_key="predicted_celltype")
estimator.set_terminal_states(terminal_states)
estimator.compute_fate_probabilities()
estimator.plot_fate_probabilities(same_plot=False)`
Any suggestions for how to resolve this?
The text was updated successfully, but these errors were encountered: