Skip to content

Commit

Permalink
Small tree/graph I showed once.
Browse files Browse the repository at this point in the history
  • Loading branch information
zimolzak committed Feb 22, 2021
1 parent 64bf5dd commit 93bf2cf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
*.log
*.docx
instruct-trigger-manual.txt
*.png
13 changes: 13 additions & 0 deletions advanced/instruct-graph.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
graph {

INSTRUCT -- Clinical
INSTRUCT -- Data
Data[label="Data", style=filled, color=black, fontcolor=white]
Data -- EPRP
SQL[label="SQL\ne-triggers"]
Data -- SQL
cp[label="Change\npackage"]
etc[label="etc..."]
Clinical -- cp
Clinical -- etc
}
5 changes: 4 additions & 1 deletion advanced/makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pdfs = Fobt.pdf Lung.pdf Triggers-Overview.pdf
pdfs = Fobt.pdf Lung.pdf Triggers-Overview.pdf instruct-graph.png
mod_sql = HCC_altered.sql IDA_altered.sql
manual = instruct-trigger-manual.pdf instruct-trigger-manual.docx instruct-trigger-manual.txt

Expand Down Expand Up @@ -30,6 +30,9 @@ Triggers-Overview.pdf : Triggers-Overview.md
%_altered.sql : ../unmodified/%.sql transform.py
python transform.py $< > $@

%.png: %.dot
dot -Tpng -o $@ $<

.PHONY : clean

clean :
Expand Down

0 comments on commit 93bf2cf

Please sign in to comment.