From b09721a738736c76b9cd3c1c1c8cb26efe7f9b14 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Wed, 10 Jul 2024 12:10:26 +0300 Subject: Unfill paragraphs. Don't break paragraphs. It makes future edits easier to diff. Signed-off-by: Munyoki Kilyungi --- README.md | 9 ++------- conn.scm | 7 +++---- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 214f165..b5ed863 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,7 @@ That reads the `etc/sample.json` file included in this repository and converts i ## Set up connection parameters -Describe the database connection parameters in a file *conn.scm* file as -shown below. Take care to replace the placeholders within angle brackets -with the appropriate values. +Describe the database connection parameters in a file *conn.scm* file as shown below. Take care to replace the placeholders within angle brackets with the appropriate values. ``` scheme ((sql-username . "") @@ -105,10 +103,7 @@ which does the same thing, but has the potential to be confusing due to the two ## Validate and load dump -Then, validate the dumped RDF using `rapper` and load it into -virtuoso. This will load the dumped RDF into the -`http://genenetwork.org` graph, and will delete all pre-existing data -in that graph (FIXME) +Then, validate the dumped RDF using `rapper` and load it into virtuoso. This will load the dumped RDF into the `http://genenetwork.org` graph, and will delete all pre-existing data in that graph (FIXME) ``` shell $ guix shell -m manifest.scm -- rapper --input turtle --count ~/data/dump/dump.ttl diff --git a/conn.scm b/conn.scm index aca2835..483fe9c 100644 --- a/conn.scm +++ b/conn.scm @@ -1,12 +1,11 @@ ((sql-username . "webqtlout") - (sql-password . "*") + (sql-password . "webqtlout") (sql-database . "db_webqtl") (sql-host . "localhost") (sql-port . 3306) - (virtuoso-port . 8891) + (virtuoso-port . 1111) (virtuoso-username . "dba") (virtuoso-password . "*") (sparql-scheme . http) (sparql-host . "localhost") - (sparql-port . 8892) - (generif-data-file . "/export3/local/home/bonfacem/dump-genenetwork-database/generifs_basic.gz")) + (sparql-port . 9082)) -- cgit v1.2.3