Skip to content
Snippets Groups Projects
Commit 0fad2586 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

fix on drugbank annotator

parent 2b796056
No related branches found
No related tags found
1 merge request!5Frontend refactor
......@@ -67,32 +67,32 @@ public class DrugbankHTMLParser extends DrugAnnotation implements IExternalServi
/**
* Url used for finding drug by drug name.
*/
static final String URLB = "http://www.drugbank.ca/search?searcher=drugs&utf8=%E2%9C%93&button=&filter=false&query=";
static final String URLB = "https://www.drugbank.ca/search?searcher=drugs&utf8=%E2%9C%93&button=&filter=false&query=";
/**
* Url used for retrieving general information about drug.
*/
static final String URLDRUG = "http://www.drugbank.ca/drugs/";
static final String URLDRUG = "https://www.drugbank.ca/drugs/";
/**
* Homepage of drugbank.
*/
static final String URL = "http://www.drugbank.ca/";
static final String URL = "https://www.drugbank.ca/";
/**
* Url used for accesing information about target synonyms.
*/
static final String URLPEP = "http://www.drugbank.ca/biodb/polypeptides/";
static final String URLPEP = "https://www.drugbank.ca/biodb/polypeptides/";
/**
* Url that allows to search for dugs using target hgnc name.
*/
static final String URL_TARGETS = "http://www.drugbank.ca/search?utf8=%E2%9C%93&searcher=targets&query=";
static final String URL_TARGETS = "https://www.drugbank.ca/search?utf8=%E2%9C%93&searcher=targets&query=";
/**
* Url that helps finding drug name for given target identifier.
*/
static final String URL_TARGET_DETAIL = "http://www.drugbank.ca/biodb/bio_entities/";
static final String URL_TARGET_DETAIL = "https://www.drugbank.ca/biodb/bio_entities/";
/**
* Pattern used to get information about {@link Drug#bloodBrainBarrier blood
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment