Skip to content

Commit

Permalink
slightly improving docs see #4
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed May 17, 2021
1 parent cfaa6f7 commit 1e6dcc1
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
.idea
owl/*.owl
download/
db/
db/*.db
docs/
load*-*
schemaload*-*
venv
bin/
target/
test.db
inferences/
inferences/*tsv
inferences/*owl
inferences/*ttl
*.load
__pycache__
*.old
#.*#
Expand Down
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ E.g.
SELECT * FROM my_big_table WHERE col1='...' AND col2 IN (SELECT subject FROM subclass_of_closure WHERE object='UBERON:nnnnnnn');
```

## In flux

Some parts of this repo are in-flux, see https://github.com/cmungall/semantic-sql/issues/4

One particularly confusing thing is that there are two sets of semi-redundant VIEW definitions in 2 folders:

* sql/
* ddl/

The ones in ddl are generated from the YAML, and they will eventually replace the ones in sql/


## Requirements

* [rdftab](https://github.com/ontodev/rdftab.rs)
Expand Down Expand Up @@ -77,7 +89,7 @@ The `problem` view is actually a UNION view over multiple individual QC checks i

## Relation Graphs

We use `relation-graph` to materialize inferred edges such as `fingernail part-of body`, these are loaded into an `entailed_edge` table
We use [relation-graph](https://github.com/balhoff/relation-graph) to materialize inferred edges such as `fingernail part-of body`, these are loaded into an `entailed_edge` table



Expand Down
1 change: 1 addition & 0 deletions demo/cam/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Downloaded files will go here
1 change: 1 addition & 0 deletions demo/gaf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Downloaded files will go here
1 change: 1 addition & 0 deletions tests/outputs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
generated files go here
4 changes: 4 additions & 0 deletions utils/gpi2tsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
cat $SCRIPTPATH/gpi.header.tsv
grep -v ^\! $1

0 comments on commit 1e6dcc1

Please sign in to comment.