Uses the given identifier to return its latest version
        Parameters
        
        
        
            | Name | Type | Description | Default | Example Values | 
        
        
            
            | id | String List | A list of rsid of the desired SNPs | - | rs11704416,rs9364554 | 
            
            | tissues | String List | A list of tissues | - (All) | prostate,breast | 
            
            | padj | Float | Retrive the transcript level modifications with a corrected p-value less than the input | 0.005 | 0.001 | 
            
            | models | String List | Retrive the transcript level modifications found with the required models | - (All) | additive,dominant,recessive | 
            
            | types | String List | Retrive only motifs binding with the reference and alternative binding score modification | - (All) | match,change,addition,deletion | 
            
            | abss | float | Retrive only motifs altered with a reference and alternative binding score difference less greater than the input | 0.0 | 0.1 | 
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
       Returns
        
        
        
            | Name | Description | 
        
        
            
                | Binding score PPI Network | binding score Protein-Protein interaction Network in GraphML (XML) format. The edges between genes (protein protein interaction) are represented as bi-directed parallel edges. | 
        
       
        Python Example
       
import requests
url = "https://bcglab.cibio.unitn.it/polympact/searchSNP/bindingPPINetwork/rsid/%s/tissues/prostate,breast/models/additive,dominant"
rsids = ["rs11704416", "rs9364554"]
rsids = ",".join(rsids)
req = requests.get(url % rsids)
if not req.ok:
	req.raise_for_status()
	exit()
print(req.text)