Skip to content

Instantly share code, notes, and snippets.

@samuell
Created June 14, 2019 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuell/17631e94dfb878991ef1aac3b0cefe5e to your computer and use it in GitHub Desktop.
Save samuell/17631e94dfb878991ef1aac3b0cefe5e to your computer and use it in GitHub Desktop.
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"];
}
@samuell
Copy link
Author

samuell commented Jun 14, 2019

dot -Tpdf revcomplement.dot -o revcomplement.pdf

... results in:

Selection_999(217)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment