Skip to content

Commit

Permalink
network.py: closes #60
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeboucas committed May 8, 2018
1 parent 351a42b commit 9c4d26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py2cytoscape/cyrest/network.py
Expand Up @@ -109,7 +109,7 @@ def clone(self, network=None, verbose=False):
"""
network=check_network(self,network,verbose=verbose)
PARAMS=set_param(["network"], [network])
response=api(url=self.__url+"/add node", PARAMS=PARAMS, method="POST", verbose=verbose)
response=api(url=self.__url+"/clone", PARAMS=PARAMS, method="POST", verbose=verbose)
return response

def connect_nodes(self, network=None, nodes=None, verbose=False):
Expand Down

0 comments on commit 9c4d26c

Please sign in to comment.