-
Notifications
You must be signed in to change notification settings - Fork 6
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
get_network_ids_for_user not returning expected network_ids #78
Comments
get_network_ids_for_user
not returning expected network_ids
Oh that is bad. thank you for catching this. Under the hood Upon success, the result you get back from Here is example code that puts all the network ids into the list res = my_ndex.get_user_network_summaries('ariutta', limit=1000000)
my_uuids = []
for entry in res:
my_uuids.append(entry['externalId']) NOTE: |
Fixed in |
… switched NiceCXNetwork.upload_to() and NiceCXNetwork.update_to() to named args and added client parameter #80 and #81, Fixed documentation in NiceCXNetwork.update_to() to denote return value #82, Added Ndex2.get_user_by_id(), Added Ndex2.get_id_for_user(), Added Ndex2.get_networksets_for_user_id() #61
Version with |
ndex2 version |
The method
get_network_ids_for_user
appears to be limited to 1000network_ids
.Test Case for
v3.3.1
:Query the test server http://test.ndexbio.org to see how many networks I own:
I'm getting back
1000
, but the number should be much larger (over 30k).The text was updated successfully, but these errors were encountered: