From 80aeaab8e9f1da151e7e29b131d5f323e324c4c2 Mon Sep 17 00:00:00 2001 From: Paul Gaudin Date: Mon, 2 Nov 2020 16:40:30 -0800 Subject: [PATCH] Updated readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8e1127b..961c5d5 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ btGet(gene_client, "1017") # or: btGet("gene", "1017") # or: -btGet("gene", "c("9606", "10030")") +btGet("gene", c("9606", "10030")) ``` ### Accessing the Taxonomy API @@ -61,9 +61,9 @@ biothings_clients ### Accessing endpoints of the APIs with the query method: ```r -btQuery("chem", "drugbank.name:celecoxib") +btQuery(chem_client, "drugbank.name:celecoxib") -btQuery("variant", c("rs58991260", "rs2500")) +btQuery(variant_client, c("rs58991260", "rs2500")) ``` ## Existing Issues