From 4a85fbe96b61f5a9dd190fa34544cff9148e146a Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Wed, 5 Jul 2017 10:07:46 +0200
Subject: [PATCH] data from drugbank contain info about not approved drugs

---
 .../java/lcsb/mapviewer/annotation/services/ChEMBLParser.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/annotation/src/main/java/lcsb/mapviewer/annotation/services/ChEMBLParser.java b/annotation/src/main/java/lcsb/mapviewer/annotation/services/ChEMBLParser.java
index bba52b0063..1b1e09a512 100644
--- a/annotation/src/main/java/lcsb/mapviewer/annotation/services/ChEMBLParser.java
+++ b/annotation/src/main/java/lcsb/mapviewer/annotation/services/ChEMBLParser.java
@@ -48,12 +48,12 @@ public class ChEMBLParser extends DrugAnnotation implements IExternalService {
 	 * Url that access data about taregetting mechanisms for a give drug chembl
 	 * identifier.
 	 */
-	private static final String	TARGET_MECHANISM_BY_DRUG_ID_API_URL	= "https://www.ebi.ac.uk/chembl/api/data/mechanism?max_phase=4&molecule_chembl_id=";
+	private static final String	TARGET_MECHANISM_BY_DRUG_ID_API_URL	= "https://www.ebi.ac.uk/chembl/api/data/mechanism?molecule_chembl_id=";
 
 	/**
 	 * Url that access data about drugs identified by drug target identifier.
 	 */
-	private static final String	DRUG_BY_TARGET_ID_API_URL						= "https://www.ebi.ac.uk/chembl/api/data/mechanism?max_phase=4&target_chembl_id=";
+	private static final String	DRUG_BY_TARGET_ID_API_URL						= "https://www.ebi.ac.uk/chembl/api/data/mechanism?target_chembl_id=";
 
 	/**
 	 * Url that access data of drug identified by name.
-- 
GitLab