Skip to content

Commit

Permalink
Generate EPS file of the directed graph.
Browse files Browse the repository at this point in the history
  • Loading branch information
zimolzak committed Aug 5, 2024
1 parent e7b886c commit 5e9a3d4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
*.png
advanced/*.docx
advanced/*.pdf
*.ps
*.eps

advanced/discovery-manual-icd9.md
advanced/discovery-manual.md
Expand Down
2 changes: 1 addition & 1 deletion advanced/consort-like.dot
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
digraph {

splines=ortho
node [style=filled, fillcolor="#EAEEED", fontname="Trebuchet MS", color="#979797", shape=rectangle]
node [style=filled, fillcolor="#EAEEED", fontname="Helvetica", color="#979797", shape=rectangle]
edge [color="#979797"]


Expand Down
5 changes: 4 additions & 1 deletion advanced/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ instruct = instruct-trigger-manual.pdf instruct-trigger-manual.docx
code_pdfs = Fobt_sql.pdf Lung_sql.pdf
mod_sql = HCC_altered.sql IDA_altered.sql
misc = Triggers-Overview.pdf instruct-graph.png orcids-credits.pdf
misc += consort-like.png
misc += consort-like.png consort-like.eps

.PHONY : all
all : $(discovery) $(instruct) $(code_pdfs) $(mod_sql) $(misc)
Expand Down Expand Up @@ -47,6 +47,9 @@ instruct-trigger-manual.docx: instruct-trigger-manual.tex
%.png: %.dot
dot -Tpng -o $@ $<

%.eps: %.dot
dot -Teps -o $@ $<

## Clean

.PHONY : clean clean-instruct clean-discovery
Expand Down

0 comments on commit 5e9a3d4

Please sign in to comment.