ndexbio / ndex2-client

NDEx2 Client
BSD 3-Clause "New" or "Revised" License
6 stars 6 forks source link

Question: is uuid unique to each version? #86

Closed RemyLau closed 2 years ago

RemyLau commented 2 years ago

I'm working on a package that interfaces with ndex2 for retrieving networks. I've written a few small tests using some small networks available on NDEX via uuid, but I'm not totally sure whether uuid is unique to a specific version of the network. If it is not unique, i.e. the network associated with a uuid might change over time, then I might need to rewrite some of my tests. Thanks for any help in advance!

coleslaw481 commented 2 years ago

It is not unique for each version cause it is possible to update a network and keep the same UUID: https://ndex2.readthedocs.io/en/latest/ndex2client.html#ndex2.client.Ndex2.update_cx_network

RemyLau commented 2 years ago

Thanks a lot!