-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
create_column_filter error with base_url handling #132
Comments
Hi, Niklas ... Indeed ... a terrible bug, and I have no idea why it hasn't been found before this. There are actually two bugs ... one in the get_network_suid() call in set_current_network(), and another in the check_supported_versions() call in create_column_filter(). Actually, I see more than just these two (ugh ... sorry). I'll make the fixes, run a few regression tests, and then check them in. We don't have specific tests for the base_url parameters, so I'll await your report before closing this case. Please stand by, and I'll let you know when there is a checkin for you to try. |
Okay that's perfect, thank you very much. |
Hi, Niklas ... I have completed the changes and checked them into branch 1.10.0 in Github: https://github.com/cytoscape/py4cytoscape/tree/1.10.0 Are you able to check this branch out and try it with your system? If so, please let me know how it goes. Thanks! |
Hi thank for the fast answer, yes I am able to test it, but sadly is still get this error.
|
Actually, Niklas ... it would be very valuable to have the py4cytoscape.log file ... or even the last several hundred lines. It's in logs/py4cytoscape.log. This log gives a blow by blow of function calls, parameters and return values. It should show exactly where the base_url is getting lost. Would you mind sending that? |
Hi, I was trying to build a cystoscape graph, for a package "pyeed" (bio-informatics) we are developing, and I think I found a bug.
I am working from a Docker Container (https://github.com/PyEED/PyEED_JupyterLab) with runs both jupyter-notebook and cytoscape in a compose,yml. This means I need to adjust the base_url for all my applications, and so fr everything worked. I can create the graph export it and so on.... But when creating a
coulmn_filter
(I want to hide all edges with a identity between a certain threshold and 1).Code:
I ran into an error, the logs are the following:
For me this looks like it all starts well, and then when it is calling a command_post
network_get_attribute
it suddenly starts using127.0.0.1
instead of the base_url I gave it which ishttp://cytoscape:1234/v1
This is a bug right?
The text was updated successfully, but these errors were encountered: