Skip to content

Instantly share code, notes, and snippets.

@samuell
Created June 14, 2019 10:04
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/bbef4892f9f2c8e0f4ec5cc931c1a1c1 to your computer and use it in GitHub Desktop.
Save samuell/bbef4892f9f2c8e0f4ec5cc931c1a1c1 to your computer and use it in GitHub Desktop.
digraph "resequencing_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"];
"bwa_aln_NA06984_1" [shape=box];
"bwa_aln_NA06984_2" [shape=box];
"bwa_aln_NA12489_1" [shape=box];
"bwa_aln_NA12489_2" [shape=box];
"download_fastq_NA06984_1" [shape=box];
"download_fastq_NA06984_2" [shape=box];
"download_fastq_NA12489_1" [shape=box];
"download_fastq_NA12489_2" [shape=box];
"download_ref" [shape=box];
"index_ref" [shape=box];
"merge_NA06984" [shape=box];
"merge_NA12489" [shape=box];
"ugzip_ref" [shape=box];
"bwa_aln_NA06984_1" -> "merge_NA06984" [taillabel="sai", headlabel="sai1"];
"bwa_aln_NA06984_2" -> "merge_NA06984" [taillabel="sai", headlabel="sai2"];
"bwa_aln_NA12489_1" -> "merge_NA12489" [taillabel="sai", headlabel="sai1"];
"bwa_aln_NA12489_2" -> "merge_NA12489" [taillabel="sai", headlabel="sai2"];
"download_fastq_NA06984_1" -> "bwa_aln_NA06984_1" [taillabel="fastq", headlabel="fastq"];
"download_fastq_NA06984_1" -> "merge_NA06984" [taillabel="fastq", headlabel="fq1"];
"download_fastq_NA06984_2" -> "bwa_aln_NA06984_2" [taillabel="fastq", headlabel="fastq"];
"download_fastq_NA06984_2" -> "merge_NA06984" [taillabel="fastq", headlabel="fq2"];
"download_fastq_NA12489_1" -> "bwa_aln_NA12489_1" [taillabel="fastq", headlabel="fastq"];
"download_fastq_NA12489_1" -> "merge_NA12489" [taillabel="fastq", headlabel="fq1"];
"download_fastq_NA12489_2" -> "bwa_aln_NA12489_2" [taillabel="fastq", headlabel="fastq"];
"download_fastq_NA12489_2" -> "merge_NA12489" [taillabel="fastq", headlabel="fq2"];
"download_ref" -> "ugzip_ref" [taillabel="outfile", headlabel="in"];
"index_ref" -> "bwa_aln_NA12489_2" [taillabel="done", headlabel="idxdone"];
"index_ref" -> "merge_NA12489" [taillabel="done", headlabel="refdone"];
"index_ref" -> "bwa_aln_NA06984_1" [taillabel="done", headlabel="idxdone"];
"index_ref" -> "bwa_aln_NA06984_2" [taillabel="done", headlabel="idxdone"];
"index_ref" -> "merge_NA06984" [taillabel="done", headlabel="refdone"];
"index_ref" -> "bwa_aln_NA12489_1" [taillabel="done", headlabel="idxdone"];
"ugzip_ref" -> "bwa_aln_NA12489_1" [taillabel="out", headlabel="ref"];
"ugzip_ref" -> "bwa_aln_NA12489_2" [taillabel="out", headlabel="ref"];
"ugzip_ref" -> "merge_NA12489" [taillabel="out", headlabel="ref"];
"ugzip_ref" -> "index_ref" [taillabel="out", headlabel="ref"];
"ugzip_ref" -> "bwa_aln_NA06984_1" [taillabel="out", headlabel="ref"];
"ugzip_ref" -> "bwa_aln_NA06984_2" [taillabel="out", headlabel="ref"];
"ugzip_ref" -> "merge_NA06984" [taillabel="out", headlabel="ref"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment