Created
June 14, 2019 10:09
-
-
Save samuell/17631e94dfb878991ef1aac3b0cefe5e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph "DNA Base Complement Workflow" { | |
rankdir=LR; | |
graph [fontname="Arial",fontsize=13,color="#384A52",fontcolor="#384A52"]; | |
node [fontname="Arial",fontsize=11,color="#384A52",fontcolor="#384A52",fillcolor="#EFF2F5",shape=box,style=filled]; | |
edge [fontname="Arial",fontsize=9, color="#384A52",fontcolor="#384A52"]; | |
"Base Complement" [shape=box]; | |
"Make DNA" [shape=box]; | |
"Reverse" [shape=box]; | |
"Base Complement" -> "Reverse" [taillabel="compl", headlabel="in"]; | |
"Make DNA" -> "Base Complement" [taillabel="dna", headlabel="in"]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
... results in: