aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2020-11-02 14:47:11 +1100
committerJustin Bedo <cu@cua0.org>2020-11-02 15:05:07 +1100
commit3d685e37cf4a26daf9741425178c7d6c0848a0ca (patch)
tree9c421aa852485080042755fd0d604cba622a1a3a
parent8aaecc9093be8531c7c25e24b6b2464536458eee (diff)
draft workflow dag
-rw-r--r--slides.tex13
1 files changed, 13 insertions, 0 deletions
diff --git a/slides.tex b/slides.tex
index 3cee3a1..6b0b271 100644
--- a/slides.tex
+++ b/slides.tex
@@ -1,6 +1,7 @@
\documentclass[aspectratio=169]{beamer}
\usepackage{microtype}
+\usepackage{tikz}
\definecolor{bngreen}{HTML}{3c8e64}
%\setbeamercolor*{structure}{bg=white,fg=bngreen}
@@ -21,4 +22,16 @@
\end{frame}
}
+\begin{frame}
+ \begin{center}
+ \begin{tikzpicture}[->,>=stealth,shorten >=1pt,auto,node distance=1.5cm,thick]
+ \node (a) {align};
+ \node (s) [below of=a] {sort};
+ \node (c) [below of=s] {variant calling};
+
+ \path (a) edge node {} (s);
+ \end{tikzpicture}
+ \end{center}
+\end{frame}
+
\end{document}