github.com/informationsea/shellflow@v0.1.3/examples/doc-example2/simple.dot (about)

     1  digraph shelltask {
     2    node [shape=box];
     3    task1 [label="curl -o hs37d5.fa.gz -L ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/technical/reference/phase2_reference_assembly_sequence/hs37d5.fa.gz"];
     4    task2 [label="gzip -dc hs37d5.fa.gz > hs37d5.fa"];
     5    task3 [label="bwa index hs37d5.fa # hs37d5.fa.bwt"];
     6    task1 -> task2 [label="hs37d5.fa.gz"];
     7    task2 -> task3 [label="hs37d5.fa"];
     8    output1 [label="hs37d5.fa.bwt", color=blue];
     9    task3 -> output1;
    10  }
    11