summaryrefslogtreecommitdiff
path: root/docs/CommonAncestorDiagram.mp
blob: e4b36cdad5740f5661425011f214b5a5d7583f26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[sibling distance=10em,
  every node/.style = {shape=rectangle, rounded corners,
    draw, align=center,
    top color=white, bottom color=blue!20}]]
  \node {Root}
    child { node {Mutation1} 
	  child { node {Mutation2}
        child { node {Mutation3} }
        child { node {Mutation4} }
        child { node {Mutation5} } }
      child { node {Mutation6} } };
    child { node {Mutation7}
      child { node {Mutation8}
        child { node {Mutation9} }
        child { node {Mutation10} }
        child { node {Mutation11} } }
      child { node {Mutation12} } };
\end{tikzpicture}
\end{document}