From 4dcca76364c4b08232b902a595e230542d373a92 Mon Sep 17 00:00:00 2001 From: Alexis Mergez <amergez@miat-pret-5.toulouse.inrae.fr> Date: Wed, 20 Mar 2024 15:45:52 +0100 Subject: [PATCH 1/6] Updated chrStatsAggregation Updated to work with GFAstats from PanGeTools --- Snakefile | 19 ++++++++++------- scripts/chrStatsAggregation.py | 39 +++++++++++++++++++++++----------- 2 files changed, 38 insertions(+), 20 deletions(-) diff --git a/Snakefile b/Snakefile index 4c95d73..04656c3 100644 --- a/Snakefile +++ b/Snakefile @@ -30,7 +30,7 @@ def which_analysis(): expand("output/panacus.reports/{chromosome}.histgrowth.html", chromosome=CHRLIST), # panacus histgrowth expand("output/asm.syri.figs/pan1c."+config['name']+".{haplotype}.syri.png", haplotype=SAMPLES_NOREF), # syri for haplotypes expand("output/chrGraphs.figs/{chromosome}.1Dviz.png", chromosome=CHRLIST), # visualizations from odgi on chromosome graphs - "output/pan1c.pggb."+config['name']+".chrGraph.stats.tsv" # chromosomes graph statistics + "output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv" # chromosomes graph statistics ] # Optionals analysis steps @@ -252,18 +252,19 @@ rule graph_squeeze: """ rule graph_stats: - # Using odgi to produce stats on every chromosome scale graph + # Using GFAstats to produce stats on every chromosome graphs input: graph="data/chrGraphs/{chromosome}.gfa" output: - stats="output/chrGraphs.stats/{chromosome}.stats.tsv" + genstats="output/chrGraphs.stats/{chromosome}.general.stats.tsv", + pathstats="output/chrGraphs.stats/{chromosome}.path.stats.tsv" threads: 4 params: apppath=config['app.path'] shell: """ - apptainer run --app odgi {params.apppath}/PanGeTools.sif stats \ - -S -t {threads} -P -i {input.graph} > {output.stats} + apptainer run --app gfastats {params.apppath}/PanGeTools.sif \ + -g {input.graph} -P -o $(dirname {output.genstats}) """ rule graph_figs: @@ -292,16 +293,18 @@ rule graph_figs: rule aggregate_graphs_stats: # Reading and merging all stats files from chromosome graphs into a .tsv. input: - expand("output/chrGraphs.stats/{chromosome}.stats.tsv", chromosome=CHRLIST) + genstats=expand("output/chrGraphs.stats/{chromosome}.general.stats.tsv", chromosome=CHRLIST) output: - "output/pan1c.pggb."+config['name']+".chrGraph.stats.tsv" + genstats="output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv", + pathstats="output/pan1c.pggb."+config['name']+".chrGraph.path.stats.tsv" params: apppath=config['app.path'], panname=config['name'] shell: """ apptainer run {params.apppath}/pan1c-env.sif python scripts/chrStatsAggregation.py \ - --input $(dirname {input[0]}) --output {output} --panname {params.panname} + --input $(dirname {input[0]}) --output $(dirname {output}) \ + --panname $(basename {output.pathstats} .chrGraph.path.stats.tsv) """ rule gfaTagR: diff --git a/scripts/chrStatsAggregation.py b/scripts/chrStatsAggregation.py index e3dbc14..2e5a8bd 100644 --- a/scripts/chrStatsAggregation.py +++ b/scripts/chrStatsAggregation.py @@ -24,7 +24,7 @@ arg_parser.add_argument( "-o", dest = "output", required = True, - help = "Output file" + help = "Output directory" ) arg_parser.add_argument( "--panname", @@ -36,23 +36,38 @@ arg_parser.add_argument( args = arg_parser.parse_args() ## Main script -lines = [] +# Getting the list of stats files +fileList = [k for k in os.listdir(args.inputDir) if k[-3:] == "tsv"] + +stats = { + "general": [], + "path": [] +} # Iterating over stats files -for file in [k for k in os.listdir(args.inputDir) if k[-3:] == "tsv"]: +for file in fileList: # Getting filename (i.e. chromosome) filename, extension = os.path.splitext(os.path.splitext(os.path.basename(file))[0]) - # Reading second line of the file and adding to line list + statType = filename.split('.')[-1] # Getting general or path stats + + # Reading lines of the file with open(os.path.join(args.inputDir, file), 'r') as handle: - _ = handle.readlines() - header = "pangenome.name\tchrom.id\t"+_[0][:-1] - line = _[1][:-1] - lines.append(f"{args.panname}\t{filename}\t{line}") + filelines = [line[:-1] for line in handle.readlines()] + + # Trunc headers if already in line list + if len(stats[statType]) != 0: + filelines = filelines[1:] + + # Redirecting to the correct list + stats[statType] += filelines -# Writting to the output -with open(args.output, 'w') as handle: - handle.write(header+'\n') - handle.write('\n'.join(lines)) +# Writting outputs +with open(os.path.join(args.output, f"{args.panname}.general.stats.tsv"), 'w') as handle: + for line in stats["general"]: + handle.write(line+'\n') +with open(os.path.join(args.output, f"{args.panname}.path.stats.tsv"), 'w') as handle: + for line in stats["path"]: + handle.write(line+'\n') \ No newline at end of file -- GitLab From 871f0d4b5e98ccee3c112665dd30111baa590bea Mon Sep 17 00:00:00 2001 From: Alexis Mergez <amergez@miat-pret-5.toulouse.inrae.fr> Date: Fri, 22 Mar 2024 10:20:24 +0100 Subject: [PATCH 2/6] Update Snakefile --- Snakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Snakefile b/Snakefile index 04656c3..d1fc20f 100644 --- a/Snakefile +++ b/Snakefile @@ -326,7 +326,7 @@ rule gfaTagR: rule pggb_log_compression: # Compresses the logs of pggb into a tarball. (1 file to load in following steps) input: - flag="output/pan1c.pggb."+config['name']+".chrGraph.stats.tsv" + flag="output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv" output: tar="logs/pan1c.pggb."+config['name']+".logs.tar.gz", shell: @@ -339,7 +339,7 @@ rule pggb_log_compression: rule pggb_input_stats: # Produces statistics on pggb input sequences input: - flag="output/pan1c.pggb."+config['name']+".chrGraph.stats.tsv" + flag="output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv" output: "data/chrInputs/pan1c.pggb."+config['name']+".chrInput.stats.tsv" params: @@ -356,7 +356,7 @@ rule core_statistics: input: tar="logs/pan1c.pggb."+config['name']+".logs.tar.gz", chrInputStats="data/chrInputs/pan1c.pggb."+config['name']+".chrInput.stats.tsv", - chrGraphStats="output/pan1c.pggb."+config['name']+".chrGraph.stats.tsv" + chrGraphStats="output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv" output: tsv="output/pan1c.pggb."+config['name']+".core.stats.tsv", dir=directory("output/pggb.usage.figs") -- GitLab From 98329cee3964b8b92cd4c40e747c96f09a4e84b1 Mon Sep 17 00:00:00 2001 From: Alexis Mergez <alexis.mergez@inrae.fr> Date: Mon, 25 Mar 2024 14:00:38 +0100 Subject: [PATCH 3/6] Make asm SyRI optionnal --- Snakefile | 11 +++++++---- config.yaml | 3 ++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Snakefile b/Snakefile index d1fc20f..0d7a0e7 100644 --- a/Snakefile +++ b/Snakefile @@ -27,8 +27,7 @@ def which_analysis(): # Creating a list with default analysis steps (to prevent the function from returning an empty list) analysis_inputs = [ "output/pan1c.pggb."+config['name']+".core.stats.tsv", # core stats - expand("output/panacus.reports/{chromosome}.histgrowth.html", chromosome=CHRLIST), # panacus histgrowth - expand("output/asm.syri.figs/pan1c."+config['name']+".{haplotype}.syri.png", haplotype=SAMPLES_NOREF), # syri for haplotypes + expand("output/panacus.reports/{chromosome}.histgrowth.html", chromosome=CHRLIST), # panacus histgrowth expand("output/chrGraphs.figs/{chromosome}.1Dviz.png", chromosome=CHRLIST), # visualizations from odgi on chromosome graphs "output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv" # chromosomes graph statistics ] @@ -38,7 +37,10 @@ def which_analysis(): analysis_inputs.append("output/pav.matrices") if config["get_allASM_SyRI"] == "True": analysis_inputs.append("output/asm.syri.figs/pan1c."+config['name']+".allAsm.syri.png") - + if config["get_ASMs_SyRI"] == "True": + analysis_inputs.append( + expand("output/asm.syri.figs/pan1c."+config['name']+".{haplotype}.syri.png", haplotype=SAMPLES_NOREF), # syri for haplotypes + ) return analysis_inputs rule all: @@ -263,8 +265,9 @@ rule graph_stats: apppath=config['app.path'] shell: """ + mkdir $(dirname {output.genstats}) apptainer run --app gfastats {params.apppath}/PanGeTools.sif \ - -g {input.graph} -P -o $(dirname {output.genstats}) + -g {input.graph} -P -o $(dirname {output.genstats})/{wildcards.chromosome} """ rule graph_figs: diff --git a/config.yaml b/config.yaml index 41b8b05..6fa21ff 100644 --- a/config.yaml +++ b/config.yaml @@ -8,5 +8,6 @@ odgi.pcov.params: '-x 500 -O' # get_PAV is very long the more haplotypes there are (all vs all comparison) get_PAV: 'False' # get_allASM_SyRI controls if the SyRI figure with all haplotypes diplayed should be created (longer with #haplotypes) -get_allASM_SyRI: 'True' +get_allASM_SyRI: 'False' +get_ASMs_SyRI: 'True' -- GitLab From 8b1ca53c7586c8f4e1d5be0e2916d6645e9f5eb3 Mon Sep 17 00:00:00 2001 From: Alexis Mergez <amergez@miat-pret-5.toulouse.inrae.fr> Date: Wed, 27 Mar 2024 10:08:30 +0100 Subject: [PATCH 4/6] Update Snakefile --- Snakefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Snakefile b/Snakefile index 0d7a0e7..8e3475f 100644 --- a/Snakefile +++ b/Snakefile @@ -26,7 +26,7 @@ with gzip.open("data/haplotypes/"+config['reference'], "r") as handle: def which_analysis(): # Creating a list with default analysis steps (to prevent the function from returning an empty list) analysis_inputs = [ - "output/pan1c.pggb."+config['name']+".core.stats.tsv", # core stats + #"output/pan1c.pggb."+config['name']+".core.stats.tsv", # core stats expand("output/panacus.reports/{chromosome}.histgrowth.html", chromosome=CHRLIST), # panacus histgrowth expand("output/chrGraphs.figs/{chromosome}.1Dviz.png", chromosome=CHRLIST), # visualizations from odgi on chromosome graphs "output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv" # chromosomes graph statistics @@ -265,7 +265,6 @@ rule graph_stats: apppath=config['app.path'] shell: """ - mkdir $(dirname {output.genstats}) apptainer run --app gfastats {params.apppath}/PanGeTools.sif \ -g {input.graph} -P -o $(dirname {output.genstats})/{wildcards.chromosome} """ @@ -306,8 +305,8 @@ rule aggregate_graphs_stats: shell: """ apptainer run {params.apppath}/pan1c-env.sif python scripts/chrStatsAggregation.py \ - --input $(dirname {input[0]}) --output $(dirname {output}) \ - --panname $(basename {output.pathstats} .chrGraph.path.stats.tsv) + --input $(dirname {input[0]}) --output $(dirname {output.genstats}) \ + --panname $(basename {output.pathstats} .path.stats.tsv) """ rule gfaTagR: -- GitLab From 54bfb1b1df92443f272f877b41f04cd8c79b3025 Mon Sep 17 00:00:00 2001 From: Alexis Mergez <amergez@miat-pret-5.toulouse.inrae.fr> Date: Thu, 28 Mar 2024 15:54:33 +0100 Subject: [PATCH 5/6] Update Snakefile --- Snakefile | 85 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 54 insertions(+), 31 deletions(-) diff --git a/Snakefile b/Snakefile index 8e3475f..6a3b764 100644 --- a/Snakefile +++ b/Snakefile @@ -1,28 +1,38 @@ configfile: "config.yaml" +## Modules import os import numpy as np import gzip import re -# Getting the list of haplotypes (SAMPLES) +""" + +Main variables used in the workflow + +""" +# Retrieving the list of haplotypes (SAMPLES) in data/haplotypes SAMPLES = np.unique([ os.path.basename(f).split('.fa')[0] for f in os.listdir("data/haplotypes/") if re.search(r".fa", f) ]) + +# Retrieving the list of haplotypes excluding the reference SAMPLES_NOREF = [ sample for sample in SAMPLES if sample != os.path.basename(config['reference']).split('.fa')[0] ] + +# Storing the number of haplotypes nHAP = len(SAMPLES) -# Getting the list of chromosomes +# Retrieving the list of chromosomes from the fasta index of the reference with gzip.open("data/haplotypes/"+config['reference'], "r") as handle: CHRLIST = [line.decode().split("#")[-1].split('\n')[0] for line in handle.readlines() if line.decode()[0] == ">"] -# Configuring steps to be done +# Adjusting the requested outputs according to the config file def which_analysis(): # Creating a list with default analysis steps (to prevent the function from returning an empty list) analysis_inputs = [ @@ -30,25 +40,36 @@ def which_analysis(): expand("output/panacus.reports/{chromosome}.histgrowth.html", chromosome=CHRLIST), # panacus histgrowth expand("output/chrGraphs.figs/{chromosome}.1Dviz.png", chromosome=CHRLIST), # visualizations from odgi on chromosome graphs "output/pan1c.pggb."+config['name']+".chrGraph.general.stats.tsv" # chromosomes graph statistics - ] + ] # Optionals analysis steps - if config["get_PAV"] == "True": + if config["get_PAV"] == "True": # Adding PAV matrix creation analysis_inputs.append("output/pav.matrices") - if config["get_allASM_SyRI"] == "True": + if config["get_allASM_SyRI"] == "True": # Creating the figure for all assemblies analysis_inputs.append("output/asm.syri.figs/pan1c."+config['name']+".allAsm.syri.png") - if config["get_ASMs_SyRI"] == "True": + if config["get_ASMs_SyRI"] == "True": # Creating SyRI for each figures analysis_inputs.append( expand("output/asm.syri.figs/pan1c."+config['name']+".{haplotype}.syri.png", haplotype=SAMPLES_NOREF), # syri for haplotypes ) return analysis_inputs +""" + +Rules + +""" +# Main target rule rule all: input: "output/pan1c.pggb."+config['name']+".gfa", # Final graph (main output) "output/pan1c.pggb."+config['name']+".gfa.metadata", # Metadata for the final (also in top of gfa files as # line) which_analysis() +""" + +Tool rules + +""" rule samtools_index: # Samtools faidx to index compressed fasta input: @@ -64,10 +85,10 @@ rule samtools_index: "faidx {input.fa}" """ -Pre-processing section -Preparing pggb inputs -""" +Pre-processing section : preparing pggb inputs + +""" rule ragtag_scaffolding: # Scaffold input haplotype against the reference to infer chromosome scale sequences input: @@ -91,6 +112,25 @@ rule ragtag_scaffolding: -o {output} """ +rule clustering: + # Read ragtagged fastas and split chromosome sequences into according bins + input: + expand('data/hap.ragtagged/{haplotype}.ragtagged.fa.gz', haplotype=SAMPLES) + output: + expand('data/chrInputs/{chromosome}.fa.gz', chromosome=CHRLIST) + threads: workflow.cores + params: + apppath=config["app.path"] + shell: + """ + mkdir -p $(dirname {output[0]}) + apptainer run {params.apppath}/pan1c-env.sif python scripts/inputClustering.py \ + --fasta {input} --output $(dirname {output[0]}) + for file in $(dirname {output[0]})/*.fa; do + apptainer run --app bgzip {params.apppath}/PanGeTools.sif -@ {threads} $file + done + """ + rule create_allAsm_syri_fig: # Create a SyRI figure containing all input assemblies input: @@ -140,28 +180,10 @@ rule create_sglAsm_syri_fig: """ """ -Core section -""" -rule clustering: - # Read ragtagged fastas and split chromosome sequences into according bins - input: - expand('data/hap.ragtagged/{haplotype}.ragtagged.fa.gz', haplotype=SAMPLES) - output: - expand('data/chrInputs/{chromosome}.fa.gz', chromosome=CHRLIST) - threads: workflow.cores - params: - apppath=config["app.path"] - shell: - """ - mkdir -p $(dirname {output[0]}) - apptainer run {params.apppath}/pan1c-env.sif python scripts/inputClustering.py \ - --fasta {input} --output $(dirname {output[0]}) - for file in $(dirname {output[0]})/*.fa; do - apptainer run --app bgzip {params.apppath}/PanGeTools.sif -@ {threads} $file - done - """ +Core section : Running PGGB +""" rule create_pggb_input_syri_fig: input: fasta='data/chrInputs/{chromosome}.fa.gz' @@ -372,12 +394,13 @@ rule core_statistics: """ """ + Post-processing section : The graph for each chromosome are made as well as some basic statistics. In this section, more stats are produced but more specifics ones requiring dedicated tools (Panacus, PAVs for Panache ...). It also contains rules to use the graph itself. -""" +""" rule get_pav: # Create PAV matrix readable by panache for a given chromosome scale graph input: -- GitLab From fa5ed377231ff20d14a6768148f5896bdf32c8ef Mon Sep 17 00:00:00 2001 From: Alexis Mergez <amergez@miat-pret-5.toulouse.inrae.fr> Date: Fri, 29 Mar 2024 14:36:01 +0100 Subject: [PATCH 6/6] Updated documentation --- README.md | 18 +- config.yaml | 17 +- example/config_CICD.yaml | 3 +- example/workflow.svg | 1891 +++++++++++++++++++++++++++++++------- 4 files changed, 1573 insertions(+), 356 deletions(-) diff --git a/README.md b/README.md index 2577545..2617103 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Pan1c (Pangenome at chromosome level) workflow Pan1c : a snakemake workflow for creating pangenomes at chromosomic scale. -Tools used within the workflow : -- PanGeTools : https://forgemia.inra.fr/alexis.mergez/pangetools -- PanGraTools : https://forgemia.inra.fr/alexis.mergez/pangratools -- Pan1c-Apps : https://forgemia.inra.fr/alexis.mergez/pan1capps +The workflow use a set of apptainer images : +- PanGeTools (Odgi, VG, ...): https://forgemia.inra.fr/alexis.mergez/pangetools +- PanGraTools (PGGB): https://forgemia.inra.fr/alexis.mergez/pangratools +- Pan1c-Apps (Python, Snakemake): https://forgemia.inra.fr/alexis.mergez/pan1capps # File architecture ## Before running the workflow @@ -52,13 +52,13 @@ Pan1c-06AT-v3 │ ├── figures │ │ ├── chr<id>.1Dviz.png │ │ └── chr<id>.pcov.png -│ ├── pan1c.pggb.06AT-v3.chrGraph.stats.tsv +│ ├── pan1c.pggb.06AT-v3.chrGraph.general.stats.tsv +│ ├── pan1c.pggb.06AT-v3.chrGraph.path.stats.tsv │ ├── pan1c.pggb.06AT-v3.gfa │ ├── pan1c.pggb.06AT-v3.workflow.stats.tsv │ ├── panacus.reports │ │ └── chr<id>.histgrowth.html -│ ├── pggb.usage.figs -│ └── stats +│ └── chrGraphs.stats │ └── chr<id>.stats.tsv ├── Pan1c-06AT-v3.log ├── README.md @@ -70,7 +70,7 @@ Pan1c-06AT-v3 ``` # Example DAG (Arabidopsis Thaliana example) -This DAG shows the worflow for a pangenome of `Arabidospis Thaliana` using the `TAIR10.1` reference. +This DAG shows the worflow for a pangenome of `Saccharomyces cerevisiae` using the `R64` reference.  # Prepare your data @@ -101,6 +101,6 @@ The workflow generates several key files : - Aggregated graph including every chromosome scale graphs (`output/pan1c.pggb.<panname>.gfa`) - Chromosome scale graphs (`data/chrGraphs/chr<id>.gfa`) - Panacus html reports for each chromosome graph (`output/panacus.reports/chr<id>.histgrowth.html`) -- Statistics on input sequences, graphs and resources used by the workflow (`output/pan1c.pggb.<panname>.workflow.stats.tsv`) +- Statistics on input sequences, graphs and resources used by the workflow - PAV matrices (optional) for each chromosome graph (`output/pav.matrices/chr<id>.pav.matrix.tsv`) diff --git a/config.yaml b/config.yaml index 6fa21ff..edb0d8d 100644 --- a/config.yaml +++ b/config.yaml @@ -1,13 +1,20 @@ +## Main parameters +# Pangenome name name: '02H' +# Reference fasta (BGziped) reference: 'CHM13.hap1.fa.gz' +# Directory of apptainer images (downloaded with getApps.sh) app.path: '/home/amergez/work/apptainer' +# Optional parameters for PGGB pggb.params: '-X --skip-viz' +# Odgi 1D and path coverage viz parameters odgi.1Dviz.params: '-x 500 -b' odgi.pcov.params: '-x 500 -O' -## Control over optional parts of the workflow -# get_PAV is very long the more haplotypes there are (all vs all comparison) + +## Optional parts of the workflow +# Computes Presence Absence Variant matrices for Panache (not recommended; very long) get_PAV: 'False' -# get_allASM_SyRI controls if the SyRI figure with all haplotypes diplayed should be created (longer with #haplotypes) -get_allASM_SyRI: 'False' -get_ASMs_SyRI: 'True' +# Computes SyRI figures for haplotypes +get_allASM_SyRI: 'False' # All vs all +get_ASMs_SyRI: 'True' # Haplotype vs Reference diff --git a/example/config_CICD.yaml b/example/config_CICD.yaml index 8752f50..2d6a577 100644 --- a/example/config_CICD.yaml +++ b/example/config_CICD.yaml @@ -8,4 +8,5 @@ odgi.pcov.params: '-x 500 -O' # get_PAV is very long the more haplotypes there are (all vs all comparison) get_PAV: 'False' # get_allASM_SyRI controls if the SyRI figure with all haplotypes diplayed should be created (longer with #haplotypes) -get_allASM_SyRI: 'True' +get_allASM_SyRI: 'False' +get_ASMs_SyRI: 'True' diff --git a/example/workflow.svg b/example/workflow.svg index f7ebd6a..9f8a848 100644 --- a/example/workflow.svg +++ b/example/workflow.svg @@ -4,535 +4,1744 @@ <!-- Generated by graphviz version 2.40.1 (0) --> <!-- Title: snakemake_dag Pages: 1 --> -<svg width="1460pt" height="764pt" - viewBox="0.00 0.00 1459.69 764.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> -<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 760)"> +<svg width="3516pt" height="692pt" + viewBox="0.00 0.00 3516.35 692.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 688)"> <title>snakemake_dag</title> -<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-760 1455.6904,-760 1455.6904,4 -4,4"/> +<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-688 3512.3531,-688 3512.3531,4 -4,4"/> <!-- 0 --> <g id="node1" class="node"> <title>0</title> -<path fill="none" stroke="#56d8b9" stroke-width="2" d="M625.1904,-36C625.1904,-36 595.1904,-36 595.1904,-36 589.1904,-36 583.1904,-30 583.1904,-24 583.1904,-24 583.1904,-12 583.1904,-12 583.1904,-6 589.1904,0 595.1904,0 595.1904,0 625.1904,0 625.1904,0 631.1904,0 637.1904,-6 637.1904,-12 637.1904,-12 637.1904,-24 637.1904,-24 637.1904,-30 631.1904,-36 625.1904,-36"/> -<text text-anchor="middle" x="610.1904" y="-15.5" font-family="sans" font-size="10.00" fill="#000000">all</text> +<path fill="none" stroke="#97d856" stroke-width="2" d="M1943.0842,-36C1943.0842,-36 1913.0842,-36 1913.0842,-36 1907.0842,-36 1901.0842,-30 1901.0842,-24 1901.0842,-24 1901.0842,-12 1901.0842,-12 1901.0842,-6 1907.0842,0 1913.0842,0 1913.0842,0 1943.0842,0 1943.0842,0 1949.0842,0 1955.0842,-6 1955.0842,-12 1955.0842,-12 1955.0842,-24 1955.0842,-24 1955.0842,-30 1949.0842,-36 1943.0842,-36"/> +<text text-anchor="middle" x="1928.0842" y="-15.5" font-family="sans" font-size="10.00" fill="#000000">all</text> </g> <!-- 1 --> <g id="node2" class="node"> <title>1</title> -<path fill="none" stroke="#d8a456" stroke-width="2" d="M514.1904,-252C514.1904,-252 448.1904,-252 448.1904,-252 442.1904,-252 436.1904,-246 436.1904,-240 436.1904,-240 436.1904,-228 436.1904,-228 436.1904,-222 442.1904,-216 448.1904,-216 448.1904,-216 514.1904,-216 514.1904,-216 520.1904,-216 526.1904,-222 526.1904,-228 526.1904,-228 526.1904,-240 526.1904,-240 526.1904,-246 520.1904,-252 514.1904,-252"/> -<text text-anchor="middle" x="481.1904" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">graph_squeeze</text> +<path fill="none" stroke="#568ad8" stroke-width="2" d="M1980.0842,-180C1980.0842,-180 1914.0842,-180 1914.0842,-180 1908.0842,-180 1902.0842,-174 1902.0842,-168 1902.0842,-168 1902.0842,-156 1902.0842,-156 1902.0842,-150 1908.0842,-144 1914.0842,-144 1914.0842,-144 1980.0842,-144 1980.0842,-144 1986.0842,-144 1992.0842,-150 1992.0842,-156 1992.0842,-156 1992.0842,-168 1992.0842,-168 1992.0842,-174 1986.0842,-180 1980.0842,-180"/> +<text text-anchor="middle" x="1947.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">graph_squeeze</text> </g> <!-- 1->0 --> <g id="edge1" class="edge"> <title>1->0</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M482.8589,-215.9733C486.5972,-184.0921 498.0916,-116.8957 531.1904,-72 542.2117,-57.0505 558.6732,-44.8596 573.7214,-35.8689"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="575.8785,-38.6691 582.8471,-30.6885 572.4227,-32.5815 575.8785,-38.6691"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1955.9617,-143.7977C1963.7102,-125.4215 1972.6272,-96.3537 1965.0842,-72 1962.0397,-62.1704 1956.5201,-52.5387 1950.6571,-44.1946"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1953.3156,-41.9061 1944.5123,-36.011 1947.7179,-46.1092 1953.3156,-41.9061"/> +</g> +<!-- 40 --> +<g id="node41" class="node"> +<title>40</title> +<path fill="none" stroke="#b6d856" stroke-width="2" d="M1944.0842,-108C1944.0842,-108 1912.0842,-108 1912.0842,-108 1906.0842,-108 1900.0842,-102 1900.0842,-96 1900.0842,-96 1900.0842,-84 1900.0842,-84 1900.0842,-78 1906.0842,-72 1912.0842,-72 1912.0842,-72 1944.0842,-72 1944.0842,-72 1950.0842,-72 1956.0842,-78 1956.0842,-84 1956.0842,-84 1956.0842,-96 1956.0842,-96 1956.0842,-102 1950.0842,-108 1944.0842,-108"/> +<text text-anchor="middle" x="1928.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">gfaTagR</text> +</g> +<!-- 1->40 --> +<g id="edge111" class="edge"> +<title>1->40</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1942.2897,-143.8314C1940.2353,-136.0463 1937.7881,-126.7729 1935.5086,-118.1347"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1938.879,-117.1892 1932.9432,-108.4133 1932.1107,-118.9753 1938.879,-117.1892"/> </g> <!-- 2 --> <g id="node3" class="node"> <title>2</title> -<path fill="none" stroke="#56d86b" stroke-width="2" d="M727.6904,-396C727.6904,-396 638.6904,-396 638.6904,-396 632.6904,-396 626.6904,-390 626.6904,-384 626.6904,-384 626.6904,-372 626.6904,-372 626.6904,-366 632.6904,-360 638.6904,-360 638.6904,-360 727.6904,-360 727.6904,-360 733.6904,-360 739.6904,-366 739.6904,-372 739.6904,-372 739.6904,-384 739.6904,-384 739.6904,-390 733.6904,-396 727.6904,-396"/> -<text text-anchor="middle" x="683.1904" y="-375.5" font-family="sans" font-size="10.00" fill="#000000">generate_graph_list</text> +<path fill="none" stroke="#56d89a" stroke-width="2" d="M1798.5842,-324C1798.5842,-324 1709.5842,-324 1709.5842,-324 1703.5842,-324 1697.5842,-318 1697.5842,-312 1697.5842,-312 1697.5842,-300 1697.5842,-300 1697.5842,-294 1703.5842,-288 1709.5842,-288 1709.5842,-288 1798.5842,-288 1798.5842,-288 1804.5842,-288 1810.5842,-294 1810.5842,-300 1810.5842,-300 1810.5842,-312 1810.5842,-312 1810.5842,-318 1804.5842,-324 1798.5842,-324"/> +<text text-anchor="middle" x="1754.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">generate_graph_list</text> </g> <!-- 2->1 --> -<g id="edge6" class="edge"> +<g id="edge40" class="edge"> <title>2->1</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M644.0426,-359.7935C624.7805,-350.1644 601.5922,-337.5438 582.1904,-324 554.4781,-304.655 526.0082,-278.6214 506.3883,-259.5307"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="508.6488,-256.8448 499.0654,-252.3272 503.7399,-261.8351 508.6488,-256.8448"/> -</g> -<!-- 26 --> -<g id="node27" class="node"> -<title>26</title> -<path fill="none" stroke="#56d892" stroke-width="2" d="M653.1904,-324C653.1904,-324 603.1904,-324 603.1904,-324 597.1904,-324 591.1904,-318 591.1904,-312 591.1904,-312 591.1904,-300 591.1904,-300 591.1904,-294 597.1904,-288 603.1904,-288 603.1904,-288 653.1904,-288 653.1904,-288 659.1904,-288 665.1904,-294 665.1904,-300 665.1904,-300 665.1904,-312 665.1904,-312 665.1904,-318 659.1904,-324 653.1904,-324"/> -<text text-anchor="middle" x="628.1904" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> -</g> -<!-- 2->26 --> -<g id="edge48" class="edge"> -<title>2->26</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M669.3115,-359.8314C662.9768,-351.5386 655.352,-341.557 648.3978,-332.4533"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="651.1079,-330.2353 642.2561,-324.4133 645.5451,-334.4847 651.1079,-330.2353"/> -</g> -<!-- 27 --> -<g id="node28" class="node"> -<title>27</title> -<path fill="none" stroke="#567bd8" stroke-width="2" d="M771.6904,-180C771.6904,-180 728.6904,-180 728.6904,-180 722.6904,-180 716.6904,-174 716.6904,-168 716.6904,-168 716.6904,-156 716.6904,-156 716.6904,-150 722.6904,-144 728.6904,-144 728.6904,-144 771.6904,-144 771.6904,-144 777.6904,-144 783.6904,-150 783.6904,-156 783.6904,-156 783.6904,-168 783.6904,-168 783.6904,-174 777.6904,-180 771.6904,-180"/> -<text text-anchor="middle" x="750.1904" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> -</g> -<!-- 2->27 --> -<g id="edge49" class="edge"> -<title>2->27</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M688.7875,-359.9555C700.4879,-322.235 727.603,-234.8188 741.5548,-189.8399"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="744.9422,-190.7331 744.562,-180.1451 738.2565,-188.6592 744.9422,-190.7331"/> -</g> -<!-- 28 --> -<g id="node29" class="node"> -<title>28</title> -<path fill="none" stroke="#56a9d8" stroke-width="2" d="M810.1904,-108C810.1904,-108 778.1904,-108 778.1904,-108 772.1904,-108 766.1904,-102 766.1904,-96 766.1904,-96 766.1904,-84 766.1904,-84 766.1904,-78 772.1904,-72 778.1904,-72 778.1904,-72 810.1904,-72 810.1904,-72 816.1904,-72 822.1904,-78 822.1904,-84 822.1904,-84 822.1904,-96 822.1904,-96 822.1904,-102 816.1904,-108 810.1904,-108"/> -<text text-anchor="middle" x="794.1904" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">get_pav</text> -</g> -<!-- 2->28 --> -<g id="edge50" class="edge"> -<title>2->28</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M697.4143,-359.9967C722.6307,-326.77 774.2089,-252.5564 792.1904,-180 797.1952,-159.805 797.5357,-136.2758 796.7095,-118.3412"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="800.1957,-118.006 796.0952,-108.2369 793.2086,-118.4308 800.1957,-118.006"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1779.1669,-287.8594C1793.532,-277.4295 1811.8707,-264.0455 1828.0842,-252 1857.8438,-229.8907 1891.5234,-204.3716 1915.4378,-186.1663"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1917.6333,-188.8937 1923.4669,-180.0495 1913.3913,-183.3255 1917.6333,-188.8937"/> </g> <!-- 3 --> <g id="node4" class="node"> <title>3</title> -<path fill="none" stroke="#b6d856" stroke-width="2" d="M139.6904,-468C139.6904,-468 50.6904,-468 50.6904,-468 44.6904,-468 38.6904,-462 38.6904,-456 38.6904,-456 38.6904,-444 38.6904,-444 38.6904,-438 44.6904,-432 50.6904,-432 50.6904,-432 139.6904,-432 139.6904,-432 145.6904,-432 151.6904,-438 151.6904,-444 151.6904,-444 151.6904,-456 151.6904,-456 151.6904,-462 145.6904,-468 139.6904,-468"/> -<text text-anchor="middle" x="95.1904" y="-453" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> -<text text-anchor="middle" x="95.1904" y="-442" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr01</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M2969.5842,-396C2969.5842,-396 2880.5842,-396 2880.5842,-396 2874.5842,-396 2868.5842,-390 2868.5842,-384 2868.5842,-384 2868.5842,-372 2868.5842,-372 2868.5842,-366 2874.5842,-360 2880.5842,-360 2880.5842,-360 2969.5842,-360 2969.5842,-360 2975.5842,-360 2981.5842,-366 2981.5842,-372 2981.5842,-372 2981.5842,-384 2981.5842,-384 2981.5842,-390 2975.5842,-396 2969.5842,-396"/> +<text text-anchor="middle" x="2925.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="2925.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr01</text> </g> <!-- 3->2 --> -<g id="edge7" class="edge"> +<g id="edge41" class="edge"> <title>3->2</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M151.8372,-443.0637C260.9419,-429.7039 499.74,-400.4633 616.3919,-386.1794"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="617.1128,-389.6174 626.6132,-384.9278 616.2619,-382.6693 617.1128,-389.6174"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2868.4985,-370.4086C2838.929,-366.7111 2802.1121,-362.5281 2769.0842,-360 2351.522,-328.0375 2239.0458,-387.0104 1820.7274,-323.8623"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1821.2018,-320.3943 1810.7887,-322.3478 1820.1473,-327.3144 1821.2018,-320.3943"/> +</g> +<!-- 44 --> +<g id="node45" class="node"> +<title>44</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M2541.0842,-324C2541.0842,-324 2491.0842,-324 2491.0842,-324 2485.0842,-324 2479.0842,-318 2479.0842,-312 2479.0842,-312 2479.0842,-300 2479.0842,-300 2479.0842,-294 2485.0842,-288 2491.0842,-288 2491.0842,-288 2541.0842,-288 2541.0842,-288 2547.0842,-288 2553.0842,-294 2553.0842,-300 2553.0842,-300 2553.0842,-312 2553.0842,-312 2553.0842,-318 2547.0842,-324 2541.0842,-324"/> +<text text-anchor="middle" x="2516.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 3->44 --> +<g id="edge132" class="edge"> +<title>3->44</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2868.5789,-369.4267C2803.6358,-359.3842 2693.9227,-341.84 2600.0842,-324 2588.065,-321.715 2575.1235,-319.0462 2563.085,-316.4741"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2563.7383,-313.0346 2553.2251,-314.3469 2562.262,-319.8772 2563.7383,-313.0346"/> +</g> +<!-- 61 --> +<g id="node62" class="node"> +<title>61</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M2993.0842,-252C2993.0842,-252 2931.0842,-252 2931.0842,-252 2925.0842,-252 2919.0842,-246 2919.0842,-240 2919.0842,-240 2919.0842,-228 2919.0842,-228 2919.0842,-222 2925.0842,-216 2931.0842,-216 2931.0842,-216 2993.0842,-216 2993.0842,-216 2999.0842,-216 3005.0842,-222 3005.0842,-228 3005.0842,-228 3005.0842,-240 3005.0842,-240 3005.0842,-246 2999.0842,-252 2993.0842,-252"/> +<text text-anchor="middle" x="2962.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 3->61 --> +<g id="edge149" class="edge"> +<title>3->61</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2929.7702,-359.7623C2936.1089,-335.0928 2947.4744,-290.8598 2954.8966,-261.9731"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2958.3374,-262.6461 2957.4361,-252.0896 2951.5576,-260.904 2958.3374,-262.6461"/> +</g> +<!-- 79 --> +<g id="node80" class="node"> +<title>79</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M2994.5842,-180C2994.5842,-180 2951.5842,-180 2951.5842,-180 2945.5842,-180 2939.5842,-174 2939.5842,-168 2939.5842,-168 2939.5842,-156 2939.5842,-156 2939.5842,-150 2945.5842,-144 2951.5842,-144 2951.5842,-144 2994.5842,-144 2994.5842,-144 3000.5842,-144 3006.5842,-150 3006.5842,-156 3006.5842,-156 3006.5842,-168 3006.5842,-168 3006.5842,-174 3000.5842,-180 2994.5842,-180"/> +<text text-anchor="middle" x="2973.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 3->79 --> +<g id="edge169" class="edge"> +<title>3->79</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2943.4196,-359.988C2965.1693,-337.2045 3000.2231,-295.6488 3014.0842,-252 3018.9268,-236.7504 3019.1886,-231.1639 3014.0842,-216 3010.7044,-205.9596 3004.6336,-196.3047 2998.1816,-188.0052"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3000.7721,-185.6461 2991.6881,-180.1933 2995.389,-190.1208 3000.7721,-185.6461"/> </g> <!-- 4 --> <g id="node5" class="node"> <title>4</title> -<path fill="none" stroke="#56d0d8" stroke-width="2" d="M703.6904,-612C703.6904,-612 662.6904,-612 662.6904,-612 656.6904,-612 650.6904,-606 650.6904,-600 650.6904,-600 650.6904,-588 650.6904,-588 650.6904,-582 656.6904,-576 662.6904,-576 662.6904,-576 703.6904,-576 703.6904,-576 709.6904,-576 715.6904,-582 715.6904,-588 715.6904,-588 715.6904,-600 715.6904,-600 715.6904,-606 709.6904,-612 703.6904,-612"/> -<text text-anchor="middle" x="683.1904" y="-591.5" font-family="sans" font-size="10.00" fill="#000000">clustering</text> +<path fill="none" stroke="#56d8b9" stroke-width="2" d="M1842.5842,-540C1842.5842,-540 1801.5842,-540 1801.5842,-540 1795.5842,-540 1789.5842,-534 1789.5842,-528 1789.5842,-528 1789.5842,-516 1789.5842,-516 1789.5842,-510 1795.5842,-504 1801.5842,-504 1801.5842,-504 1842.5842,-504 1842.5842,-504 1848.5842,-504 1854.5842,-510 1854.5842,-516 1854.5842,-516 1854.5842,-528 1854.5842,-528 1854.5842,-534 1848.5842,-540 1842.5842,-540"/> +<text text-anchor="middle" x="1822.0842" y="-519.5" font-family="sans" font-size="10.00" fill="#000000">clustering</text> </g> <!-- 4->3 --> -<g id="edge14" class="edge"> +<g id="edge57" class="edge"> <title>4->3</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M650.4252,-592.6076C518.1195,-586.8296 29.2788,-563.9233 7.1904,-540 -3.6635,-528.2445 -.6233,-517.9623 7.1904,-504 14.3739,-491.1638 25.9945,-481.0081 38.4695,-473.1336"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="40.3243,-476.1036 47.1984,-468.0415 36.7971,-470.0572 40.3243,-476.1036"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8328,-506.3387C1857.5824,-505.4195 1860.3549,-504.6188 1863.0842,-504 1923.6352,-490.2717 2936.8944,-512.6042 2980.0842,-468 2998.6897,-448.7852 2978.1598,-422.1985 2957.0957,-402.9072"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2959.2128,-400.109 2949.3825,-396.1571 2954.6028,-405.3766 2959.2128,-400.109"/> +</g> +<!-- 9 --> +<g id="node10" class="node"> +<title>9</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M2959.0842,-468C2959.0842,-468 2825.0842,-468 2825.0842,-468 2819.0842,-468 2813.0842,-462 2813.0842,-456 2813.0842,-456 2813.0842,-444 2813.0842,-444 2813.0842,-438 2819.0842,-432 2825.0842,-432 2825.0842,-432 2959.0842,-432 2959.0842,-432 2965.0842,-432 2971.0842,-438 2971.0842,-444 2971.0842,-444 2971.0842,-456 2971.0842,-456 2971.0842,-462 2965.0842,-468 2959.0842,-468"/> +<text text-anchor="middle" x="2892.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="2892.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr01</text> +</g> +<!-- 4->9 --> +<g id="edge65" class="edge"> +<title>4->9</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8371,-506.3576C1857.5857,-505.4341 1860.3568,-504.6273 1863.0842,-504 2065.9416,-457.3433 2592.3008,-491.8464 2799.0842,-468 2800.3707,-467.8516 2801.6661,-467.6954 2802.9686,-467.5318"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2803.6329,-470.9735 2813.0639,-466.1458 2802.6807,-464.0386 2803.6329,-470.9735"/> +</g> +<!-- 10 --> +<g id="node11" class="node"> +<title>10</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M786.5842,-396C786.5842,-396 697.5842,-396 697.5842,-396 691.5842,-396 685.5842,-390 685.5842,-384 685.5842,-384 685.5842,-372 685.5842,-372 685.5842,-366 691.5842,-360 697.5842,-360 697.5842,-360 786.5842,-360 786.5842,-360 792.5842,-360 798.5842,-366 798.5842,-372 798.5842,-372 798.5842,-384 798.5842,-384 798.5842,-390 792.5842,-396 786.5842,-396"/> +<text text-anchor="middle" x="742.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="742.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr02</text> +</g> +<!-- 4->10 --> +<g id="edge66" class="edge"> +<title>4->10</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4551,-506.6543C1786.3363,-505.6035 1783.1815,-504.6898 1780.0842,-504 1721.5949,-490.9736 743.7425,-511.0727 702.0842,-468 684.8455,-450.176 699.9737,-423.6648 716.3302,-404.0284"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="719.1099,-406.1673 723.0794,-396.3442 713.8505,-401.5479 719.1099,-406.1673"/> +</g> +<!-- 11 --> +<g id="node12" class="node"> +<title>11</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M857.0842,-468C857.0842,-468 723.0842,-468 723.0842,-468 717.0842,-468 711.0842,-462 711.0842,-456 711.0842,-456 711.0842,-444 711.0842,-444 711.0842,-438 717.0842,-432 723.0842,-432 723.0842,-432 857.0842,-432 857.0842,-432 863.0842,-432 869.0842,-438 869.0842,-444 869.0842,-444 869.0842,-456 869.0842,-456 869.0842,-462 863.0842,-468 857.0842,-468"/> +<text text-anchor="middle" x="790.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="790.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr02</text> +</g> +<!-- 4->11 --> +<g id="edge68" class="edge"> +<title>4->11</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4502,-506.6758C1786.3325,-505.6205 1783.1793,-504.6999 1780.0842,-504 1587.4777,-460.4456 1092.9994,-491.1847 879.11,-467.9469"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="879.474,-464.4658 869.1392,-466.799 878.6733,-471.4198 879.474,-464.4658"/> </g> <!-- 12 --> <g id="node13" class="node"> <title>12</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M162.1904,-540C162.1904,-540 28.1904,-540 28.1904,-540 22.1904,-540 16.1904,-534 16.1904,-528 16.1904,-528 16.1904,-516 16.1904,-516 16.1904,-510 22.1904,-504 28.1904,-504 28.1904,-504 162.1904,-504 162.1904,-504 168.1904,-504 174.1904,-510 174.1904,-516 174.1904,-516 174.1904,-528 174.1904,-528 174.1904,-534 168.1904,-540 162.1904,-540"/> -<text text-anchor="middle" x="95.1904" y="-525" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="95.1904" y="-514" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr01</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M3147.5842,-396C3147.5842,-396 3058.5842,-396 3058.5842,-396 3052.5842,-396 3046.5842,-390 3046.5842,-384 3046.5842,-384 3046.5842,-372 3046.5842,-372 3046.5842,-366 3052.5842,-360 3058.5842,-360 3058.5842,-360 3147.5842,-360 3147.5842,-360 3153.5842,-360 3159.5842,-366 3159.5842,-372 3159.5842,-372 3159.5842,-384 3159.5842,-384 3159.5842,-390 3153.5842,-396 3147.5842,-396"/> +<text text-anchor="middle" x="3103.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="3103.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr03</text> </g> <!-- 4->12 --> -<g id="edge28" class="edge"> +<g id="edge69" class="edge"> <title>4->12</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M650.6376,-591.3851C571.2941,-584.8083 361.71,-566.2112 188.1904,-540 186.9098,-539.8066 185.62,-539.608 184.3228,-539.4048"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="184.6943,-535.9192 174.2614,-537.7645 183.5679,-542.828 184.6943,-535.9192"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8293,-506.3231C1857.5796,-505.4074 1860.3533,-504.6117 1863.0842,-504 1935.2669,-487.8309 3142.4904,-521.0081 3194.0842,-468 3205.2439,-456.5344 3202.0012,-445.904 3194.0842,-432 3186.7723,-419.1588 3175.0712,-409.0559 3162.4609,-401.2384"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3164.0464,-398.1132 3153.6283,-396.1858 3160.5706,-404.1893 3164.0464,-398.1132"/> </g> <!-- 13 --> <g id="node14" class="node"> <title>13</title> -<path fill="none" stroke="#b6d856" stroke-width="2" d="M353.6904,-468C353.6904,-468 264.6904,-468 264.6904,-468 258.6904,-468 252.6904,-462 252.6904,-456 252.6904,-456 252.6904,-444 252.6904,-444 252.6904,-438 258.6904,-432 264.6904,-432 264.6904,-432 353.6904,-432 353.6904,-432 359.6904,-432 365.6904,-438 365.6904,-444 365.6904,-444 365.6904,-456 365.6904,-456 365.6904,-462 359.6904,-468 353.6904,-468"/> -<text text-anchor="middle" x="309.1904" y="-453" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> -<text text-anchor="middle" x="309.1904" y="-442" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr02</text> +<path fill="none" stroke="#56d863" stroke-width="2" d="M3173.0842,-468C3173.0842,-468 3039.0842,-468 3039.0842,-468 3033.0842,-468 3027.0842,-462 3027.0842,-456 3027.0842,-456 3027.0842,-444 3027.0842,-444 3027.0842,-438 3033.0842,-432 3039.0842,-432 3039.0842,-432 3173.0842,-432 3173.0842,-432 3179.0842,-432 3185.0842,-438 3185.0842,-444 3185.0842,-444 3185.0842,-456 3185.0842,-456 3185.0842,-462 3179.0842,-468 3173.0842,-468"/> +<text text-anchor="middle" x="3106.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="3106.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr03</text> </g> <!-- 4->13 --> -<g id="edge29" class="edge"> +<g id="edge71" class="edge"> <title>4->13</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M650.5311,-592.6443C549.9196,-588.1366 249.7442,-572.0856 221.1904,-540 210.5536,-528.0476 213.3767,-517.9623 221.1904,-504 228.3739,-491.1638 239.9945,-481.0081 252.4695,-473.1336"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="254.3243,-476.1036 261.1984,-468.0415 250.7971,-470.0572 254.3243,-476.1036"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8322,-506.336C1857.5819,-505.4173 1860.3546,-504.6175 1863.0842,-504 2112.4626,-447.5813 2758.9837,-496.3831 3013.0842,-468 3014.3712,-467.8562 3015.6671,-467.7043 3016.9701,-467.5448"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3017.625,-470.9883 3027.0683,-466.1847 3016.6906,-464.0509 3017.625,-470.9883"/> </g> <!-- 14 --> <g id="node15" class="node"> <title>14</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M376.1904,-540C376.1904,-540 242.1904,-540 242.1904,-540 236.1904,-540 230.1904,-534 230.1904,-528 230.1904,-528 230.1904,-516 230.1904,-516 230.1904,-510 236.1904,-504 242.1904,-504 242.1904,-504 376.1904,-504 376.1904,-504 382.1904,-504 388.1904,-510 388.1904,-516 388.1904,-516 388.1904,-528 388.1904,-528 388.1904,-534 382.1904,-540 376.1904,-540"/> -<text text-anchor="middle" x="309.1904" y="-525" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="309.1904" y="-514" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr02</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M1255.5842,-396C1255.5842,-396 1166.5842,-396 1166.5842,-396 1160.5842,-396 1154.5842,-390 1154.5842,-384 1154.5842,-384 1154.5842,-372 1154.5842,-372 1154.5842,-366 1160.5842,-360 1166.5842,-360 1166.5842,-360 1255.5842,-360 1255.5842,-360 1261.5842,-360 1267.5842,-366 1267.5842,-372 1267.5842,-372 1267.5842,-384 1267.5842,-384 1267.5842,-390 1261.5842,-396 1255.5842,-396"/> +<text text-anchor="middle" x="1211.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="1211.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr04</text> </g> <!-- 4->14 --> -<g id="edge31" class="edge"> +<g id="edge72" class="edge"> <title>4->14</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M650.3094,-587.6959C597.8411,-577.6331 491.9428,-557.3096 402.1904,-540 400.9187,-539.7548 399.6373,-539.5076 398.3479,-539.2588"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="398.8189,-535.7851 388.3368,-537.3261 397.492,-542.6582 398.8189,-535.7851"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4385,-506.7268C1786.3233,-505.6608 1783.1738,-504.7238 1780.0842,-504 1709.6579,-487.502 1179.7969,-520.5423 1130.0842,-468 1119.0877,-456.3777 1122.5344,-446.1068 1130.0842,-432 1136.7581,-419.5296 1147.7248,-409.4416 1159.4643,-401.5111"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1161.4738,-404.3826 1168.0988,-396.1146 1157.7638,-398.4466 1161.4738,-404.3826"/> </g> <!-- 15 --> <g id="node16" class="node"> <title>15</title> -<path fill="none" stroke="#b6d856" stroke-width="2" d="M567.6904,-468C567.6904,-468 478.6904,-468 478.6904,-468 472.6904,-468 466.6904,-462 466.6904,-456 466.6904,-456 466.6904,-444 466.6904,-444 466.6904,-438 472.6904,-432 478.6904,-432 478.6904,-432 567.6904,-432 567.6904,-432 573.6904,-432 579.6904,-438 579.6904,-444 579.6904,-444 579.6904,-456 579.6904,-456 579.6904,-462 573.6904,-468 567.6904,-468"/> -<text text-anchor="middle" x="523.1904" y="-453" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> -<text text-anchor="middle" x="523.1904" y="-442" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr03</text> +<path fill="none" stroke="#56d863" stroke-width="2" d="M1285.0842,-468C1285.0842,-468 1151.0842,-468 1151.0842,-468 1145.0842,-468 1139.0842,-462 1139.0842,-456 1139.0842,-456 1139.0842,-444 1139.0842,-444 1139.0842,-438 1145.0842,-432 1151.0842,-432 1151.0842,-432 1285.0842,-432 1285.0842,-432 1291.0842,-432 1297.0842,-438 1297.0842,-444 1297.0842,-444 1297.0842,-456 1297.0842,-456 1297.0842,-462 1291.0842,-468 1285.0842,-468"/> +<text text-anchor="middle" x="1218.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="1218.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr04</text> </g> <!-- 4->15 --> -<g id="edge32" class="edge"> +<g id="edge74" class="edge"> <title>4->15</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M650.3716,-591.8146C589.2779,-586.9896 461.8685,-573.1121 435.1904,-540 425.1521,-527.5408 427.3767,-517.9623 435.1904,-504 442.3739,-491.1638 453.9945,-481.0081 466.4695,-473.1336"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="468.3243,-476.1036 475.1984,-468.0415 464.7971,-470.0572 468.3243,-476.1036"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4223,-506.7943C1786.3105,-505.7141 1783.1662,-504.7554 1780.0842,-504 1578.09,-454.4942 1517.2229,-495.8901 1307.2686,-468.0424"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1307.5382,-464.5469 1297.157,-466.6634 1306.5922,-471.4827 1307.5382,-464.5469"/> </g> <!-- 16 --> <g id="node17" class="node"> <title>16</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M590.1904,-540C590.1904,-540 456.1904,-540 456.1904,-540 450.1904,-540 444.1904,-534 444.1904,-528 444.1904,-528 444.1904,-516 444.1904,-516 444.1904,-510 450.1904,-504 456.1904,-504 456.1904,-504 590.1904,-504 590.1904,-504 596.1904,-504 602.1904,-510 602.1904,-516 602.1904,-516 602.1904,-528 602.1904,-528 602.1904,-534 596.1904,-540 590.1904,-540"/> -<text text-anchor="middle" x="523.1904" y="-525" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="523.1904" y="-514" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr03</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M1654.5842,-396C1654.5842,-396 1565.5842,-396 1565.5842,-396 1559.5842,-396 1553.5842,-390 1553.5842,-384 1553.5842,-384 1553.5842,-372 1553.5842,-372 1553.5842,-366 1559.5842,-360 1565.5842,-360 1565.5842,-360 1654.5842,-360 1654.5842,-360 1660.5842,-360 1666.5842,-366 1666.5842,-372 1666.5842,-372 1666.5842,-384 1666.5842,-384 1666.5842,-390 1660.5842,-396 1654.5842,-396"/> +<text text-anchor="middle" x="1610.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="1610.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr05</text> </g> <!-- 4->16 --> -<g id="edge34" class="edge"> +<g id="edge75" class="edge"> <title>4->16</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M650.4259,-579.256C628.0508,-569.1872 597.9953,-555.6622 572.714,-544.2856"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="573.84,-540.9543 563.2845,-540.0423 570.9674,-547.3378 573.84,-540.9543"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.3479,-507.0724C1786.2517,-505.9338 1783.1313,-504.8856 1780.0842,-504 1732.092,-490.0526 1590.4721,-506.0631 1558.0842,-468 1541.1817,-448.1358 1559.9408,-422.0133 1579.481,-403.0312"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1581.9726,-405.4942 1586.9355,-396.1336 1577.2185,-400.3562 1581.9726,-405.4942"/> </g> <!-- 17 --> <g id="node18" class="node"> <title>17</title> -<path fill="none" stroke="#b6d856" stroke-width="2" d="M727.6904,-468C727.6904,-468 638.6904,-468 638.6904,-468 632.6904,-468 626.6904,-462 626.6904,-456 626.6904,-456 626.6904,-444 626.6904,-444 626.6904,-438 632.6904,-432 638.6904,-432 638.6904,-432 727.6904,-432 727.6904,-432 733.6904,-432 739.6904,-438 739.6904,-444 739.6904,-444 739.6904,-456 739.6904,-456 739.6904,-462 733.6904,-468 727.6904,-468"/> -<text text-anchor="middle" x="683.1904" y="-453" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> -<text text-anchor="middle" x="683.1904" y="-442" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr04</text> +<path fill="none" stroke="#56d863" stroke-width="2" d="M1713.0842,-468C1713.0842,-468 1579.0842,-468 1579.0842,-468 1573.0842,-468 1567.0842,-462 1567.0842,-456 1567.0842,-456 1567.0842,-444 1567.0842,-444 1567.0842,-438 1573.0842,-432 1579.0842,-432 1579.0842,-432 1713.0842,-432 1713.0842,-432 1719.0842,-432 1725.0842,-438 1725.0842,-444 1725.0842,-444 1725.0842,-456 1725.0842,-456 1725.0842,-462 1719.0842,-468 1713.0842,-468"/> +<text text-anchor="middle" x="1646.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="1646.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr05</text> </g> <!-- 4->17 --> -<g id="edge35" class="edge"> +<g id="edge77" class="edge"> <title>4->17</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M668.0763,-575.7768C660.8355,-565.8586 652.938,-552.9858 649.1904,-540 644.7539,-524.6274 644.7539,-519.3726 649.1904,-504 651.9425,-494.4635 656.9328,-484.9881 662.2574,-476.6989"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="665.3018,-478.4483 668.0763,-468.2232 659.5309,-474.4863 665.3018,-478.4483"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.5545,-507.9758C1786.3584,-506.6229 1783.1608,-505.279 1780.0842,-504 1754.1175,-493.2051 1725.1934,-481.5081 1700.8828,-471.7696"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1702.0478,-468.4661 1691.4631,-468.0017 1699.448,-474.9654 1702.0478,-468.4661"/> </g> <!-- 18 --> <g id="node19" class="node"> <title>18</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M804.1904,-540C804.1904,-540 670.1904,-540 670.1904,-540 664.1904,-540 658.1904,-534 658.1904,-528 658.1904,-528 658.1904,-516 658.1904,-516 658.1904,-510 664.1904,-504 670.1904,-504 670.1904,-504 804.1904,-504 804.1904,-504 810.1904,-504 816.1904,-510 816.1904,-516 816.1904,-516 816.1904,-528 816.1904,-528 816.1904,-534 810.1904,-540 804.1904,-540"/> -<text text-anchor="middle" x="737.1904" y="-525" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="737.1904" y="-514" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr04</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M3293.5842,-396C3293.5842,-396 3204.5842,-396 3204.5842,-396 3198.5842,-396 3192.5842,-390 3192.5842,-384 3192.5842,-384 3192.5842,-372 3192.5842,-372 3192.5842,-366 3198.5842,-360 3204.5842,-360 3204.5842,-360 3293.5842,-360 3293.5842,-360 3299.5842,-360 3305.5842,-366 3305.5842,-372 3305.5842,-372 3305.5842,-384 3305.5842,-384 3305.5842,-390 3299.5842,-396 3293.5842,-396"/> +<text text-anchor="middle" x="3249.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="3249.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr06</text> </g> <!-- 4->18 --> -<g id="edge37" class="edge"> +<g id="edge78" class="edge"> <title>4->18</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M696.8169,-575.8314C703.0364,-567.5386 710.5226,-557.557 717.3504,-548.4533"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="720.1804,-550.5133 723.3804,-540.4133 714.5804,-546.3133 720.1804,-550.5133"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8268,-506.3118C1857.5777,-505.3986 1860.3521,-504.6066 1863.0842,-504 1946.8996,-485.3898 3348.0856,-529.4128 3408.0842,-468 3443.2871,-431.9673 3373.6221,-406.0048 3315.6534,-391.4854"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3316.2758,-388.035 3305.7327,-389.0806 3314.6267,-394.8379 3316.2758,-388.035"/> </g> <!-- 19 --> <g id="node20" class="node"> <title>19</title> -<path fill="none" stroke="#b6d856" stroke-width="2" d="M888.6904,-468C888.6904,-468 799.6904,-468 799.6904,-468 793.6904,-468 787.6904,-462 787.6904,-456 787.6904,-456 787.6904,-444 787.6904,-444 787.6904,-438 793.6904,-432 799.6904,-432 799.6904,-432 888.6904,-432 888.6904,-432 894.6904,-432 900.6904,-438 900.6904,-444 900.6904,-444 900.6904,-456 900.6904,-456 900.6904,-462 894.6904,-468 888.6904,-468"/> -<text text-anchor="middle" x="844.1904" y="-453" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> -<text text-anchor="middle" x="844.1904" y="-442" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr05</text> +<path fill="none" stroke="#56d863" stroke-width="2" d="M3387.0842,-468C3387.0842,-468 3253.0842,-468 3253.0842,-468 3247.0842,-468 3241.0842,-462 3241.0842,-456 3241.0842,-456 3241.0842,-444 3241.0842,-444 3241.0842,-438 3247.0842,-432 3253.0842,-432 3253.0842,-432 3387.0842,-432 3387.0842,-432 3393.0842,-432 3399.0842,-438 3399.0842,-444 3399.0842,-444 3399.0842,-456 3399.0842,-456 3399.0842,-462 3393.0842,-468 3387.0842,-468"/> +<text text-anchor="middle" x="3320.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="3320.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr06</text> </g> <!-- 4->19 --> -<g id="edge38" class="edge"> +<g id="edge80" class="edge"> <title>4->19</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M715.9366,-590.5401C748.537,-585.3056 797.5841,-572.2659 825.1904,-540 839.7315,-523.0046 844.0486,-497.6656 844.9765,-478.2004"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="848.4782,-478.1515 845.1867,-468.081 841.4797,-478.0061 848.4782,-478.1515"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8289,-506.3211C1857.5793,-505.4058 1860.3531,-504.6108 1863.0842,-504 2158.99,-437.8179 2925.6599,-500.9206 3227.0842,-468 3228.3716,-467.8594 3229.6678,-467.7104 3230.9711,-467.5537"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3231.6195,-470.9984 3241.0713,-466.2114 3230.6973,-464.0594 3231.6195,-470.9984"/> </g> <!-- 20 --> <g id="node21" class="node"> <title>20</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M1018.1904,-540C1018.1904,-540 884.1904,-540 884.1904,-540 878.1904,-540 872.1904,-534 872.1904,-528 872.1904,-528 872.1904,-516 872.1904,-516 872.1904,-510 878.1904,-504 884.1904,-504 884.1904,-504 1018.1904,-504 1018.1904,-504 1024.1904,-504 1030.1904,-510 1030.1904,-516 1030.1904,-516 1030.1904,-528 1030.1904,-528 1030.1904,-534 1024.1904,-540 1018.1904,-540"/> -<text text-anchor="middle" x="951.1904" y="-525" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="951.1904" y="-514" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr05</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M328.5842,-396C328.5842,-396 239.5842,-396 239.5842,-396 233.5842,-396 227.5842,-390 227.5842,-384 227.5842,-384 227.5842,-372 227.5842,-372 227.5842,-366 233.5842,-360 239.5842,-360 239.5842,-360 328.5842,-360 328.5842,-360 334.5842,-360 340.5842,-366 340.5842,-372 340.5842,-372 340.5842,-384 340.5842,-384 340.5842,-390 334.5842,-396 328.5842,-396"/> +<text text-anchor="middle" x="284.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="284.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr07</text> </g> <!-- 4->20 --> -<g id="edge40" class="edge"> +<g id="edge81" class="edge"> <title>4->20</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M715.7845,-585.2434C754.8377,-574.7515 821.5647,-556.8248 874.0259,-542.7308"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="875.2307,-546.0313 883.9801,-540.0565 873.4145,-539.271 875.2307,-546.0313"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4624,-506.621C1786.3421,-505.5772 1783.185,-504.6742 1780.0842,-504 1696.2421,-485.7699 296.0434,-529.3736 236.0842,-468 217.9787,-449.4674 236.2468,-422.7213 255.226,-403.2033"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="257.7711,-405.6096 262.4604,-396.109 252.87,-400.6117 257.7711,-405.6096"/> </g> <!-- 21 --> <g id="node22" class="node"> <title>21</title> -<path fill="none" stroke="#b6d856" stroke-width="2" d="M1101.1904,-468C1101.1904,-468 1015.1904,-468 1015.1904,-468 1009.1904,-468 1003.1904,-462 1003.1904,-456 1003.1904,-456 1003.1904,-444 1003.1904,-444 1003.1904,-438 1009.1904,-432 1015.1904,-432 1015.1904,-432 1101.1904,-432 1101.1904,-432 1107.1904,-432 1113.1904,-438 1113.1904,-444 1113.1904,-444 1113.1904,-456 1113.1904,-456 1113.1904,-462 1107.1904,-468 1101.1904,-468"/> -<text text-anchor="middle" x="1058.1904" y="-453" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> -<text text-anchor="middle" x="1058.1904" y="-442" font-family="sans" font-size="10.00" fill="#000000">chromosome: chrM</text> +<path fill="none" stroke="#56d863" stroke-width="2" d="M177.0842,-468C177.0842,-468 43.0842,-468 43.0842,-468 37.0842,-468 31.0842,-462 31.0842,-456 31.0842,-456 31.0842,-444 31.0842,-444 31.0842,-438 37.0842,-432 43.0842,-432 43.0842,-432 177.0842,-432 177.0842,-432 183.0842,-432 189.0842,-438 189.0842,-444 189.0842,-444 189.0842,-456 189.0842,-456 189.0842,-462 183.0842,-468 177.0842,-468"/> +<text text-anchor="middle" x="110.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="110.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr07</text> </g> <!-- 4->21 --> -<g id="edge41" class="edge"> +<g id="edge83" class="edge"> <title>4->21</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M715.9475,-591.1541C799.5281,-583.5992 1015.7806,-562.1006 1039.1904,-540 1055.7267,-524.3884 1059.745,-498.2958 1060.0551,-478.2136"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1063.5527,-478.0145 1059.9141,-468.0641 1056.5534,-478.1118 1063.5527,-478.0145"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4627,-506.6194C1786.3424,-505.5759 1783.1851,-504.6735 1780.0842,-504 1437.5338,-429.6052 551.615,-505.4373 203.0842,-468 201.7965,-467.8617 200.5,-467.7148 199.1966,-467.5601"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="199.4662,-464.0655 189.095,-466.2308 198.5528,-471.0057 199.4662,-464.0655"/> </g> <!-- 22 --> <g id="node23" class="node"> <title>22</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M1229.6904,-540C1229.6904,-540 1098.6904,-540 1098.6904,-540 1092.6904,-540 1086.6904,-534 1086.6904,-528 1086.6904,-528 1086.6904,-516 1086.6904,-516 1086.6904,-510 1092.6904,-504 1098.6904,-504 1098.6904,-504 1229.6904,-504 1229.6904,-504 1235.6904,-504 1241.6904,-510 1241.6904,-516 1241.6904,-516 1241.6904,-528 1241.6904,-528 1241.6904,-534 1235.6904,-540 1229.6904,-540"/> -<text text-anchor="middle" x="1164.1904" y="-525" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="1164.1904" y="-514" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chrM</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M479.5842,-396C479.5842,-396 390.5842,-396 390.5842,-396 384.5842,-396 378.5842,-390 378.5842,-384 378.5842,-384 378.5842,-372 378.5842,-372 378.5842,-366 384.5842,-360 390.5842,-360 390.5842,-360 479.5842,-360 479.5842,-360 485.5842,-360 491.5842,-366 491.5842,-372 491.5842,-372 491.5842,-384 491.5842,-384 491.5842,-390 485.5842,-396 479.5842,-396"/> +<text text-anchor="middle" x="435.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="435.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr08</text> </g> <!-- 4->22 --> -<g id="edge43" class="edge"> +<g id="edge84" class="edge"> <title>4->22</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M715.8137,-590.0901C782.7829,-581.9275 940.5488,-561.9978 1072.1904,-540 1073.6451,-539.7569 1075.1122,-539.5085 1076.5888,-539.2554"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1077.2016,-542.7014 1086.4455,-537.5244 1075.9908,-535.8069 1077.2016,-542.7014"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4597,-506.6334C1786.34,-505.587 1783.1837,-504.68 1780.0842,-504 1707.8855,-488.1597 505.8319,-516.5361 450.0842,-468 432.8908,-453.0308 430.288,-426.4493 431.3047,-406.0422"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="434.7972,-406.2756 432.1083,-396.0277 427.8196,-405.7157 434.7972,-406.2756"/> </g> <!-- 23 --> <g id="node24" class="node"> <title>23</title> -<path fill="none" stroke="#b6d856" stroke-width="2" d="M1312.1904,-468C1312.1904,-468 1228.1904,-468 1228.1904,-468 1222.1904,-468 1216.1904,-462 1216.1904,-456 1216.1904,-456 1216.1904,-444 1216.1904,-444 1216.1904,-438 1222.1904,-432 1228.1904,-432 1228.1904,-432 1312.1904,-432 1312.1904,-432 1318.1904,-432 1324.1904,-438 1324.1904,-444 1324.1904,-444 1324.1904,-456 1324.1904,-456 1324.1904,-462 1318.1904,-468 1312.1904,-468"/> -<text text-anchor="middle" x="1270.1904" y="-453" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> -<text text-anchor="middle" x="1270.1904" y="-442" font-family="sans" font-size="10.00" fill="#000000">chromosome: chrC</text> +<path fill="none" stroke="#56d863" stroke-width="2" d="M391.0842,-468C391.0842,-468 257.0842,-468 257.0842,-468 251.0842,-468 245.0842,-462 245.0842,-456 245.0842,-456 245.0842,-444 245.0842,-444 245.0842,-438 251.0842,-432 257.0842,-432 257.0842,-432 391.0842,-432 391.0842,-432 397.0842,-432 403.0842,-438 403.0842,-444 403.0842,-444 403.0842,-456 403.0842,-456 403.0842,-462 397.0842,-468 391.0842,-468"/> +<text text-anchor="middle" x="324.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="324.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr08</text> </g> <!-- 4->23 --> -<g id="edge44" class="edge"> +<g id="edge86" class="edge"> <title>4->23</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M715.8595,-593.0948C830.5391,-589.621 1209.986,-575.5145 1250.1904,-540 1267.2735,-524.9096 1271.5397,-498.7583 1271.9621,-478.5215"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1275.4599,-478.2499 1271.8695,-468.282 1268.4602,-478.3133 1275.4599,-478.2499"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4602,-506.6312C1786.3404,-505.5853 1783.1839,-504.679 1780.0842,-504 1484.1077,-439.1648 718.2873,-500.8994 417.0842,-468 415.7967,-467.8594 414.5005,-467.7104 413.1973,-467.5536"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="413.471,-464.0593 403.0971,-466.2113 412.5488,-470.9983 413.471,-464.0593"/> </g> <!-- 24 --> <g id="node25" class="node"> <title>24</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M1439.6904,-540C1439.6904,-540 1310.6904,-540 1310.6904,-540 1304.6904,-540 1298.6904,-534 1298.6904,-528 1298.6904,-528 1298.6904,-516 1298.6904,-516 1298.6904,-510 1304.6904,-504 1310.6904,-504 1310.6904,-504 1439.6904,-504 1439.6904,-504 1445.6904,-504 1451.6904,-510 1451.6904,-516 1451.6904,-516 1451.6904,-528 1451.6904,-528 1451.6904,-534 1445.6904,-540 1439.6904,-540"/> -<text text-anchor="middle" x="1375.1904" y="-525" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="1375.1904" y="-514" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chrC</text> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M648.5842,-396C648.5842,-396 559.5842,-396 559.5842,-396 553.5842,-396 547.5842,-390 547.5842,-384 547.5842,-384 547.5842,-372 547.5842,-372 547.5842,-366 553.5842,-360 559.5842,-360 559.5842,-360 648.5842,-360 648.5842,-360 654.5842,-360 660.5842,-366 660.5842,-372 660.5842,-372 660.5842,-384 660.5842,-384 660.5842,-390 654.5842,-396 648.5842,-396"/> +<text text-anchor="middle" x="604.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="604.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr09</text> </g> <!-- 4->24 --> -<g id="edge46" class="edge"> +<g id="edge87" class="edge"> <title>4->24</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M715.9047,-592.2792C806.5508,-587.2488 1068.4953,-570.9343 1284.1904,-540 1285.4906,-539.8135 1286.8004,-539.6207 1288.1177,-539.422"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1289.0088,-542.8243 1298.334,-537.7954 1287.9081,-535.9114 1289.0088,-542.8243"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4553,-506.6532C1786.3365,-505.6026 1783.1816,-504.6893 1780.0842,-504 1661.9089,-477.7016 801.7417,-517.1111 691.0842,-468 661.2307,-454.7507 636.4442,-426.0384 621.0647,-404.5857"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="623.8239,-402.4223 615.2549,-396.1915 618.068,-406.406 623.8239,-402.4223"/> +</g> +<!-- 25 --> +<g id="node26" class="node"> +<title>25</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M605.0842,-468C605.0842,-468 471.0842,-468 471.0842,-468 465.0842,-468 459.0842,-462 459.0842,-456 459.0842,-456 459.0842,-444 459.0842,-444 459.0842,-438 465.0842,-432 471.0842,-432 471.0842,-432 605.0842,-432 605.0842,-432 611.0842,-432 617.0842,-438 617.0842,-444 617.0842,-444 617.0842,-456 617.0842,-456 617.0842,-462 611.0842,-468 605.0842,-468"/> +<text text-anchor="middle" x="538.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="538.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr09</text> +</g> +<!-- 4->25 --> +<g id="edge89" class="edge"> +<title>4->25</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4566,-506.6475C1786.3375,-505.5981 1783.1822,-504.6866 1780.0842,-504 1530.6776,-448.7235 884.9635,-496.3619 631.0842,-468 629.7971,-467.8562 628.5012,-467.7042 627.1982,-467.5447"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="627.4778,-464.0509 617.1,-466.1846 626.5433,-470.9882 627.4778,-464.0509"/> +</g> +<!-- 26 --> +<g id="node27" class="node"> +<title>26</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M1117.5842,-396C1117.5842,-396 1028.5842,-396 1028.5842,-396 1022.5842,-396 1016.5842,-390 1016.5842,-384 1016.5842,-384 1016.5842,-372 1016.5842,-372 1016.5842,-366 1022.5842,-360 1028.5842,-360 1028.5842,-360 1117.5842,-360 1117.5842,-360 1123.5842,-360 1129.5842,-366 1129.5842,-372 1129.5842,-372 1129.5842,-384 1129.5842,-384 1129.5842,-390 1123.5842,-396 1117.5842,-396"/> +<text text-anchor="middle" x="1073.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="1073.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr10</text> +</g> +<!-- 4->26 --> +<g id="edge90" class="edge"> +<title>4->26</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4392,-506.7238C1786.3238,-505.6584 1783.1741,-504.7223 1780.0842,-504 1708.4619,-487.2565 1180.7553,-508.0844 1119.0842,-468 1097.5896,-454.0292 1085.647,-426.6934 1079.3544,-405.7967"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1082.7262,-404.8579 1076.702,-396.1424 1075.9763,-406.7124 1082.7262,-404.8579"/> +</g> +<!-- 27 --> +<g id="node28" class="node"> +<title>27</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M1033.0842,-468C1033.0842,-468 899.0842,-468 899.0842,-468 893.0842,-468 887.0842,-462 887.0842,-456 887.0842,-456 887.0842,-444 887.0842,-444 887.0842,-438 893.0842,-432 899.0842,-432 899.0842,-432 1033.0842,-432 1033.0842,-432 1039.0842,-432 1045.0842,-438 1045.0842,-444 1045.0842,-444 1045.0842,-456 1045.0842,-456 1045.0842,-462 1039.0842,-468 1033.0842,-468"/> +<text text-anchor="middle" x="966.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="966.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr10</text> +</g> +<!-- 4->27 --> +<g id="edge92" class="edge"> +<title>4->27</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.4427,-506.7089C1786.3266,-505.6466 1783.1757,-504.7154 1780.0842,-504 1467.4997,-431.6703 1377.5998,-506.5799 1059.0842,-468 1057.7985,-467.8443 1056.5039,-467.6811 1055.2022,-467.5111"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1055.5035,-464.0189 1045.1118,-466.0835 1054.5229,-470.9499 1055.5035,-464.0189"/> +</g> +<!-- 28 --> +<g id="node29" class="node"> +<title>28</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M1491.5842,-396C1491.5842,-396 1402.5842,-396 1402.5842,-396 1396.5842,-396 1390.5842,-390 1390.5842,-384 1390.5842,-384 1390.5842,-372 1390.5842,-372 1390.5842,-366 1396.5842,-360 1402.5842,-360 1402.5842,-360 1491.5842,-360 1491.5842,-360 1497.5842,-360 1503.5842,-366 1503.5842,-372 1503.5842,-372 1503.5842,-384 1503.5842,-384 1503.5842,-390 1497.5842,-396 1491.5842,-396"/> +<text text-anchor="middle" x="1447.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="1447.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr11</text> +</g> +<!-- 4->28 --> +<g id="edge93" class="edge"> +<title>4->28</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.3543,-507.0502C1786.2567,-505.9163 1783.1343,-504.8752 1780.0842,-504 1679.786,-475.222 1642.4502,-512.5303 1548.0842,-468 1516.2546,-452.9799 1487.0805,-424.705 1468.3598,-403.8401"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1470.934,-401.467 1461.713,-396.2493 1465.6677,-406.0785 1470.934,-401.467"/> +</g> +<!-- 29 --> +<g id="node30" class="node"> +<title>29</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M1461.0842,-468C1461.0842,-468 1327.0842,-468 1327.0842,-468 1321.0842,-468 1315.0842,-462 1315.0842,-456 1315.0842,-456 1315.0842,-444 1315.0842,-444 1315.0842,-438 1321.0842,-432 1327.0842,-432 1327.0842,-432 1461.0842,-432 1461.0842,-432 1467.0842,-432 1473.0842,-438 1473.0842,-444 1473.0842,-444 1473.0842,-456 1473.0842,-456 1473.0842,-462 1467.0842,-468 1461.0842,-468"/> +<text text-anchor="middle" x="1394.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="1394.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr11</text> +</g> +<!-- 4->29 --> +<g id="edge95" class="edge"> +<title>4->29</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1789.3831,-506.9467C1786.2795,-505.8346 1783.1478,-504.8267 1780.0842,-504 1653.4137,-469.8178 1616.6777,-488.4777 1487.0842,-468 1485.805,-467.7979 1484.5164,-467.5911 1483.2204,-467.3803"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1483.6084,-463.8965 1473.1666,-465.6909 1482.4483,-470.7997 1483.6084,-463.8965"/> +</g> +<!-- 30 --> +<g id="node31" class="node"> +<title>30</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M2101.5842,-396C2101.5842,-396 2012.5842,-396 2012.5842,-396 2006.5842,-396 2000.5842,-390 2000.5842,-384 2000.5842,-384 2000.5842,-372 2000.5842,-372 2000.5842,-366 2006.5842,-360 2012.5842,-360 2012.5842,-360 2101.5842,-360 2101.5842,-360 2107.5842,-360 2113.5842,-366 2113.5842,-372 2113.5842,-372 2113.5842,-384 2113.5842,-384 2113.5842,-390 2107.5842,-396 2101.5842,-396"/> +<text text-anchor="middle" x="2057.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="2057.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr12</text> +</g> +<!-- 4->30 --> +<g id="edge96" class="edge"> +<title>4->30</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.913,-506.6537C1857.6446,-505.6639 1860.391,-504.761 1863.0842,-504 1919.4273,-488.0799 2085.616,-512.1384 2124.0842,-468 2142.5968,-446.7586 2118.7984,-420.7878 2094.5928,-402.2137"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2096.56,-399.3159 2086.4289,-396.2157 2092.4154,-404.9571 2096.56,-399.3159"/> +</g> +<!-- 31 --> +<g id="node32" class="node"> +<title>31</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M2103.0842,-468C2103.0842,-468 1969.0842,-468 1969.0842,-468 1963.0842,-468 1957.0842,-462 1957.0842,-456 1957.0842,-456 1957.0842,-444 1957.0842,-444 1957.0842,-438 1963.0842,-432 1969.0842,-432 1969.0842,-432 2103.0842,-432 2103.0842,-432 2109.0842,-432 2115.0842,-438 2115.0842,-444 2115.0842,-444 2115.0842,-456 2115.0842,-456 2115.0842,-462 2109.0842,-468 2103.0842,-468"/> +<text text-anchor="middle" x="2036.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="2036.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr12</text> +</g> +<!-- 4->31 --> +<g id="edge98" class="edge"> +<title>4->31</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.6235,-507.3247C1857.4689,-506.1601 1860.3175,-505.0354 1863.0842,-504 1895.2581,-491.9586 1931.4566,-480.3658 1962.3943,-471.0293"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1963.6671,-474.3018 1972.2424,-468.0796 1961.6586,-467.5961 1963.6671,-474.3018"/> +</g> +<!-- 32 --> +<g id="node33" class="node"> +<title>32</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M2348.5842,-396C2348.5842,-396 2259.5842,-396 2259.5842,-396 2253.5842,-396 2247.5842,-390 2247.5842,-384 2247.5842,-384 2247.5842,-372 2247.5842,-372 2247.5842,-366 2253.5842,-360 2259.5842,-360 2259.5842,-360 2348.5842,-360 2348.5842,-360 2354.5842,-360 2360.5842,-366 2360.5842,-372 2360.5842,-372 2360.5842,-384 2360.5842,-384 2360.5842,-390 2354.5842,-396 2348.5842,-396"/> +<text text-anchor="middle" x="2304.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="2304.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr13</text> +</g> +<!-- 4->32 --> +<g id="edge99" class="edge"> +<title>4->32</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.864,-506.4697C1857.6066,-505.5211 1860.3689,-504.6779 1863.0842,-504 1914.437,-491.1788 2302.0996,-506.815 2338.0842,-468 2354.5782,-450.2086 2341.41,-423.6332 2326.9294,-403.969"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2329.634,-401.7456 2320.7257,-396.0104 2324.1132,-406.0491 2329.634,-401.7456"/> +</g> +<!-- 33 --> +<g id="node34" class="node"> +<title>33</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M2317.0842,-468C2317.0842,-468 2183.0842,-468 2183.0842,-468 2177.0842,-468 2171.0842,-462 2171.0842,-456 2171.0842,-456 2171.0842,-444 2171.0842,-444 2171.0842,-438 2177.0842,-432 2183.0842,-432 2183.0842,-432 2317.0842,-432 2317.0842,-432 2323.0842,-432 2329.0842,-438 2329.0842,-444 2329.0842,-444 2329.0842,-456 2329.0842,-456 2329.0842,-462 2323.0842,-468 2317.0842,-468"/> +<text text-anchor="middle" x="2250.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="2250.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr13</text> +</g> +<!-- 4->33 --> +<g id="edge101" class="edge"> +<title>4->33</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.9003,-506.6083C1857.6347,-505.6286 1860.3853,-504.7404 1863.0842,-504 1990.0356,-469.1703 2027.0507,-488.5198 2157.0842,-468 2158.3634,-467.7981 2159.652,-467.5916 2160.948,-467.381"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2161.7196,-470.8006 2171.0021,-465.6931 2160.5606,-463.8972 2161.7196,-470.8006"/> +</g> +<!-- 34 --> +<g id="node35" class="node"> +<title>34</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M2748.5842,-396C2748.5842,-396 2659.5842,-396 2659.5842,-396 2653.5842,-396 2647.5842,-390 2647.5842,-384 2647.5842,-384 2647.5842,-372 2647.5842,-372 2647.5842,-366 2653.5842,-360 2659.5842,-360 2659.5842,-360 2748.5842,-360 2748.5842,-360 2754.5842,-360 2760.5842,-366 2760.5842,-372 2760.5842,-372 2760.5842,-384 2760.5842,-384 2760.5842,-390 2754.5842,-396 2748.5842,-396"/> +<text text-anchor="middle" x="2704.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="2704.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr14</text> +</g> +<!-- 4->34 --> +<g id="edge102" class="edge"> +<title>4->34</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8381,-506.3618C1857.5865,-505.4374 1860.3572,-504.6292 1863.0842,-504 1912.0053,-492.7121 2731.2971,-504.2016 2766.0842,-468 2785.2529,-448.0518 2762.4729,-421.6309 2739.3108,-402.5817"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2741.1929,-399.6089 2731.1703,-396.1739 2736.8632,-405.1093 2741.1929,-399.6089"/> +</g> +<!-- 35 --> +<g id="node36" class="node"> +<title>35</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M2745.0842,-468C2745.0842,-468 2611.0842,-468 2611.0842,-468 2605.0842,-468 2599.0842,-462 2599.0842,-456 2599.0842,-456 2599.0842,-444 2599.0842,-444 2599.0842,-438 2605.0842,-432 2611.0842,-432 2611.0842,-432 2745.0842,-432 2745.0842,-432 2751.0842,-432 2757.0842,-438 2757.0842,-444 2757.0842,-444 2757.0842,-456 2757.0842,-456 2757.0842,-462 2751.0842,-468 2745.0842,-468"/> +<text text-anchor="middle" x="2678.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="2678.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr14</text> +</g> +<!-- 4->35 --> +<g id="edge104" class="edge"> +<title>4->35</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8451,-506.3919C1857.5919,-505.4608 1860.3604,-504.6428 1863.0842,-504 2175.782,-430.2049 2266.1265,-506.6223 2585.0842,-468 2586.3699,-467.8443 2587.6645,-467.6812 2588.9662,-467.5112"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2589.6454,-470.95 2599.0566,-466.0839 2588.6649,-464.019 2589.6454,-470.95"/> +</g> +<!-- 36 --> +<g id="node37" class="node"> +<title>36</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M1951.5842,-396C1951.5842,-396 1862.5842,-396 1862.5842,-396 1856.5842,-396 1850.5842,-390 1850.5842,-384 1850.5842,-384 1850.5842,-372 1850.5842,-372 1850.5842,-366 1856.5842,-360 1862.5842,-360 1862.5842,-360 1951.5842,-360 1951.5842,-360 1957.5842,-360 1963.5842,-366 1963.5842,-372 1963.5842,-372 1963.5842,-384 1963.5842,-384 1963.5842,-390 1957.5842,-396 1951.5842,-396"/> +<text text-anchor="middle" x="1907.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="1907.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr15</text> +</g> +<!-- 4->36 --> +<g id="edge105" class="edge"> +<title>4->36</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.7267,-506.2617C1877.1003,-494.7229 1903.8253,-479.1841 1910.0842,-468 1920.5358,-449.324 1918.9517,-424.8861 1915.2152,-406.1891"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1918.5691,-405.1564 1912.9114,-396.1987 1911.7481,-406.7295 1918.5691,-405.1564"/> +</g> +<!-- 37 --> +<g id="node38" class="node"> +<title>37</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M1889.0842,-468C1889.0842,-468 1755.0842,-468 1755.0842,-468 1749.0842,-468 1743.0842,-462 1743.0842,-456 1743.0842,-456 1743.0842,-444 1743.0842,-444 1743.0842,-438 1749.0842,-432 1755.0842,-432 1755.0842,-432 1889.0842,-432 1889.0842,-432 1895.0842,-432 1901.0842,-438 1901.0842,-444 1901.0842,-444 1901.0842,-456 1901.0842,-456 1901.0842,-462 1895.0842,-468 1889.0842,-468"/> +<text text-anchor="middle" x="1822.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="1822.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr15</text> +</g> +<!-- 4->37 --> +<g id="edge107" class="edge"> +<title>4->37</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1822.0842,-503.8314C1822.0842,-496.131 1822.0842,-486.9743 1822.0842,-478.4166"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1825.5843,-478.4132 1822.0842,-468.4133 1818.5843,-478.4133 1825.5843,-478.4132"/> +</g> +<!-- 38 --> +<g id="node39" class="node"> +<title>38</title> +<path fill="none" stroke="#d8ac56" stroke-width="2" d="M2588.5842,-396C2588.5842,-396 2499.5842,-396 2499.5842,-396 2493.5842,-396 2487.5842,-390 2487.5842,-384 2487.5842,-384 2487.5842,-372 2487.5842,-372 2487.5842,-366 2493.5842,-360 2499.5842,-360 2499.5842,-360 2588.5842,-360 2588.5842,-360 2594.5842,-360 2600.5842,-366 2600.5842,-372 2600.5842,-372 2600.5842,-384 2600.5842,-384 2600.5842,-390 2594.5842,-396 2588.5842,-396"/> +<text text-anchor="middle" x="2544.0842" y="-381" font-family="sans" font-size="10.00" fill="#000000">pggb_on_chr</text> +<text text-anchor="middle" x="2544.0842" y="-370" font-family="sans" font-size="10.00" fill="#000000">chromosome: chr16</text> +</g> +<!-- 4->38 --> +<g id="edge108" class="edge"> +<title>4->38</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8468,-506.3991C1857.5932,-505.4663 1860.3612,-504.646 1863.0842,-504 1937.6736,-486.3035 2499.3105,-523.603 2552.0842,-468 2567.5118,-451.7453 2563.2289,-425.604 2556.4301,-405.673"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2559.6542,-404.303 2552.8517,-396.1804 2553.1041,-406.7722 2559.6542,-404.303"/> +</g> +<!-- 39 --> +<g id="node40" class="node"> +<title>39</title> +<path fill="none" stroke="#56d863" stroke-width="2" d="M2531.0842,-468C2531.0842,-468 2397.0842,-468 2397.0842,-468 2391.0842,-468 2385.0842,-462 2385.0842,-456 2385.0842,-456 2385.0842,-444 2385.0842,-444 2385.0842,-438 2391.0842,-432 2397.0842,-432 2397.0842,-432 2531.0842,-432 2531.0842,-432 2537.0842,-432 2543.0842,-438 2543.0842,-444 2543.0842,-444 2543.0842,-456 2543.0842,-456 2543.0842,-462 2537.0842,-468 2531.0842,-468"/> +<text text-anchor="middle" x="2464.0842" y="-453" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="2464.0842" y="-442" font-family="sans" font-size="10.00" fill="#000000">sample: data/chrInputs/chr16</text> +</g> +<!-- 4->39 --> +<g id="edge110" class="edge"> +<title>4->39</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1854.8604,-506.455C1857.6037,-505.5097 1860.3673,-504.6713 1863.0842,-504 2082.8208,-449.7098 2146.6785,-497.5587 2371.0842,-468 2372.3682,-467.8309 2373.6612,-467.6551 2374.9614,-467.4733"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2375.6678,-470.9068 2385.0422,-465.9701 2374.6353,-463.9833 2375.6678,-470.9068"/> </g> <!-- 5 --> <g id="node6" class="node"> <title>5</title> -<path fill="none" stroke="#8fd856" stroke-width="2" d="M364.1904,-684C364.1904,-684 266.1904,-684 266.1904,-684 260.1904,-684 254.1904,-678 254.1904,-672 254.1904,-672 254.1904,-660 254.1904,-660 254.1904,-654 260.1904,-648 266.1904,-648 266.1904,-648 364.1904,-648 364.1904,-648 370.1904,-648 376.1904,-654 376.1904,-660 376.1904,-660 376.1904,-672 376.1904,-672 376.1904,-678 370.1904,-684 364.1904,-684"/> -<text text-anchor="middle" x="315.1904" y="-669" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> -<text text-anchor="middle" x="315.1904" y="-658" font-family="sans" font-size="10.00" fill="#000000">haplotype: BANI-C-12</text> +<path fill="none" stroke="#80d856" stroke-width="2" d="M1807.0842,-612C1807.0842,-612 1685.0842,-612 1685.0842,-612 1679.0842,-612 1673.0842,-606 1673.0842,-600 1673.0842,-600 1673.0842,-588 1673.0842,-588 1673.0842,-582 1679.0842,-576 1685.0842,-576 1685.0842,-576 1807.0842,-576 1807.0842,-576 1813.0842,-576 1819.0842,-582 1819.0842,-588 1819.0842,-588 1819.0842,-600 1819.0842,-600 1819.0842,-606 1813.0842,-612 1807.0842,-612"/> +<text text-anchor="middle" x="1746.0842" y="-597" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> +<text text-anchor="middle" x="1746.0842" y="-586" font-family="sans" font-size="10.00" fill="#000000">haplotype: CICC1445.hap1</text> </g> <!-- 5->4 --> -<g id="edge16" class="edge"> +<g id="edge59" class="edge"> <title>5->4</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M376.2116,-650.0315C379.2429,-649.3253 382.2485,-648.6439 385.1904,-648 475.5562,-628.2212 582.4638,-610.1234 640.4953,-600.7379"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="641.0886,-604.1876 650.4054,-599.1431 639.9763,-597.2765 641.0886,-604.1876"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1765.2622,-575.8314C1774.443,-567.1337 1785.5848,-556.5783 1795.5617,-547.1265"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1798.0599,-549.5811 1802.9123,-540.1628 1793.2456,-544.4995 1798.0599,-549.5811"/> +</g> +<!-- 77 --> +<g id="node78" class="node"> +<title>77</title> +<path fill="none" stroke="#d87556" stroke-width="2" d="M1759.5842,-540C1759.5842,-540 1654.5842,-540 1654.5842,-540 1648.5842,-540 1642.5842,-534 1642.5842,-528 1642.5842,-528 1642.5842,-516 1642.5842,-516 1642.5842,-510 1648.5842,-504 1654.5842,-504 1654.5842,-504 1759.5842,-504 1759.5842,-504 1765.5842,-504 1771.5842,-510 1771.5842,-516 1771.5842,-516 1771.5842,-528 1771.5842,-528 1771.5842,-534 1765.5842,-540 1759.5842,-540"/> +<text text-anchor="middle" x="1707.0842" y="-519.5" font-family="sans" font-size="10.00" fill="#000000">create_sglAsm_syri_fig</text> +</g> +<!-- 5->77 --> +<g id="edge166" class="edge"> +<title>5->77</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1736.2428,-575.8314C1731.8884,-567.7925 1726.6744,-558.1666 1721.8672,-549.2918"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1724.8984,-547.5392 1717.058,-540.4133 1718.7434,-550.8732 1724.8984,-547.5392"/> +</g> +<!-- 95 --> +<g id="node96" class="node"> +<title>95</title> +<path fill="none" stroke="#d88d56" stroke-width="2" d="M1987.5842,-540C1987.5842,-540 1884.5842,-540 1884.5842,-540 1878.5842,-540 1872.5842,-534 1872.5842,-528 1872.5842,-528 1872.5842,-516 1872.5842,-516 1872.5842,-510 1878.5842,-504 1884.5842,-504 1884.5842,-504 1987.5842,-504 1987.5842,-504 1993.5842,-504 1999.5842,-510 1999.5842,-516 1999.5842,-516 1999.5842,-528 1999.5842,-528 1999.5842,-534 1993.5842,-540 1987.5842,-540"/> +<text text-anchor="middle" x="1936.0842" y="-519.5" font-family="sans" font-size="10.00" fill="#000000">create_allAsm_syri_fig</text> +</g> +<!-- 5->95 --> +<g id="edge186" class="edge"> +<title>5->95</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1794.0292,-575.8314C1819.8923,-566.0306 1851.9804,-553.8709 1879.1121,-543.5894"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1880.3731,-546.8545 1888.4839,-540.038 1877.8925,-540.3087 1880.3731,-546.8545"/> </g> <!-- 6 --> <g id="node7" class="node"> <title>6</title> -<path fill="none" stroke="#d85656" stroke-width="2" d="M762.6904,-756C762.6904,-756 603.6904,-756 603.6904,-756 597.6904,-756 591.6904,-750 591.6904,-744 591.6904,-744 591.6904,-732 591.6904,-732 591.6904,-726 597.6904,-720 603.6904,-720 603.6904,-720 762.6904,-720 762.6904,-720 768.6904,-720 774.6904,-726 774.6904,-732 774.6904,-732 774.6904,-744 774.6904,-744 774.6904,-750 768.6904,-756 762.6904,-756"/> -<text text-anchor="middle" x="683.1904" y="-741" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> -<text text-anchor="middle" x="683.1904" y="-730" font-family="sans" font-size="10.00" fill="#000000">sample: data/haplotypes/TAIR10.1</text> +<path fill="none" stroke="#56d863" stroke-width="2" stroke-dasharray="5,2" d="M1977.0842,-684C1977.0842,-684 1815.0842,-684 1815.0842,-684 1809.0842,-684 1803.0842,-678 1803.0842,-672 1803.0842,-672 1803.0842,-660 1803.0842,-660 1803.0842,-654 1809.0842,-648 1815.0842,-648 1815.0842,-648 1977.0842,-648 1977.0842,-648 1983.0842,-648 1989.0842,-654 1989.0842,-660 1989.0842,-660 1989.0842,-672 1989.0842,-672 1989.0842,-678 1983.0842,-684 1977.0842,-684"/> +<text text-anchor="middle" x="1896.0842" y="-669" font-family="sans" font-size="10.00" fill="#000000">samtools_index</text> +<text text-anchor="middle" x="1896.0842" y="-658" font-family="sans" font-size="10.00" fill="#000000">sample: data/haplotypes/R64.hap1</text> </g> <!-- 6->5 --> -<g id="edge22" class="edge"> +<g id="edge62" class="edge"> <title>6->5</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M591.5529,-723.1609C534.9784,-713.5834 460.7202,-700.2675 386.2429,-684.1556"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="386.7276,-680.6791 376.2116,-681.9685 385.2365,-687.5184 386.7276,-680.6791"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1858.2328,-647.8314C1838.3495,-638.2874 1813.806,-626.5065 1792.7536,-616.4013"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1794.1931,-613.21 1783.6633,-612.038 1791.164,-619.5207 1794.1931,-613.21"/> </g> <!-- 7 --> <g id="node8" class="node"> <title>7</title> -<path fill="none" stroke="#8fd856" stroke-width="2" d="M508.1904,-684C508.1904,-684 406.1904,-684 406.1904,-684 400.1904,-684 394.1904,-678 394.1904,-672 394.1904,-672 394.1904,-660 394.1904,-660 394.1904,-654 400.1904,-648 406.1904,-648 406.1904,-648 508.1904,-648 508.1904,-648 514.1904,-648 520.1904,-654 520.1904,-660 520.1904,-660 520.1904,-672 520.1904,-672 520.1904,-678 514.1904,-684 508.1904,-684"/> -<text text-anchor="middle" x="457.1904" y="-669" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> -<text text-anchor="middle" x="457.1904" y="-658" font-family="sans" font-size="10.00" fill="#000000">haplotype: BROU-A-10</text> +<path fill="none" stroke="#80d856" stroke-width="2" d="M1942.5842,-612C1942.5842,-612 1849.5842,-612 1849.5842,-612 1843.5842,-612 1837.5842,-606 1837.5842,-600 1837.5842,-600 1837.5842,-588 1837.5842,-588 1837.5842,-582 1843.5842,-576 1849.5842,-576 1849.5842,-576 1942.5842,-576 1942.5842,-576 1948.5842,-576 1954.5842,-582 1954.5842,-588 1954.5842,-588 1954.5842,-600 1954.5842,-600 1954.5842,-606 1948.5842,-612 1942.5842,-612"/> +<text text-anchor="middle" x="1896.0842" y="-597" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> +<text text-anchor="middle" x="1896.0842" y="-586" font-family="sans" font-size="10.00" fill="#000000">haplotype: R64.hap1</text> </g> <!-- 6->7 --> -<g id="edge23" class="edge"> +<g id="edge63" class="edge"> <title>6->7</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M626.4527,-719.9243C595.2886,-709.9959 556.4593,-697.6255 523.8548,-687.2382"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="524.542,-683.7839 513.9513,-684.0831 522.417,-690.4536 524.542,-683.7839"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1896.0842,-647.8314C1896.0842,-640.131 1896.0842,-630.9743 1896.0842,-622.4166"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1899.5843,-622.4132 1896.0842,-612.4133 1892.5843,-622.4133 1899.5843,-622.4132"/> </g> <!-- 8 --> <g id="node9" class="node"> <title>8</title> -<path fill="none" stroke="#8fd856" stroke-width="2" d="M670.1904,-684C670.1904,-684 550.1904,-684 550.1904,-684 544.1904,-684 538.1904,-678 538.1904,-672 538.1904,-672 538.1904,-660 538.1904,-660 538.1904,-654 544.1904,-648 550.1904,-648 550.1904,-648 670.1904,-648 670.1904,-648 676.1904,-648 682.1904,-654 682.1904,-660 682.1904,-660 682.1904,-672 682.1904,-672 682.1904,-678 676.1904,-684 670.1904,-684"/> -<text text-anchor="middle" x="610.1904" y="-669" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> -<text text-anchor="middle" x="610.1904" y="-658" font-family="sans" font-size="10.00" fill="#000000">haplotype: IP-Hum-2.9549</text> +<path fill="none" stroke="#80d856" stroke-width="2" d="M2077.5842,-612C2077.5842,-612 1984.5842,-612 1984.5842,-612 1978.5842,-612 1972.5842,-606 1972.5842,-600 1972.5842,-600 1972.5842,-588 1972.5842,-588 1972.5842,-582 1978.5842,-576 1984.5842,-576 1984.5842,-576 2077.5842,-576 2077.5842,-576 2083.5842,-576 2089.5842,-582 2089.5842,-588 2089.5842,-588 2089.5842,-600 2089.5842,-600 2089.5842,-606 2083.5842,-612 2077.5842,-612"/> +<text text-anchor="middle" x="2031.0842" y="-597" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> +<text text-anchor="middle" x="2031.0842" y="-586" font-family="sans" font-size="10.00" fill="#000000">haplotype: SX2.hap1</text> </g> <!-- 6->8 --> -<g id="edge24" class="edge"> +<g id="edge64" class="edge"> <title>6->8</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M664.7694,-719.8314C656.0374,-711.219 645.4586,-700.7851 635.9481,-691.4048"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="638.1829,-688.6931 628.6055,-684.1628 633.2674,-693.6769 638.1829,-688.6931"/> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1930.1504,-647.8314C1947.7375,-638.4516 1969.3757,-626.9112 1988.101,-616.9244"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1989.8524,-619.957 1997.0289,-612.1628 1986.5583,-613.7805 1989.8524,-619.957"/> </g> -<!-- 9 --> -<g id="node10" class="node"> -<title>9</title> -<path fill="none" stroke="#8fd856" stroke-width="2" d="M800.1904,-684C800.1904,-684 712.1904,-684 712.1904,-684 706.1904,-684 700.1904,-678 700.1904,-672 700.1904,-672 700.1904,-660 700.1904,-660 700.1904,-654 706.1904,-648 712.1904,-648 712.1904,-648 800.1904,-648 800.1904,-648 806.1904,-648 812.1904,-654 812.1904,-660 812.1904,-660 812.1904,-672 812.1904,-672 812.1904,-678 806.1904,-684 800.1904,-684"/> -<text text-anchor="middle" x="756.1904" y="-669" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> -<text text-anchor="middle" x="756.1904" y="-658" font-family="sans" font-size="10.00" fill="#000000">haplotype: IP-Met-6</text> +<!-- 7->4 --> +<g id="edge60" class="edge"> +<title>7->4</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1877.4108,-575.8314C1868.5593,-567.219 1857.8356,-556.7851 1848.1947,-547.4048"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1850.3596,-544.6279 1840.7515,-540.1628 1845.4781,-549.645 1850.3596,-544.6279"/> +</g> +<!-- 7->77 --> +<g id="edge165" class="edge"> +<title>7->77</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1848.3915,-575.8314C1822.7768,-566.0734 1791.0239,-553.977 1764.1102,-543.7242"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1765.0248,-540.3273 1754.4339,-540.038 1762.5328,-546.8687 1765.0248,-540.3273"/> +</g> +<!-- 78 --> +<g id="node79" class="node"> +<title>78</title> +<path fill="none" stroke="#d87556" stroke-width="2" d="M2134.5842,-540C2134.5842,-540 2029.5842,-540 2029.5842,-540 2023.5842,-540 2017.5842,-534 2017.5842,-528 2017.5842,-528 2017.5842,-516 2017.5842,-516 2017.5842,-510 2023.5842,-504 2029.5842,-504 2029.5842,-504 2134.5842,-504 2134.5842,-504 2140.5842,-504 2146.5842,-510 2146.5842,-516 2146.5842,-516 2146.5842,-528 2146.5842,-528 2146.5842,-534 2140.5842,-540 2134.5842,-540"/> +<text text-anchor="middle" x="2082.0842" y="-519.5" font-family="sans" font-size="10.00" fill="#000000">create_sglAsm_syri_fig</text> +</g> +<!-- 7->78 --> +<g id="edge167" class="edge"> +<title>7->78</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1943.0198,-575.8314C1968.2279,-566.0734 1999.4768,-553.977 2025.9633,-543.7242"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2027.4238,-546.912 2035.486,-540.038 2024.8968,-540.384 2027.4238,-546.912"/> +</g> +<!-- 7->95 --> +<g id="edge185" class="edge"> +<title>7->95</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1906.1779,-575.8314C1910.6439,-567.7925 1915.9916,-558.1666 1920.9221,-549.2918"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1924.0577,-550.8546 1925.8546,-540.4133 1917.9385,-547.4551 1924.0577,-550.8546"/> </g> -<!-- 6->9 --> -<g id="edge25" class="edge"> -<title>6->9</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M701.6114,-719.8314C710.3433,-711.219 720.9221,-700.7851 730.4327,-691.4048"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="733.1133,-693.6769 737.7753,-684.1628 728.1978,-688.6931 733.1133,-693.6769"/> +<!-- 8->4 --> +<g id="edge61" class="edge"> +<title>8->4</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1972.2619,-576.7146C1942.1335,-567.4861 1904.7595,-555.4643 1864.1738,-540.2608"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1865.2245,-536.9163 1854.633,-536.65 1862.7467,-543.4631 1865.2245,-536.9163"/> +</g> +<!-- 8->78 --> +<g id="edge168" class="edge"> +<title>8->78</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2043.9536,-575.8314C2049.7677,-567.6232 2056.7538,-557.7606 2063.1488,-548.7323"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2066.1173,-550.5966 2069.0414,-540.4133 2060.4051,-546.5505 2066.1173,-550.5966"/> +</g> +<!-- 8->95 --> +<g id="edge187" class="edge"> +<title>8->95</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2007.1117,-575.8314C1995.2981,-566.8779 1980.887,-555.9558 1968.1407,-546.2955"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1970.1328,-543.4137 1960.049,-540.1628 1965.9046,-548.9925 1970.1328,-543.4137"/> +</g> +<!-- 9->3 --> +<g id="edge58" class="edge"> +<title>9->3</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2900.4115,-431.8314C2904.0572,-423.8771 2908.415,-414.369 2912.4469,-405.5723"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2915.6599,-406.9622 2916.6448,-396.4133 2909.2964,-404.0456 2915.6599,-406.9622"/> +</g> +<!-- 10->2 --> +<g id="edge42" class="edge"> +<title>10->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M798.6735,-373.9094C852.3166,-370.0903 935.1637,-364.3433 1007.0842,-360 1306.2246,-341.9347 1387.0361,-371.4709 1687.0624,-323.9423"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1688.0497,-327.3289 1697.371,-322.2928 1686.9436,-320.4169 1688.0497,-327.3289"/> +</g> +<!-- 45 --> +<g id="node46" class="node"> +<title>45</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M995.0842,-324C995.0842,-324 945.0842,-324 945.0842,-324 939.0842,-324 933.0842,-318 933.0842,-312 933.0842,-312 933.0842,-300 933.0842,-300 933.0842,-294 939.0842,-288 945.0842,-288 945.0842,-288 995.0842,-288 995.0842,-288 1001.0842,-288 1007.0842,-294 1007.0842,-300 1007.0842,-300 1007.0842,-312 1007.0842,-312 1007.0842,-318 1001.0842,-324 995.0842,-324"/> +<text text-anchor="middle" x="970.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 10->45 --> +<g id="edge133" class="edge"> +<title>10->45</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M798.6355,-362.5536C832.4341,-353.0156 876.3671,-340.0851 923.2887,-324.1478"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="924.7012,-327.3637 933.0268,-320.8112 922.4322,-320.7416 924.7012,-327.3637"/> +</g> +<!-- 62 --> +<g id="node63" class="node"> +<title>62</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M748.0842,-252C748.0842,-252 686.0842,-252 686.0842,-252 680.0842,-252 674.0842,-246 674.0842,-240 674.0842,-240 674.0842,-228 674.0842,-228 674.0842,-222 680.0842,-216 686.0842,-216 686.0842,-216 748.0842,-216 748.0842,-216 754.0842,-216 760.0842,-222 760.0842,-228 760.0842,-228 760.0842,-240 760.0842,-240 760.0842,-246 754.0842,-252 748.0842,-252"/> +<text text-anchor="middle" x="717.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 10->62 --> +<g id="edge150" class="edge"> +<title>10->62</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M685.2759,-360.7125C655.5419,-350.3947 623.5766,-336.8391 615.0842,-324 606.2573,-310.6551 606.8313,-301.7073 615.0842,-288 626.0475,-269.791 645.4386,-257.4006 664.3906,-249.1332"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="665.9534,-252.2768 673.9161,-245.2878 663.333,-245.7858 665.9534,-252.2768"/> +</g> +<!-- 80 --> +<g id="node81" class="node"> +<title>80</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M909.5842,-252C909.5842,-252 866.5842,-252 866.5842,-252 860.5842,-252 854.5842,-246 854.5842,-240 854.5842,-240 854.5842,-228 854.5842,-228 854.5842,-222 860.5842,-216 866.5842,-216 866.5842,-216 909.5842,-216 909.5842,-216 915.5842,-216 921.5842,-222 921.5842,-228 921.5842,-228 921.5842,-240 921.5842,-240 921.5842,-246 915.5842,-252 909.5842,-252"/> +<text text-anchor="middle" x="888.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 10->80 --> +<g id="edge170" class="edge"> +<title>10->80</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M689.4217,-359.9237C673.2643,-351.618 657.3235,-339.9631 648.0842,-324 640.0692,-310.1523 638.089,-300.4939 648.0842,-288 660.3351,-272.6864 778.5517,-251.5494 844.372,-240.8283"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="845.1472,-244.2486 854.4616,-239.1996 844.0316,-237.338 845.1472,-244.2486"/> +</g> +<!-- 11->10 --> +<g id="edge67" class="edge"> +<title>11->10</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M777.9717,-431.8314C772.5561,-423.7079 766.06,-413.9637 760.092,-405.0118"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="762.8189,-402.7923 754.3597,-396.4133 756.9945,-406.6753 762.8189,-402.7923"/> +</g> +<!-- 12->2 --> +<g id="edge43" class="edge"> +<title>12->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3046.3576,-367.5177C3028.419,-364.5922 3008.4768,-361.7407 2990.0842,-360 2475.4402,-311.2924 2336.3656,-399.839 1820.7132,-323.8508"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1821.1907,-320.3834 1810.7847,-322.3743 1820.161,-327.3073 1821.1907,-320.3834"/> +</g> +<!-- 46 --> +<g id="node47" class="node"> +<title>46</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M2671.0842,-324C2671.0842,-324 2621.0842,-324 2621.0842,-324 2615.0842,-324 2609.0842,-318 2609.0842,-312 2609.0842,-312 2609.0842,-300 2609.0842,-300 2609.0842,-294 2615.0842,-288 2621.0842,-288 2621.0842,-288 2671.0842,-288 2671.0842,-288 2677.0842,-288 2683.0842,-294 2683.0842,-300 2683.0842,-300 2683.0842,-312 2683.0842,-312 2683.0842,-318 2677.0842,-324 2671.0842,-324"/> +<text text-anchor="middle" x="2646.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 12->46 --> +<g id="edge134" class="edge"> +<title>12->46</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3046.5019,-368.7553C3028.4814,-365.8731 3008.4559,-362.7348 2990.0842,-360 2874.6976,-342.8234 2844.9738,-344.2353 2730.0842,-324 2718.0352,-321.8778 2705.083,-319.2675 2693.0437,-316.6997"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2693.6995,-313.2607 2683.1852,-314.5645 2692.2177,-320.1021 2693.6995,-313.2607"/> +</g> +<!-- 63 --> +<g id="node64" class="node"> +<title>63</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M3137.0842,-108C3137.0842,-108 3075.0842,-108 3075.0842,-108 3069.0842,-108 3063.0842,-102 3063.0842,-96 3063.0842,-96 3063.0842,-84 3063.0842,-84 3063.0842,-78 3069.0842,-72 3075.0842,-72 3075.0842,-72 3137.0842,-72 3137.0842,-72 3143.0842,-72 3149.0842,-78 3149.0842,-84 3149.0842,-84 3149.0842,-96 3149.0842,-96 3149.0842,-102 3143.0842,-108 3137.0842,-108"/> +<text text-anchor="middle" x="3106.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 12->63 --> +<g id="edge151" class="edge"> +<title>12->63</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3109.5769,-359.9451C3117.8989,-335.7536 3131.8741,-291.3067 3137.0842,-252 3143.3654,-204.6125 3128.2732,-150.1416 3117.0113,-117.9751"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3120.2212,-116.5599 3113.5213,-108.3524 3113.6406,-118.9466 3120.2212,-116.5599"/> +</g> +<!-- 81 --> +<g id="node82" class="node"> +<title>81</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M3116.5842,-252C3116.5842,-252 3073.5842,-252 3073.5842,-252 3067.5842,-252 3061.5842,-246 3061.5842,-240 3061.5842,-240 3061.5842,-228 3061.5842,-228 3061.5842,-222 3067.5842,-216 3073.5842,-216 3073.5842,-216 3116.5842,-216 3116.5842,-216 3122.5842,-216 3128.5842,-222 3128.5842,-228 3128.5842,-228 3128.5842,-240 3128.5842,-240 3128.5842,-246 3122.5842,-252 3116.5842,-252"/> +<text text-anchor="middle" x="3095.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 12->81 --> +<g id="edge171" class="edge"> +<title>12->81</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3102.071,-359.7623C3100.7065,-335.201 3098.2646,-291.2474 3096.6594,-262.3541"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3100.1386,-261.88 3096.0891,-252.0896 3093.1493,-262.2684 3100.1386,-261.88"/> +</g> +<!-- 13->12 --> +<g id="edge70" class="edge"> +<title>13->12</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3105.3271,-431.8314C3105.0063,-424.131 3104.6248,-414.9743 3104.2682,-406.4166"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3107.7648,-406.2589 3103.8514,-396.4133 3100.7708,-406.5503 3107.7648,-406.2589"/> +</g> +<!-- 14->2 --> +<g id="edge44" class="edge"> +<title>14->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1268.0082,-371.7919C1381.2656,-359.4102 1628.3873,-332.2334 1687.1749,-323.7089"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1688.0163,-327.1186 1697.3321,-322.0722 1686.9027,-320.2077 1688.0163,-327.1186"/> +</g> +<!-- 47 --> +<g id="node48" class="node"> +<title>47</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M1407.0842,-324C1407.0842,-324 1357.0842,-324 1357.0842,-324 1351.0842,-324 1345.0842,-318 1345.0842,-312 1345.0842,-312 1345.0842,-300 1345.0842,-300 1345.0842,-294 1351.0842,-288 1357.0842,-288 1357.0842,-288 1407.0842,-288 1407.0842,-288 1413.0842,-288 1419.0842,-294 1419.0842,-300 1419.0842,-300 1419.0842,-312 1419.0842,-312 1419.0842,-318 1413.0842,-324 1407.0842,-324"/> +<text text-anchor="middle" x="1382.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 14->47 --> +<g id="edge135" class="edge"> +<title>14->47</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1254.2347,-359.8314C1279.0629,-349.3774 1310.2652,-336.2396 1335.6292,-325.56"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1337.1808,-328.7043 1345.039,-321.598 1334.4644,-322.2529 1337.1808,-328.7043"/> +</g> +<!-- 64 --> +<g id="node65" class="node"> +<title>64</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M1226.0842,-180C1226.0842,-180 1164.0842,-180 1164.0842,-180 1158.0842,-180 1152.0842,-174 1152.0842,-168 1152.0842,-168 1152.0842,-156 1152.0842,-156 1152.0842,-150 1158.0842,-144 1164.0842,-144 1164.0842,-144 1226.0842,-144 1226.0842,-144 1232.0842,-144 1238.0842,-150 1238.0842,-156 1238.0842,-156 1238.0842,-168 1238.0842,-168 1238.0842,-174 1232.0842,-180 1226.0842,-180"/> +<text text-anchor="middle" x="1195.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 14->64 --> +<g id="edge152" class="edge"> +<title>14->64</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1171.4894,-359.8102C1157.3366,-351.1243 1142.9539,-339.2457 1135.0842,-324 1126.6915,-307.7414 1133.5695,-232.2025 1141.0842,-216 1146.1322,-205.116 1154.3588,-195.1792 1162.8861,-186.8801"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1165.365,-189.356 1170.3848,-180.0257 1160.6423,-184.1892 1165.365,-189.356"/> +</g> +<!-- 82 --> +<g id="node83" class="node"> +<title>82</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M1283.5842,-108C1283.5842,-108 1240.5842,-108 1240.5842,-108 1234.5842,-108 1228.5842,-102 1228.5842,-96 1228.5842,-96 1228.5842,-84 1228.5842,-84 1228.5842,-78 1234.5842,-72 1240.5842,-72 1240.5842,-72 1283.5842,-72 1283.5842,-72 1289.5842,-72 1295.5842,-78 1295.5842,-84 1295.5842,-84 1295.5842,-96 1295.5842,-96 1295.5842,-102 1289.5842,-108 1283.5842,-108"/> +<text text-anchor="middle" x="1262.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 14->82 --> +<g id="edge172" class="edge"> +<title>14->82</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1200.0483,-359.5694C1182.6807,-327.9328 1153.6345,-262.2402 1181.0842,-216 1198.1404,-187.268 1227.7162,-207.2273 1247.0842,-180 1259.7309,-162.2214 1263.1112,-137.5211 1263.5353,-118.4935"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1267.0347,-118.3017 1263.4992,-108.3143 1260.0348,-118.3266 1267.0347,-118.3017"/> +</g> +<!-- 15->14 --> +<g id="edge73" class="edge"> +<title>15->14</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1216.3178,-431.8314C1215.5691,-424.131 1214.6789,-414.9743 1213.8469,-406.4166"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1217.3257,-406.0276 1212.8743,-396.4133 1210.3585,-406.7051 1217.3257,-406.0276"/> +</g> +<!-- 16->2 --> +<g id="edge45" class="edge"> +<title>16->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1646.4215,-359.8314C1665.4238,-350.3302 1688.86,-338.6121 1709.0094,-328.5374"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1710.6292,-331.6407 1718.0082,-324.038 1707.4986,-325.3797 1710.6292,-331.6407"/> +</g> +<!-- 48 --> +<g id="node49" class="node"> +<title>48</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M1667.0842,-324C1667.0842,-324 1617.0842,-324 1617.0842,-324 1611.0842,-324 1605.0842,-318 1605.0842,-312 1605.0842,-312 1605.0842,-300 1605.0842,-300 1605.0842,-294 1611.0842,-288 1617.0842,-288 1617.0842,-288 1667.0842,-288 1667.0842,-288 1673.0842,-288 1679.0842,-294 1679.0842,-300 1679.0842,-300 1679.0842,-312 1679.0842,-312 1679.0842,-318 1673.0842,-324 1667.0842,-324"/> +<text text-anchor="middle" x="1642.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 16->48 --> +<g id="edge136" class="edge"> +<title>16->48</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1618.1591,-359.8314C1621.6943,-351.8771 1625.9202,-342.369 1629.8298,-333.5723"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1633.0374,-334.9729 1633.9005,-324.4133 1626.6407,-332.1299 1633.0374,-334.9729"/> +</g> +<!-- 65 --> +<g id="node66" class="node"> +<title>65</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M1479.0842,-252C1479.0842,-252 1417.0842,-252 1417.0842,-252 1411.0842,-252 1405.0842,-246 1405.0842,-240 1405.0842,-240 1405.0842,-228 1405.0842,-228 1405.0842,-222 1411.0842,-216 1417.0842,-216 1417.0842,-216 1479.0842,-216 1479.0842,-216 1485.0842,-216 1491.0842,-222 1491.0842,-228 1491.0842,-228 1491.0842,-240 1491.0842,-240 1491.0842,-246 1485.0842,-252 1479.0842,-252"/> +<text text-anchor="middle" x="1448.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 16->65 --> +<g id="edge153" class="edge"> +<title>16->65</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1553.2569,-370.1939C1523.1022,-363.1103 1487.8779,-349.6285 1466.0842,-324 1451.6262,-306.998 1447.6006,-281.6597 1446.9197,-262.1964"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1450.4187,-262.0504 1446.8405,-252.0781 1443.4189,-262.1052 1450.4187,-262.0504"/> +</g> +<!-- 83 --> +<g id="node84" class="node"> +<title>83</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M1531.5842,-180C1531.5842,-180 1488.5842,-180 1488.5842,-180 1482.5842,-180 1476.5842,-174 1476.5842,-168 1476.5842,-168 1476.5842,-156 1476.5842,-156 1476.5842,-150 1482.5842,-144 1488.5842,-144 1488.5842,-144 1531.5842,-144 1531.5842,-144 1537.5842,-144 1543.5842,-150 1543.5842,-156 1543.5842,-156 1543.5842,-168 1543.5842,-168 1543.5842,-174 1537.5842,-180 1531.5842,-180"/> +<text text-anchor="middle" x="1510.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 16->83 --> +<g id="edge173" class="edge"> +<title>16->83</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1601.7302,-359.9555C1584.1935,-322.0762 1543.4554,-234.0818 1522.711,-189.274"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1525.8621,-187.7493 1518.4847,-180.1451 1519.5098,-190.6902 1525.8621,-187.7493"/> +</g> +<!-- 17->16 --> +<g id="edge76" class="edge"> +<title>17->16</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1636.9998,-431.8314C1633.0227,-423.8771 1628.2687,-414.369 1623.8703,-405.5723"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1626.8935,-403.7923 1619.2908,-396.4133 1620.6325,-406.9228 1626.8935,-403.7923"/> +</g> +<!-- 18->2 --> +<g id="edge46" class="edge"> +<title>18->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3192.2368,-363.9287C3184.1711,-362.3534 3175.9477,-360.9696 3168.0842,-360 2576.6042,-287.0683 2414.8047,-410.0776 1820.8854,-323.8698"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1821.1843,-320.3763 1810.7824,-322.3893 1820.1692,-327.3023 1821.1843,-320.3763"/> +</g> +<!-- 49 --> +<g id="node50" class="node"> +<title>49</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M2801.0842,-324C2801.0842,-324 2751.0842,-324 2751.0842,-324 2745.0842,-324 2739.0842,-318 2739.0842,-312 2739.0842,-312 2739.0842,-300 2739.0842,-300 2739.0842,-294 2745.0842,-288 2751.0842,-288 2751.0842,-288 2801.0842,-288 2801.0842,-288 2807.0842,-288 2813.0842,-294 2813.0842,-300 2813.0842,-300 2813.0842,-312 2813.0842,-312 2813.0842,-318 2807.0842,-324 2801.0842,-324"/> +<text text-anchor="middle" x="2776.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 18->49 --> +<g id="edge137" class="edge"> +<title>18->49</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3192.5548,-364.8194C3184.3663,-363.0904 3176.0241,-361.4266 3168.0842,-360 3044.509,-337.7962 2897.5863,-319.7733 2823.6351,-311.2783"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2823.5977,-307.7514 2813.2652,-310.0948 2822.8038,-314.7063 2823.5977,-307.7514"/> +</g> +<!-- 66 --> +<g id="node67" class="node"> +<title>66</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M3241.0842,-108C3241.0842,-108 3179.0842,-108 3179.0842,-108 3173.0842,-108 3167.0842,-102 3167.0842,-96 3167.0842,-96 3167.0842,-84 3167.0842,-84 3167.0842,-78 3173.0842,-72 3179.0842,-72 3179.0842,-72 3241.0842,-72 3241.0842,-72 3247.0842,-72 3253.0842,-78 3253.0842,-84 3253.0842,-84 3253.0842,-96 3253.0842,-96 3253.0842,-102 3247.0842,-108 3241.0842,-108"/> +<text text-anchor="middle" x="3210.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 18->66 --> +<g id="edge154" class="edge"> +<title>18->66</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3246.6445,-359.9843C3240.0511,-311.2939 3221.8378,-176.7961 3213.8836,-118.0573"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3217.3332,-117.4487 3212.5229,-108.0089 3210.3965,-118.3881 3217.3332,-117.4487"/> +</g> +<!-- 84 --> +<g id="node85" class="node"> +<title>84</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M3299.5842,-252C3299.5842,-252 3256.5842,-252 3256.5842,-252 3250.5842,-252 3244.5842,-246 3244.5842,-240 3244.5842,-240 3244.5842,-228 3244.5842,-228 3244.5842,-222 3250.5842,-216 3256.5842,-216 3256.5842,-216 3299.5842,-216 3299.5842,-216 3305.5842,-216 3311.5842,-222 3311.5842,-228 3311.5842,-228 3311.5842,-240 3311.5842,-240 3311.5842,-246 3305.5842,-252 3299.5842,-252"/> +<text text-anchor="middle" x="3278.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 18->84 --> +<g id="edge174" class="edge"> +<title>18->84</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3252.757,-359.7623C3257.7252,-335.0928 3266.6332,-290.8598 3272.4507,-261.9731"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3275.8979,-262.5838 3274.4411,-252.0896 3269.0357,-261.2018 3275.8979,-262.5838"/> +</g> +<!-- 19->18 --> +<g id="edge79" class="edge"> +<title>19->18</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3302.1679,-431.8314C3293.74,-423.2848 3283.5432,-412.9443 3274.3482,-403.6198"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="3276.7553,-401.0761 3267.2417,-396.4133 3271.771,-405.9912 3276.7553,-401.0761"/> +</g> +<!-- 20->2 --> +<g id="edge47" class="edge"> +<title>20->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M341.0008,-364.4643C350.3378,-362.672 359.9468,-361.0831 369.0842,-360 948.0354,-291.3742 1106.1,-408.3771 1687.0688,-323.9019"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1688.0001,-327.3028 1697.3856,-322.3871 1686.9832,-320.377 1688.0001,-327.3028"/> +</g> +<!-- 50 --> +<g id="node51" class="node"> +<title>50</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M719.0842,-324C719.0842,-324 669.0842,-324 669.0842,-324 663.0842,-324 657.0842,-318 657.0842,-312 657.0842,-312 657.0842,-300 657.0842,-300 657.0842,-294 663.0842,-288 669.0842,-288 669.0842,-288 719.0842,-288 719.0842,-288 725.0842,-288 731.0842,-294 731.0842,-300 731.0842,-300 731.0842,-312 731.0842,-312 731.0842,-318 725.0842,-324 719.0842,-324"/> +<text text-anchor="middle" x="694.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 20->50 --> +<g id="edge138" class="edge"> +<title>20->50</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M340.7097,-365.6461C350.1703,-363.6863 359.8944,-361.7356 369.0842,-360 467.5776,-341.3981 583.5209,-322.9593 646.869,-313.1772"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="647.5967,-316.6065 656.9477,-311.6255 646.5315,-309.688 647.5967,-316.6065"/> +</g> +<!-- 67 --> +<g id="node68" class="node"> +<title>67</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M295.0842,-180C295.0842,-180 233.0842,-180 233.0842,-180 227.0842,-180 221.0842,-174 221.0842,-168 221.0842,-168 221.0842,-156 221.0842,-156 221.0842,-150 227.0842,-144 233.0842,-144 233.0842,-144 295.0842,-144 295.0842,-144 301.0842,-144 307.0842,-150 307.0842,-156 307.0842,-156 307.0842,-168 307.0842,-168 307.0842,-174 301.0842,-180 295.0842,-180"/> +<text text-anchor="middle" x="264.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 20->67 --> +<g id="edge155" class="edge"> +<title>20->67</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M282.4134,-359.9555C278.9281,-322.3144 270.8607,-235.1867 266.6883,-190.1246"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="270.1714,-189.7797 265.7643,-180.1451 263.2012,-190.4252 270.1714,-189.7797"/> +</g> +<!-- 85 --> +<g id="node86" class="node"> +<title>85</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M364.5842,-108C364.5842,-108 321.5842,-108 321.5842,-108 315.5842,-108 309.5842,-102 309.5842,-96 309.5842,-96 309.5842,-84 309.5842,-84 309.5842,-78 315.5842,-72 321.5842,-72 321.5842,-72 364.5842,-72 364.5842,-72 370.5842,-72 376.5842,-78 376.5842,-84 376.5842,-84 376.5842,-96 376.5842,-96 376.5842,-102 370.5842,-108 364.5842,-108"/> +<text text-anchor="middle" x="343.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 20->85 --> +<g id="edge175" class="edge"> +<title>20->85</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M287.7749,-359.9843C297.7496,-311.2939 325.303,-176.7961 337.3363,-118.0573"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="340.8166,-118.5079 339.3949,-108.0089 333.9591,-117.103 340.8166,-118.5079"/> +</g> +<!-- 21->20 --> +<g id="edge82" class="edge"> +<title>21->20</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M153.9917,-431.8314C177.3666,-422.159 206.2939,-410.1891 230.9309,-399.9944"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="232.5904,-403.0956 240.4924,-396.038 229.9139,-396.6275 232.5904,-403.0956"/> +</g> +<!-- 22->2 --> +<g id="edge48" class="edge"> +<title>22->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M491.8194,-366.6012C506.8053,-363.9981 523.0055,-361.5457 538.0842,-360 1043.4267,-308.1979 1180.5676,-398.5906 1687.2481,-323.8814"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1688.0079,-327.307 1697.3834,-322.3723 1686.9769,-320.3833 1688.0079,-327.307"/> +</g> +<!-- 51 --> +<g id="node52" class="node"> +<title>51</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M811.0842,-324C811.0842,-324 761.0842,-324 761.0842,-324 755.0842,-324 749.0842,-318 749.0842,-312 749.0842,-312 749.0842,-300 749.0842,-300 749.0842,-294 755.0842,-288 761.0842,-288 761.0842,-288 811.0842,-288 811.0842,-288 817.0842,-288 823.0842,-294 823.0842,-300 823.0842,-300 823.0842,-312 823.0842,-312 823.0842,-318 817.0842,-324 811.0842,-324"/> +<text text-anchor="middle" x="786.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 22->51 --> +<g id="edge139" class="edge"> +<title>22->51</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M491.7617,-368.0372C568.9033,-354.4685 701.0414,-331.1922 739.0687,-323.4631"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="739.8941,-326.8651 748.8887,-321.2661 738.3658,-320.0339 739.8941,-326.8651"/> +</g> +<!-- 68 --> +<g id="node69" class="node"> +<title>68</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M437.0842,-252C437.0842,-252 375.0842,-252 375.0842,-252 369.0842,-252 363.0842,-246 363.0842,-240 363.0842,-240 363.0842,-228 363.0842,-228 363.0842,-222 369.0842,-216 375.0842,-216 375.0842,-216 437.0842,-216 437.0842,-216 443.0842,-216 449.0842,-222 449.0842,-228 449.0842,-228 449.0842,-240 449.0842,-240 449.0842,-246 443.0842,-252 437.0842,-252"/> +<text text-anchor="middle" x="406.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 22->68 --> +<g id="edge156" class="edge"> +<title>22->68</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M431.4113,-359.7623C426.4431,-335.0928 417.5351,-290.8598 411.7176,-261.9731"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="415.1327,-261.2018 409.7272,-252.0896 408.2704,-262.5838 415.1327,-261.2018"/> +</g> +<!-- 86 --> +<g id="node87" class="node"> +<title>86</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M504.5842,-180C504.5842,-180 461.5842,-180 461.5842,-180 455.5842,-180 449.5842,-174 449.5842,-168 449.5842,-168 449.5842,-156 449.5842,-156 449.5842,-150 455.5842,-144 461.5842,-144 461.5842,-144 504.5842,-144 504.5842,-144 510.5842,-144 516.5842,-150 516.5842,-156 516.5842,-156 516.5842,-168 516.5842,-168 516.5842,-174 510.5842,-180 504.5842,-180"/> +<text text-anchor="middle" x="483.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 22->86 --> +<g id="edge176" class="edge"> +<title>22->86</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M439.0941,-359.9555C447.4588,-322.3144 466.8205,-235.1867 476.8343,-190.1246"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="480.2992,-190.6662 479.0519,-180.1451 473.4659,-189.1477 480.2992,-190.6662"/> +</g> +<!-- 23->22 --> +<g id="edge85" class="edge"> +<title>23->22</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M352.0942,-431.8314C366.1603,-422.7074 383.3782,-411.539 398.4775,-401.7449"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="400.5982,-404.5412 407.0831,-396.1628 396.7888,-398.6684 400.5982,-404.5412"/> +</g> +<!-- 24->2 --> +<g id="edge49" class="edge"> +<title>24->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M660.8549,-362.6404C665.9778,-361.6088 671.1085,-360.7025 676.0842,-360 1118.4622,-297.5382 1241.3408,-390.2822 1687.4534,-323.8531"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1688.0145,-327.3081 1697.381,-322.3566 1686.971,-320.3863 1688.0145,-327.3081"/> +</g> +<!-- 52 --> +<g id="node53" class="node"> +<title>52</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M903.0842,-324C903.0842,-324 853.0842,-324 853.0842,-324 847.0842,-324 841.0842,-318 841.0842,-312 841.0842,-312 841.0842,-300 841.0842,-300 841.0842,-294 847.0842,-288 853.0842,-288 853.0842,-288 903.0842,-288 903.0842,-288 909.0842,-288 915.0842,-294 915.0842,-300 915.0842,-300 915.0842,-312 915.0842,-312 915.0842,-318 909.0842,-324 903.0842,-324"/> +<text text-anchor="middle" x="878.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 24->52 --> +<g id="edge140" class="edge"> +<title>24->52</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M660.6575,-363.7535C665.87,-362.472 671.073,-361.2045 676.0842,-360 742.2964,-344.085 762.3928,-344.9126 831.2602,-324.0455"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="832.3099,-327.3845 840.8397,-321.1002 830.2527,-320.6936 832.3099,-327.3845"/> +</g> +<!-- 69 --> +<g id="node70" class="node"> +<title>69</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M700.0842,-108C700.0842,-108 638.0842,-108 638.0842,-108 632.0842,-108 626.0842,-102 626.0842,-96 626.0842,-96 626.0842,-84 626.0842,-84 626.0842,-78 632.0842,-72 638.0842,-72 638.0842,-72 700.0842,-72 700.0842,-72 706.0842,-72 712.0842,-78 712.0842,-84 712.0842,-84 712.0842,-96 712.0842,-96 712.0842,-102 706.0842,-108 700.0842,-108"/> +<text text-anchor="middle" x="669.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 24->69 --> +<g id="edge157" class="edge"> +<title>24->69</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M602.7007,-359.9331C601.6715,-341.6623 601.0548,-312.6747 605.0842,-288 615.3459,-225.1601 641.8137,-154.9958 657.3085,-117.3786"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="660.5585,-118.6787 661.1802,-108.1021 654.0985,-115.9825 660.5585,-118.6787"/> +</g> +<!-- 87 --> +<g id="node88" class="node"> +<title>87</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M560.5842,-252C560.5842,-252 517.5842,-252 517.5842,-252 511.5842,-252 505.5842,-246 505.5842,-240 505.5842,-240 505.5842,-228 505.5842,-228 505.5842,-222 511.5842,-216 517.5842,-216 517.5842,-216 560.5842,-216 560.5842,-216 566.5842,-216 572.5842,-222 572.5842,-228 572.5842,-228 572.5842,-240 572.5842,-240 572.5842,-246 566.5842,-252 560.5842,-252"/> +<text text-anchor="middle" x="539.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 24->87 --> +<g id="edge177" class="edge"> +<title>24->87</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M571.8062,-359.8412C559.1417,-350.8521 546.0026,-338.742 539.0842,-324 530.0947,-304.8448 530.6159,-280.7706 533.1012,-262.3419"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="536.5962,-262.6535 534.7345,-252.2235 529.6856,-261.538 536.5962,-262.6535"/> +</g> +<!-- 25->24 --> +<g id="edge88" class="edge"> +<title>25->24</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M554.7388,-431.8314C562.4956,-423.3694 571.8643,-413.1489 580.3452,-403.8971"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="583.0281,-406.1499 587.2053,-396.4133 577.868,-401.4198 583.0281,-406.1499"/> +</g> +<!-- 26->2 --> +<g id="edge50" class="edge"> +<title>26->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1129.8793,-362.8045C1134.9971,-361.7379 1140.1198,-360.7787 1145.0842,-360 1380.7589,-323.0326 1447.7306,-362.8993 1687.3002,-323.9106"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1688.0695,-327.3309 1697.3629,-322.2434 1686.9253,-320.4251 1688.0695,-327.3309"/> +</g> +<!-- 53 --> +<g id="node54" class="node"> +<title>53</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M1277.0842,-324C1277.0842,-324 1227.0842,-324 1227.0842,-324 1221.0842,-324 1215.0842,-318 1215.0842,-312 1215.0842,-312 1215.0842,-300 1215.0842,-300 1215.0842,-294 1221.0842,-288 1227.0842,-288 1227.0842,-288 1277.0842,-288 1277.0842,-288 1283.0842,-288 1289.0842,-294 1289.0842,-300 1289.0842,-300 1289.0842,-312 1289.0842,-312 1289.0842,-318 1283.0842,-324 1277.0842,-324"/> +<text text-anchor="middle" x="1252.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 26->53 --> +<g id="edge141" class="edge"> +<title>26->53</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1118.2534,-359.8314C1144.9111,-349.1087 1178.5884,-335.5625 1205.4907,-324.7415"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1207.0984,-327.8674 1215.0699,-320.8884 1204.4862,-321.3731 1207.0984,-327.8674"/> +</g> +<!-- 70 --> +<g id="node71" class="node"> +<title>70</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M1122.0842,-180C1122.0842,-180 1060.0842,-180 1060.0842,-180 1054.0842,-180 1048.0842,-174 1048.0842,-168 1048.0842,-168 1048.0842,-156 1048.0842,-156 1048.0842,-150 1054.0842,-144 1060.0842,-144 1060.0842,-144 1122.0842,-144 1122.0842,-144 1128.0842,-144 1134.0842,-150 1134.0842,-156 1134.0842,-156 1134.0842,-168 1134.0842,-168 1134.0842,-174 1128.0842,-180 1122.0842,-180"/> +<text text-anchor="middle" x="1091.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 26->70 --> +<g id="edge158" class="edge"> +<title>26->70</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1074.5879,-359.9555C1077.7246,-322.3144 1084.9853,-235.1867 1088.7405,-190.1246"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1092.2294,-190.4012 1089.5721,-180.1451 1085.2536,-189.8198 1092.2294,-190.4012"/> +</g> +<!-- 88 --> +<g id="node89" class="node"> +<title>88</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M1058.5842,-108C1058.5842,-108 1015.5842,-108 1015.5842,-108 1009.5842,-108 1003.5842,-102 1003.5842,-96 1003.5842,-96 1003.5842,-84 1003.5842,-84 1003.5842,-78 1009.5842,-72 1015.5842,-72 1015.5842,-72 1058.5842,-72 1058.5842,-72 1064.5842,-72 1070.5842,-78 1070.5842,-84 1070.5842,-84 1070.5842,-96 1070.5842,-96 1070.5842,-102 1064.5842,-108 1058.5842,-108"/> +<text text-anchor="middle" x="1037.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 26->88 --> +<g id="edge178" class="edge"> +<title>26->88</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1069.0358,-359.8321C1061.5062,-325.11 1045.529,-246.8303 1039.0842,-180 1037.0995,-159.4196 1036.6319,-136.0753 1036.6435,-118.3197"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1040.1434,-118.3381 1036.7006,-108.3183 1033.1435,-118.2981 1040.1434,-118.3381"/> +</g> +<!-- 27->26 --> +<g id="edge91" class="edge"> +<title>27->26</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M993.0848,-431.8314C1006.5173,-422.7927 1022.9315,-411.7476 1037.3881,-402.0198"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1039.7496,-404.6494 1046.0922,-396.1628 1035.8416,-398.8418 1039.7496,-404.6494"/> +</g> +<!-- 28->2 --> +<g id="edge51" class="edge"> +<title>28->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1503.7419,-366.0721C1550.3954,-356.076 1618.496,-341.0865 1687.1196,-324.186"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1688.3799,-327.4797 1697.2457,-321.679 1686.6976,-320.6849 1688.3799,-327.4797"/> +</g> +<!-- 54 --> +<g id="node55" class="node"> +<title>54</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M1537.0842,-324C1537.0842,-324 1487.0842,-324 1487.0842,-324 1481.0842,-324 1475.0842,-318 1475.0842,-312 1475.0842,-312 1475.0842,-300 1475.0842,-300 1475.0842,-294 1481.0842,-288 1487.0842,-288 1487.0842,-288 1537.0842,-288 1537.0842,-288 1543.0842,-288 1549.0842,-294 1549.0842,-300 1549.0842,-300 1549.0842,-312 1549.0842,-312 1549.0842,-318 1543.0842,-324 1537.0842,-324"/> +<text text-anchor="middle" x="1512.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 28->54 --> +<g id="edge142" class="edge"> +<title>28->54</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1463.4864,-359.8314C1471.1257,-351.3694 1480.3525,-341.1489 1488.7048,-331.8971"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1491.358,-334.1813 1495.4611,-324.4133 1486.1621,-329.4906 1491.358,-334.1813"/> +</g> +<!-- 71 --> +<g id="node72" class="node"> +<title>71</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M1264.0842,-252C1264.0842,-252 1202.0842,-252 1202.0842,-252 1196.0842,-252 1190.0842,-246 1190.0842,-240 1190.0842,-240 1190.0842,-228 1190.0842,-228 1190.0842,-222 1196.0842,-216 1202.0842,-216 1202.0842,-216 1264.0842,-216 1264.0842,-216 1270.0842,-216 1276.0842,-222 1276.0842,-228 1276.0842,-228 1276.0842,-240 1276.0842,-240 1276.0842,-246 1270.0842,-252 1264.0842,-252"/> +<text text-anchor="middle" x="1233.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 28->71 --> +<g id="edge159" class="edge"> +<title>28->71</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1390.3471,-373.3282C1326.5059,-366.7565 1228.7305,-352.2821 1206.0842,-324 1191.5604,-305.8618 1201.5581,-280.0448 1213.2856,-260.7096"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1216.3869,-262.3603 1218.8972,-252.0671 1210.5159,-258.5482 1216.3869,-262.3603"/> +</g> +<!-- 89 --> +<g id="node90" class="node"> +<title>89</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M1407.5842,-180C1407.5842,-180 1364.5842,-180 1364.5842,-180 1358.5842,-180 1352.5842,-174 1352.5842,-168 1352.5842,-168 1352.5842,-156 1352.5842,-156 1352.5842,-150 1358.5842,-144 1364.5842,-144 1364.5842,-144 1407.5842,-144 1407.5842,-144 1413.5842,-144 1419.5842,-150 1419.5842,-156 1419.5842,-156 1419.5842,-168 1419.5842,-168 1419.5842,-174 1413.5842,-180 1407.5842,-180"/> +<text text-anchor="middle" x="1386.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 28->89 --> +<g id="edge179" class="edge"> +<title>28->89</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1390.4075,-364.1715C1369.6318,-356.063 1348.2452,-343.4399 1336.0842,-324 1309.1442,-280.9354 1341.2493,-222.3115 1365.034,-188.6774"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1368.0899,-190.4276 1371.1629,-180.2882 1362.4376,-186.2982 1368.0899,-190.4276"/> +</g> +<!-- 29->28 --> +<g id="edge94" class="edge"> +<title>29->28</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1407.4583,-431.8314C1413.5004,-423.6232 1420.7604,-413.7606 1427.4062,-404.7323"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1430.4204,-406.5415 1433.53,-396.4133 1424.7831,-402.3918 1430.4204,-406.5415"/> +</g> +<!-- 30->2 --> +<g id="edge52" class="edge"> +<title>30->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2000.419,-365.7939C1954.5606,-355.7551 1888.0811,-340.8412 1820.8486,-324.1423"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1821.4758,-320.6915 1810.9259,-321.6659 1819.7808,-327.4832 1821.4758,-320.6915"/> +</g> +<!-- 55 --> +<g id="node56" class="node"> +<title>55</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M2021.0842,-324C2021.0842,-324 1971.0842,-324 1971.0842,-324 1965.0842,-324 1959.0842,-318 1959.0842,-312 1959.0842,-312 1959.0842,-300 1959.0842,-300 1959.0842,-294 1965.0842,-288 1971.0842,-288 1971.0842,-288 2021.0842,-288 2021.0842,-288 2027.0842,-288 2033.0842,-294 2033.0842,-300 2033.0842,-300 2033.0842,-312 2033.0842,-312 2033.0842,-318 2027.0842,-324 2021.0842,-324"/> +<text text-anchor="middle" x="1996.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 30->55 --> +<g id="edge143" class="edge"> +<title>30->55</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2041.6913,-359.8314C2034.5938,-351.454 2026.0361,-341.3531 2018.2602,-332.1749"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2020.819,-329.7807 2011.6843,-324.4133 2015.4781,-334.3056 2020.819,-329.7807"/> +</g> +<!-- 72 --> +<g id="node73" class="node"> +<title>72</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M2308.0842,-108C2308.0842,-108 2246.0842,-108 2246.0842,-108 2240.0842,-108 2234.0842,-102 2234.0842,-96 2234.0842,-96 2234.0842,-84 2234.0842,-84 2234.0842,-78 2240.0842,-72 2246.0842,-72 2246.0842,-72 2308.0842,-72 2308.0842,-72 2314.0842,-72 2320.0842,-78 2320.0842,-84 2320.0842,-84 2320.0842,-96 2320.0842,-96 2320.0842,-102 2314.0842,-108 2308.0842,-108"/> +<text text-anchor="middle" x="2277.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 30->72 --> +<g id="edge160" class="edge"> +<title>30->72</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2113.6035,-373.5827C2178.463,-367.2024 2278.8933,-352.8589 2302.0842,-324 2350.4488,-263.8146 2313.7837,-164.97 2291.2715,-117.3409"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2294.374,-115.7174 2286.8527,-108.2555 2288.0791,-118.7791 2294.374,-115.7174"/> +</g> +<!-- 90 --> +<g id="node91" class="node"> +<title>90</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M2206.5842,-252C2206.5842,-252 2163.5842,-252 2163.5842,-252 2157.5842,-252 2151.5842,-246 2151.5842,-240 2151.5842,-240 2151.5842,-228 2151.5842,-228 2151.5842,-222 2157.5842,-216 2163.5842,-216 2163.5842,-216 2206.5842,-216 2206.5842,-216 2212.5842,-216 2218.5842,-222 2218.5842,-228 2218.5842,-228 2218.5842,-240 2218.5842,-240 2218.5842,-246 2212.5842,-252 2206.5842,-252"/> +<text text-anchor="middle" x="2185.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 30->90 --> +<g id="edge180" class="edge"> +<title>30->90</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2113.7324,-363.9156C2135.2204,-355.7424 2157.9036,-343.1408 2172.0842,-324 2185.1072,-306.4216 2187.8405,-281.5027 2187.608,-262.3409"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2191.0954,-261.9511 2187.2021,-252.0975 2184.1008,-262.2282 2191.0954,-261.9511"/> +</g> +<!-- 31->30 --> +<g id="edge97" class="edge"> +<title>31->30</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2041.3834,-431.8314C2043.654,-424.0463 2046.3587,-414.7729 2048.8782,-406.1347"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2052.2736,-406.9933 2051.7136,-396.4133 2045.5536,-405.0332 2052.2736,-406.9933"/> +</g> +<!-- 32->2 --> +<g id="edge53" class="edge"> +<title>32->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2247.1401,-372.1493C2134.7454,-360.5321 1889.9587,-334.8665 1820.9815,-323.8394"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1821.2863,-320.3401 1810.8351,-322.0782 1820.0891,-327.2369 1821.2863,-320.3401"/> +</g> +<!-- 56 --> +<g id="node57" class="node"> +<title>56</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M2151.0842,-324C2151.0842,-324 2101.0842,-324 2101.0842,-324 2095.0842,-324 2089.0842,-318 2089.0842,-312 2089.0842,-312 2089.0842,-300 2089.0842,-300 2089.0842,-294 2095.0842,-288 2101.0842,-288 2101.0842,-288 2151.0842,-288 2151.0842,-288 2157.0842,-288 2163.0842,-294 2163.0842,-300 2163.0842,-300 2163.0842,-312 2163.0842,-312 2163.0842,-318 2157.0842,-324 2151.0842,-324"/> +<text text-anchor="middle" x="2126.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 32->56 --> +<g id="edge144" class="edge"> +<title>32->56</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2259.1673,-359.8314C2232.7502,-349.1458 2199.401,-335.6562 2172.6953,-324.854"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2173.7649,-321.5112 2163.1821,-321.0059 2171.14,-328.0004 2173.7649,-321.5112"/> +</g> +<!-- 73 --> +<g id="node74" class="node"> +<title>73</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M2464.0842,-180C2464.0842,-180 2402.0842,-180 2402.0842,-180 2396.0842,-180 2390.0842,-174 2390.0842,-168 2390.0842,-168 2390.0842,-156 2390.0842,-156 2390.0842,-150 2396.0842,-144 2402.0842,-144 2402.0842,-144 2464.0842,-144 2464.0842,-144 2470.0842,-144 2476.0842,-150 2476.0842,-156 2476.0842,-156 2476.0842,-168 2476.0842,-168 2476.0842,-174 2470.0842,-180 2464.0842,-180"/> +<text text-anchor="middle" x="2433.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 32->73 --> +<g id="edge161" class="edge"> +<title>32->73</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2360.7959,-368.7567C2387.1215,-361.3256 2416.0757,-347.9674 2432.0842,-324 2458.9119,-283.8343 2450.1955,-224.6542 2441.5506,-190.0463"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2444.8682,-188.9034 2438.9095,-180.1431 2438.1047,-190.7073 2444.8682,-188.9034"/> +</g> +<!-- 91 --> +<g id="node92" class="node"> +<title>91</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M2535.5842,-108C2535.5842,-108 2492.5842,-108 2492.5842,-108 2486.5842,-108 2480.5842,-102 2480.5842,-96 2480.5842,-96 2480.5842,-84 2480.5842,-84 2480.5842,-78 2486.5842,-72 2492.5842,-72 2492.5842,-72 2535.5842,-72 2535.5842,-72 2541.5842,-72 2547.5842,-78 2547.5842,-84 2547.5842,-84 2547.5842,-96 2547.5842,-96 2547.5842,-102 2541.5842,-108 2535.5842,-108"/> +<text text-anchor="middle" x="2514.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 32->91 --> +<g id="edge181" class="edge"> +<title>32->91</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2360.8764,-374.2653C2429.0201,-368.4628 2537.2332,-354.5908 2562.0842,-324 2611.7063,-262.9165 2561.3836,-163.8093 2532.024,-116.6171"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2534.9646,-114.7187 2526.641,-108.1636 2529.0601,-118.4786 2534.9646,-114.7187"/> +</g> +<!-- 33->32 --> +<g id="edge100" class="edge"> +<title>33->32</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2263.7107,-431.8314C2269.9302,-423.5386 2277.4164,-413.557 2284.2442,-404.4533"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2287.0742,-406.5133 2290.2742,-396.4133 2281.4742,-402.3133 2287.0742,-406.5133"/> +</g> +<!-- 34->2 --> +<g id="edge54" class="edge"> +<title>34->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2647.5212,-365.9228C2634.9204,-363.613 2621.5888,-361.4625 2609.0842,-360 2263.7488,-319.6117 2168.6621,-377.3927 1820.8929,-323.8934"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1821.2128,-320.4011 1810.7931,-322.3195 1820.1349,-327.3176 1821.2128,-320.4011"/> +</g> +<!-- 57 --> +<g id="node58" class="node"> +<title>57</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M2411.0842,-324C2411.0842,-324 2361.0842,-324 2361.0842,-324 2355.0842,-324 2349.0842,-318 2349.0842,-312 2349.0842,-312 2349.0842,-300 2349.0842,-300 2349.0842,-294 2355.0842,-288 2361.0842,-288 2361.0842,-288 2411.0842,-288 2411.0842,-288 2417.0842,-288 2423.0842,-294 2423.0842,-300 2423.0842,-300 2423.0842,-312 2423.0842,-312 2423.0842,-318 2417.0842,-324 2411.0842,-324"/> +<text text-anchor="middle" x="2386.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 34->57 --> +<g id="edge145" class="edge"> +<title>34->57</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2647.2321,-365.1278C2586.0558,-351.2766 2489.893,-329.5039 2432.9095,-316.602"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2433.6113,-313.1723 2423.0852,-314.3776 2432.0654,-319.9995 2433.6113,-313.1723"/> +</g> +<!-- 74 --> +<g id="node75" class="node"> +<title>74</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M2851.0842,-252C2851.0842,-252 2789.0842,-252 2789.0842,-252 2783.0842,-252 2777.0842,-246 2777.0842,-240 2777.0842,-240 2777.0842,-228 2777.0842,-228 2777.0842,-222 2783.0842,-216 2789.0842,-216 2789.0842,-216 2851.0842,-216 2851.0842,-216 2857.0842,-216 2863.0842,-222 2863.0842,-228 2863.0842,-228 2863.0842,-240 2863.0842,-240 2863.0842,-246 2857.0842,-252 2851.0842,-252"/> +<text text-anchor="middle" x="2820.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 34->74 --> +<g id="edge162" class="edge"> +<title>34->74</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2760.8765,-364.92C2798.8043,-354.9029 2843.7408,-340.1035 2855.0842,-324 2868.731,-304.6264 2856.6369,-279.2086 2843.0672,-260.3277"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2845.6724,-257.9727 2836.8159,-252.1578 2840.1132,-262.2265 2845.6724,-257.9727"/> +</g> +<!-- 92 --> +<g id="node93" class="node"> +<title>92</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M2870.5842,-180C2870.5842,-180 2827.5842,-180 2827.5842,-180 2821.5842,-180 2815.5842,-174 2815.5842,-168 2815.5842,-168 2815.5842,-156 2815.5842,-156 2815.5842,-150 2821.5842,-144 2827.5842,-144 2827.5842,-144 2870.5842,-144 2870.5842,-144 2876.5842,-144 2882.5842,-150 2882.5842,-156 2882.5842,-156 2882.5842,-168 2882.5842,-168 2882.5842,-174 2876.5842,-180 2870.5842,-180"/> +<text text-anchor="middle" x="2849.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 34->92 --> +<g id="edge182" class="edge"> +<title>34->92</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2760.9885,-367.155C2804.3001,-357.6085 2858.6845,-342.3819 2872.0842,-324 2901.1456,-284.133 2880.1908,-223.8 2863.7072,-189.1177"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2866.7942,-187.4643 2859.2219,-180.0541 2860.5204,-190.569 2866.7942,-187.4643"/> +</g> +<!-- 35->34 --> +<g id="edge103" class="edge"> +<title>35->34</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2684.6451,-431.8314C2687.4869,-423.9617 2690.8779,-414.5712 2694.026,-405.8533"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2697.3304,-407.0076 2697.4349,-396.4133 2690.7465,-404.63 2697.3304,-407.0076"/> +</g> +<!-- 36->2 --> +<g id="edge55" class="edge"> +<title>36->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1868.4758,-359.8314C1848.1949,-350.2874 1823.1604,-338.5065 1801.687,-328.4013"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1802.9534,-325.1291 1792.4149,-324.038 1799.9728,-331.4629 1802.9534,-325.1291"/> +</g> +<!-- 58 --> +<g id="node59" class="node"> +<title>58</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M1891.0842,-324C1891.0842,-324 1841.0842,-324 1841.0842,-324 1835.0842,-324 1829.0842,-318 1829.0842,-312 1829.0842,-312 1829.0842,-300 1829.0842,-300 1829.0842,-294 1835.0842,-288 1841.0842,-288 1841.0842,-288 1891.0842,-288 1891.0842,-288 1897.0842,-288 1903.0842,-294 1903.0842,-300 1903.0842,-300 1903.0842,-312 1903.0842,-312 1903.0842,-318 1897.0842,-324 1891.0842,-324"/> +<text text-anchor="middle" x="1866.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 36->58 --> +<g id="edge146" class="edge"> +<title>36->58</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1896.7381,-359.8314C1892.1604,-351.7925 1886.679,-342.1666 1881.6253,-333.2918"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1884.5594,-331.3712 1876.5695,-324.4133 1878.4765,-334.8351 1884.5594,-331.3712"/> +</g> +<!-- 75 --> +<g id="node76" class="node"> +<title>75</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M2124.0842,-108C2124.0842,-108 2062.0842,-108 2062.0842,-108 2056.0842,-108 2050.0842,-102 2050.0842,-96 2050.0842,-96 2050.0842,-84 2050.0842,-84 2050.0842,-78 2056.0842,-72 2062.0842,-72 2062.0842,-72 2124.0842,-72 2124.0842,-72 2130.0842,-72 2136.0842,-78 2136.0842,-84 2136.0842,-84 2136.0842,-96 2136.0842,-96 2136.0842,-102 2130.0842,-108 2124.0842,-108"/> +<text text-anchor="middle" x="2093.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 36->75 --> +<g id="edge163" class="edge"> +<title>36->75</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1963.6522,-368.237C1991.1115,-360.652 2022.3502,-347.3132 2042.0842,-324 2092.5326,-264.4015 2096.4102,-166.3185 2094.8955,-118.2865"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2098.3922,-118.1306 2094.4772,-108.2857 2091.3983,-118.4232 2098.3922,-118.1306"/> +</g> +<!-- 93 --> +<g id="node94" class="node"> +<title>93</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M1986.5842,-252C1986.5842,-252 1943.5842,-252 1943.5842,-252 1937.5842,-252 1931.5842,-246 1931.5842,-240 1931.5842,-240 1931.5842,-228 1931.5842,-228 1931.5842,-222 1937.5842,-216 1943.5842,-216 1943.5842,-216 1986.5842,-216 1986.5842,-216 1992.5842,-216 1998.5842,-222 1998.5842,-228 1998.5842,-228 1998.5842,-240 1998.5842,-240 1998.5842,-246 1992.5842,-252 1986.5842,-252"/> +<text text-anchor="middle" x="1965.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 36->93 --> +<g id="edge183" class="edge"> +<title>36->93</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1914.4299,-359.7623C1924.4098,-334.9846 1942.3388,-290.4714 1953.97,-261.5939"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1957.3085,-262.6731 1957.7981,-252.0896 1950.8154,-260.0578 1957.3085,-262.6731"/> +</g> +<!-- 37->36 --> +<g id="edge106" class="edge"> +<title>37->36</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1843.5333,-431.8314C1853.9019,-423.0485 1866.5071,-412.3712 1877.7487,-402.8489"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1880.2737,-405.297 1885.6419,-396.1628 1875.7492,-399.9556 1880.2737,-405.297"/> +</g> +<!-- 38->2 --> +<g id="edge56" class="edge"> +<title>38->2</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2487.3884,-371.6316C2453.1588,-367.9205 2408.6491,-363.3308 2369.0842,-360 2128.7534,-339.7674 2063.0405,-363.7005 1820.9737,-323.9366"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1821.2436,-320.4335 1810.805,-322.2461 1820.0956,-327.3388 1821.2436,-320.4335"/> +</g> +<!-- 59 --> +<g id="node60" class="node"> +<title>59</title> +<path fill="none" stroke="#d85656" stroke-width="2" d="M2281.0842,-324C2281.0842,-324 2231.0842,-324 2231.0842,-324 2225.0842,-324 2219.0842,-318 2219.0842,-312 2219.0842,-312 2219.0842,-300 2219.0842,-300 2219.0842,-294 2225.0842,-288 2231.0842,-288 2231.0842,-288 2281.0842,-288 2281.0842,-288 2287.0842,-288 2293.0842,-294 2293.0842,-300 2293.0842,-300 2293.0842,-312 2293.0842,-312 2293.0842,-318 2287.0842,-324 2281.0842,-324"/> +<text text-anchor="middle" x="2256.0842" y="-303.5" font-family="sans" font-size="10.00" fill="#000000">graph_stats</text> +</g> +<!-- 38->59 --> +<g id="edge147" class="edge"> +<title>38->59</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2487.5283,-363.861C2433.7352,-350.4128 2353.7405,-330.4141 2303.2811,-317.7992"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2303.8412,-314.3316 2293.2909,-315.3017 2302.1434,-321.1226 2303.8412,-314.3316"/> +</g> +<!-- 76 --> +<g id="node77" class="node"> +<title>76</title> +<path fill="none" stroke="#5673d8" stroke-width="2" d="M2702.0842,-180C2702.0842,-180 2640.0842,-180 2640.0842,-180 2634.0842,-180 2628.0842,-174 2628.0842,-168 2628.0842,-168 2628.0842,-156 2628.0842,-156 2628.0842,-150 2634.0842,-144 2640.0842,-144 2640.0842,-144 2702.0842,-144 2702.0842,-144 2708.0842,-144 2714.0842,-150 2714.0842,-156 2714.0842,-156 2714.0842,-168 2714.0842,-168 2714.0842,-174 2708.0842,-180 2702.0842,-180"/> +<text text-anchor="middle" x="2671.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">panacus_stats</text> +</g> +<!-- 38->76 --> +<g id="edge164" class="edge"> +<title>38->76</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2600.9479,-364.4489C2637.875,-354.3669 2681.1087,-339.6878 2692.0842,-324 2720.1245,-283.9206 2700.8495,-224.313 2685.2868,-189.6831"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2688.2534,-187.7658 2680.8357,-180.2008 2681.9168,-190.7404 2688.2534,-187.7658"/> +</g> +<!-- 94 --> +<g id="node95" class="node"> +<title>94</title> +<path fill="none" stroke="#56d8d0" stroke-width="2" d="M2703.5842,-108C2703.5842,-108 2660.5842,-108 2660.5842,-108 2654.5842,-108 2648.5842,-102 2648.5842,-96 2648.5842,-96 2648.5842,-84 2648.5842,-84 2648.5842,-78 2654.5842,-72 2660.5842,-72 2660.5842,-72 2703.5842,-72 2703.5842,-72 2709.5842,-72 2715.5842,-78 2715.5842,-84 2715.5842,-84 2715.5842,-96 2715.5842,-96 2715.5842,-102 2709.5842,-108 2703.5842,-108"/> +<text text-anchor="middle" x="2682.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">graph_figs</text> +</g> +<!-- 38->94 --> +<g id="edge184" class="edge"> +<title>38->94</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2600.8998,-367.0787C2682.0869,-351.4567 2821.6407,-324.5379 2822.0842,-324 2832.2622,-311.6547 2829.6339,-302.1068 2822.0842,-288 2808.4737,-262.5686 2786.4178,-274.2683 2768.0842,-252 2735.0327,-211.8553 2749.0165,-189.0723 2723.0842,-144 2717.6249,-134.5113 2710.7212,-124.7902 2704.1431,-116.2578"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2706.6922,-113.8391 2697.739,-108.1743 2701.2054,-118.186 2706.6922,-113.8391"/> +</g> +<!-- 39->38 --> +<g id="edge109" class="edge"> +<title>39->38</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2484.2715,-431.8314C2493.9356,-423.1337 2505.6638,-412.5783 2516.1658,-403.1265"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="2518.8117,-405.454 2523.9033,-396.1628 2514.1289,-400.251 2518.8117,-405.454"/> +</g> +<!-- 40->0 --> +<g id="edge2" class="edge"> +<title>40->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1928.0842,-71.8314C1928.0842,-64.131 1928.0842,-54.9743 1928.0842,-46.4166"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1931.5843,-46.4132 1928.0842,-36.4133 1924.5843,-46.4133 1931.5843,-46.4132"/> </g> -<!-- 10 --> -<g id="node11" class="node"> -<title>10</title> -<path fill="none" stroke="#8fd856" stroke-width="2" d="M932.1904,-684C932.1904,-684 842.1904,-684 842.1904,-684 836.1904,-684 830.1904,-678 830.1904,-672 830.1904,-672 830.1904,-660 830.1904,-660 830.1904,-654 836.1904,-648 842.1904,-648 842.1904,-648 932.1904,-648 932.1904,-648 938.1904,-648 944.1904,-654 944.1904,-660 944.1904,-660 944.1904,-672 944.1904,-672 944.1904,-678 938.1904,-684 932.1904,-684"/> -<text text-anchor="middle" x="887.1904" y="-669" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> -<text text-anchor="middle" x="887.1904" y="-658" font-family="sans" font-size="10.00" fill="#000000">haplotype: TAIR10.1</text> +<!-- 41 --> +<g id="node42" class="node"> +<title>41</title> +<path fill="none" stroke="#56c1d8" stroke-width="2" d="M1803.5842,-108C1803.5842,-108 1740.5842,-108 1740.5842,-108 1734.5842,-108 1728.5842,-102 1728.5842,-96 1728.5842,-96 1728.5842,-84 1728.5842,-84 1728.5842,-78 1734.5842,-72 1740.5842,-72 1740.5842,-72 1803.5842,-72 1803.5842,-72 1809.5842,-72 1815.5842,-78 1815.5842,-84 1815.5842,-84 1815.5842,-96 1815.5842,-96 1815.5842,-102 1809.5842,-108 1803.5842,-108"/> +<text text-anchor="middle" x="1772.0842" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">core_statistics</text> </g> -<!-- 6->10 --> -<g id="edge26" class="edge"> -<title>6->10</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M734.4049,-719.9243C762.2929,-710.0815 796.981,-697.8386 826.253,-687.5073"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="827.6898,-690.7119 835.9548,-684.0831 825.36,-684.1109 827.6898,-690.7119"/> +<!-- 41->0 --> +<g id="edge3" class="edge"> +<title>41->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1811.4496,-71.8314C1836.1515,-60.4305 1867.7696,-45.8375 1891.8528,-34.7222"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1893.3984,-37.8637 1901.0113,-30.4952 1890.4649,-31.508 1893.3984,-37.8637"/> +</g> +<!-- 42 --> +<g id="node43" class="node"> +<title>42</title> +<path fill="none" stroke="#d8c356" stroke-width="2" d="M1796.0842,-180C1796.0842,-180 1692.0842,-180 1692.0842,-180 1686.0842,-180 1680.0842,-174 1680.0842,-168 1680.0842,-168 1680.0842,-156 1680.0842,-156 1680.0842,-150 1686.0842,-144 1692.0842,-144 1692.0842,-144 1796.0842,-144 1796.0842,-144 1802.0842,-144 1808.0842,-150 1808.0842,-156 1808.0842,-156 1808.0842,-168 1808.0842,-168 1808.0842,-174 1802.0842,-180 1796.0842,-180"/> +<text text-anchor="middle" x="1744.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">pggb_log_compression</text> +</g> +<!-- 42->41 --> +<g id="edge112" class="edge"> +<title>42->41</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1751.1498,-143.8314C1754.2102,-135.9617 1757.8621,-126.5712 1761.2523,-117.8533"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1764.5609,-119.0019 1764.9235,-108.4133 1758.0369,-116.4647 1764.5609,-119.0019"/> +</g> +<!-- 43 --> +<g id="node44" class="node"> +<title>43</title> +<path fill="none" stroke="#56d882" stroke-width="2" d="M1807.0842,-252C1807.0842,-252 1697.0842,-252 1697.0842,-252 1691.0842,-252 1685.0842,-246 1685.0842,-240 1685.0842,-240 1685.0842,-228 1685.0842,-228 1685.0842,-222 1691.0842,-216 1697.0842,-216 1697.0842,-216 1807.0842,-216 1807.0842,-216 1813.0842,-216 1819.0842,-222 1819.0842,-228 1819.0842,-228 1819.0842,-240 1819.0842,-240 1819.0842,-246 1813.0842,-252 1807.0842,-252"/> +<text text-anchor="middle" x="1752.0842" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">aggregate_graphs_stats</text> +</g> +<!-- 43->0 --> +<g id="edge38" class="edge"> +<title>43->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1787.7289,-215.8694C1803.3346,-206.671 1821.0239,-194.3888 1834.0842,-180 1870.5621,-139.8112 1863.0321,-118.4635 1891.0842,-72 1896.6349,-62.8062 1903.1294,-53.0417 1909.1146,-44.3806"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1912.0091,-46.3489 1914.8762,-36.1494 1906.2743,-42.3348 1912.0091,-46.3489"/> +</g> +<!-- 43->41 --> +<g id="edge114" class="edge"> +<title>43->41</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1784.3621,-215.8412C1797.0267,-206.8521 1810.1658,-194.742 1817.0842,-180 1823.8816,-165.5157 1822.531,-159.0443 1817.0842,-144 1813.3692,-133.7392 1806.759,-124.0579 1799.7294,-115.8033"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1802.2642,-113.3886 1792.942,-108.3539 1797.0898,-118.1031 1802.2642,-113.3886"/> +</g> +<!-- 43->42 --> +<g id="edge115" class="edge"> +<title>43->42</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1750.0654,-215.8314C1749.2098,-208.131 1748.1924,-198.9743 1747.2416,-190.4166"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1750.7131,-189.9656 1746.1301,-180.4133 1743.7559,-190.7386 1750.7131,-189.9656"/> +</g> +<!-- 60 --> +<g id="node61" class="node"> +<title>60</title> +<path fill="none" stroke="#61d856" stroke-width="2" d="M1650.0842,-180C1650.0842,-180 1574.0842,-180 1574.0842,-180 1568.0842,-180 1562.0842,-174 1562.0842,-168 1562.0842,-168 1562.0842,-156 1562.0842,-156 1562.0842,-150 1568.0842,-144 1574.0842,-144 1574.0842,-144 1650.0842,-144 1650.0842,-144 1656.0842,-144 1662.0842,-150 1662.0842,-156 1662.0842,-156 1662.0842,-168 1662.0842,-168 1662.0842,-174 1656.0842,-180 1650.0842,-180"/> +<text text-anchor="middle" x="1612.0842" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">pggb_input_stats</text> +</g> +<!-- 43->60 --> +<g id="edge148" class="edge"> +<title>43->60</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1716.7563,-215.8314C1698.4349,-206.4089 1675.874,-194.8062 1656.3947,-184.7883"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1657.8944,-181.6239 1647.4008,-180.1628 1654.6929,-187.8489 1657.8944,-181.6239"/> +</g> +<!-- 44->43 --> +<g id="edge116" class="edge"> +<title>44->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2479.0692,-296.8938C2464.5066,-293.6203 2447.5894,-290.1974 2432.0842,-288 2207.1016,-256.1155 2148.436,-271.966 1922.0842,-252 1891.8035,-249.329 1858.5404,-245.914 1829.5284,-242.7778"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1829.7756,-239.2841 1819.4557,-241.6818 1829.0184,-246.2431 1829.7756,-239.2841"/> +</g> +<!-- 45->43 --> +<g id="edge117" class="edge"> +<title>45->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1007.2756,-302.5757C1127.9079,-291.4689 1510.0337,-256.286 1675.011,-241.0963"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1675.4465,-244.571 1685.0835,-240.1689 1674.8047,-237.6005 1675.4465,-244.571"/> +</g> +<!-- 46->43 --> +<g id="edge118" class="edge"> +<title>46->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2608.6685,-296.6842C2594.2025,-293.425 2577.4568,-290.0668 2562.0842,-288 2279.7304,-250.0394 2206.0479,-275.0058 1922.0842,-252 1891.7852,-249.5453 1858.5184,-246.1735 1829.5087,-243.0113"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1829.7597,-239.5179 1819.437,-241.9034 1828.9943,-246.4759 1829.7597,-239.5179"/> +</g> +<!-- 47->43 --> +<g id="edge119" class="edge"> +<title>47->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1419.2596,-297.8293C1433.843,-294.6776 1450.7327,-291.0936 1466.0842,-288 1536.6444,-273.7809 1617.2315,-258.6663 1674.8401,-248.0554"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1675.7592,-251.4451 1684.9611,-246.194 1674.4929,-244.5606 1675.7592,-251.4451"/> +</g> +<!-- 48->43 --> +<g id="edge120" class="edge"> +<title>48->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1669.8418,-287.8314C1683.7812,-278.7074 1700.844,-267.539 1715.8073,-257.7449"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1717.8852,-260.5679 1724.3354,-252.1628 1714.0516,-254.711 1717.8852,-260.5679"/> +</g> +<!-- 49->43 --> +<g id="edge121" class="edge"> +<title>49->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2738.6787,-296.6072C2724.2139,-293.3385 2707.4664,-289.9939 2692.0842,-288 2352.3306,-243.9594 2263.6886,-278.0479 1922.0842,-252 1891.7739,-249.6888 1858.5049,-246.3456 1829.4965,-243.1663"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1829.75,-239.673 1819.4254,-242.0505 1828.9791,-246.6305 1829.75,-239.673"/> +</g> +<!-- 50->43 --> +<g id="edge122" class="edge"> +<title>50->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M731.1768,-290.3173C734.1561,-289.4176 737.1487,-288.6262 740.0842,-288 905.4423,-252.7274 1331.3033,-262.0239 1500.0842,-252 1558.7626,-248.5151 1625.0665,-243.7459 1674.9308,-239.9921"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1675.287,-243.4753 1684.9948,-239.2315 1674.7594,-236.4952 1675.287,-243.4753"/> +</g> +<!-- 51->43 --> +<g id="edge123" class="edge"> +<title>51->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M823.1813,-290.3387C826.1596,-289.4341 829.1507,-288.6357 832.0842,-288 1122.6588,-225.0284 1203.3463,-270.5923 1500.0842,-252 1558.751,-248.3242 1625.0554,-243.564 1674.9228,-239.8621"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1675.275,-243.3457 1684.9875,-239.1128 1674.7552,-236.365 1675.275,-243.3457"/> +</g> +<!-- 52->43 --> +<g id="edge124" class="edge"> +<title>52->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M915.1875,-290.3668C918.1644,-289.4558 921.1535,-288.6483 924.0842,-288 1174.5293,-232.5993 1244.1578,-269.1376 1500.0842,-252 1558.7347,-248.0726 1625.0399,-243.3242 1674.9117,-239.6907"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1675.2586,-243.1748 1684.9774,-238.9563 1674.7492,-236.1934 1675.2586,-243.1748"/> +</g> +<!-- 53->43 --> +<g id="edge125" class="edge"> +<title>53->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1289.1733,-297.3671C1303.7455,-294.1552 1320.65,-290.6508 1336.0842,-288 1453.5643,-267.8229 1590.87,-251.3728 1674.6283,-242.1317"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1675.2652,-245.5829 1684.8239,-241.0133 1674.5019,-238.6247 1675.2652,-245.5829"/> +</g> +<!-- 54->43 --> +<g id="edge126" class="edge"> +<title>54->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1549.3208,-294.829C1584.6961,-284.2164 1638.7805,-267.9911 1682.1968,-254.9662"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1683.2792,-258.2957 1691.8518,-252.0697 1681.2678,-251.5909 1683.2792,-258.2957"/> +</g> +<!-- 55->43 --> +<g id="edge127" class="edge"> +<title>55->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1959.0258,-295.0647C1923.0068,-284.4362 1867.3777,-268.021 1822.8641,-254.8859"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1823.8389,-251.5244 1813.2571,-252.051 1821.8577,-258.2382 1823.8389,-251.5244"/> +</g> +<!-- 56->43 --> +<g id="edge128" class="edge"> +<title>56->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2088.9128,-297.8091C2074.3299,-294.6548 2057.4396,-291.0743 2042.0842,-288 1970.0486,-273.5779 1887.6845,-258.3629 1829.1862,-247.7721"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1829.743,-244.3161 1819.2799,-245.9815 1828.4978,-251.2045 1829.743,-244.3161"/> +</g> +<!-- 57->43 --> +<g id="edge129" class="edge"> +<title>57->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2349.0405,-297.0877C2334.4742,-293.8395 2317.5619,-290.3832 2302.0842,-288 2134.415,-262.1833 2090.8822,-268.9315 1922.0842,-252 1891.8377,-248.9661 1858.5814,-245.4785 1829.5653,-242.386"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1829.8059,-238.8918 1819.4907,-241.31 1829.0625,-245.8523 1829.8059,-238.8918"/> +</g> +<!-- 58->43 --> +<g id="edge130" class="edge"> +<title>58->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1837.3172,-287.8314C1822.8709,-278.7074 1805.1876,-267.539 1789.6802,-257.7449"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1791.1659,-254.5436 1780.842,-252.1628 1787.4279,-260.462 1791.1659,-254.5436"/> +</g> +<!-- 59->43 --> +<g id="edge131" class="edge"> +<title>59->43</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2218.9967,-297.3573C2204.4247,-294.1442 2187.5199,-290.6414 2172.0842,-288 2053.0118,-267.624 1913.7568,-251.1574 1829.287,-241.9766"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1829.5806,-238.488 1819.2624,-240.8933 1828.8285,-245.4475 1829.5806,-238.488"/> +</g> +<!-- 60->41 --> +<g id="edge113" class="edge"> +<title>60->41</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1652.4589,-143.8314C1673.7629,-134.2446 1700.0825,-122.4008 1722.6053,-112.2655"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1724.3168,-115.3334 1731.9997,-108.038 1721.4442,-108.95 1724.3168,-115.3334"/> +</g> +<!-- 61->0 --> +<g id="edge4" class="edge"> +<title>61->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2950.1677,-215.8846C2924.2232,-177.0826 2862.3678,-88.1502 2830.0842,-72 2751.9089,-32.8919 2126.1573,-20.9495 1965.5473,-18.5139"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.2761,-15.0096 1955.2253,-18.3609 1965.1722,-22.0089 1965.2761,-15.0096"/> </g> -<!-- 11 --> -<g id="node12" class="node"> -<title>11</title> -<path fill="none" stroke="#8fd856" stroke-width="2" d="M1086.1904,-684C1086.1904,-684 974.1904,-684 974.1904,-684 968.1904,-684 962.1904,-678 962.1904,-672 962.1904,-672 962.1904,-660 962.1904,-660 962.1904,-654 968.1904,-648 974.1904,-648 974.1904,-648 1086.1904,-648 1086.1904,-648 1092.1904,-648 1098.1904,-654 1098.1904,-660 1098.1904,-660 1098.1904,-672 1098.1904,-672 1098.1904,-678 1092.1904,-684 1086.1904,-684"/> -<text text-anchor="middle" x="1030.1904" y="-669" font-family="sans" font-size="10.00" fill="#000000">ragtag_scaffolding</text> -<text text-anchor="middle" x="1030.1904" y="-658" font-family="sans" font-size="10.00" fill="#000000">haplotype: Tanz-1.10024</text> +<!-- 62->0 --> +<g id="edge5" class="edge"> +<title>62->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M735.3705,-215.8416C772.3315,-180.4927 860.1779,-103.1762 951.0842,-72 1041.1476,-41.1128 1722.7628,-22.9099 1890.7543,-18.8633"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.9295,-22.3602 1900.8431,-18.6225 1890.7624,-15.3622 1890.9295,-22.3602"/> </g> -<!-- 6->11 --> -<g id="edge27" class="edge"> -<title>6->11</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M774.8851,-720.4229C824.6544,-710.7012 887.4899,-698.1367 951.8588,-684.2595"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="952.7489,-687.6479 961.7825,-682.1121 951.2684,-680.8063 952.7489,-687.6479"/> +<!-- 63->0 --> +<g id="edge6" class="edge"> +<title>63->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3062.8043,-75.0666C3058.2125,-73.8634 3053.5789,-72.804 3049.0842,-72 2834.0849,-33.5412 2135.9199,-21.0284 1965.7445,-18.5126"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.5839,-15.01 1955.5341,-18.3644 1965.4822,-22.0093 1965.5839,-15.01"/> </g> -<!-- 7->4 --> -<g id="edge17" class="edge"> -<title>7->4</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M513.928,-647.9243C553.3684,-635.3592 605.0858,-618.8829 640.9251,-607.465"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="642.1235,-610.7567 650.5892,-604.3862 639.9986,-604.087 642.1235,-610.7567"/> +<!-- 64->0 --> +<g id="edge7" class="edge"> +<title>64->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1194.2316,-143.9317C1194.3356,-123.0908 1198.0609,-89.4613 1219.0842,-72 1271.0291,-28.8561 1752.0977,-20.0148 1890.8122,-18.3563"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.9834,-21.8547 1900.9429,-18.2408 1890.9036,-14.8551 1890.9834,-21.8547"/> </g> -<!-- 8->4 --> -<g id="edge18" class="edge"> -<title>8->4</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M628.6114,-647.8314C637.3433,-639.219 647.9221,-628.7851 657.4327,-619.4048"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="660.1133,-621.6769 664.7753,-612.1628 655.1978,-616.6931 660.1133,-621.6769"/> +<!-- 65->0 --> +<g id="edge8" class="edge"> +<title>65->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1447.3056,-215.7402C1447.4243,-195.9639 1450.533,-164.5025 1467.0842,-144 1521.258,-76.8931 1791.4632,-35.6847 1891.1033,-22.5669"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.5574,-26.0374 1901.0239,-21.2798 1890.6567,-19.0956 1891.5574,-26.0374"/> </g> -<!-- 9->4 --> -<g id="edge19" class="edge"> -<title>9->4</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M737.7694,-647.8314C729.0374,-639.219 718.4586,-628.7851 708.9481,-619.4048"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="711.1829,-616.6931 701.6055,-612.1628 706.2674,-621.6769 711.1829,-616.6931"/> +<!-- 66->0 --> +<g id="edge9" class="edge"> +<title>66->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3166.9285,-74.0144C3163.9602,-73.2397 3160.9932,-72.5551 3158.0842,-72 2920.9615,-26.7508 2144.7236,-19.3117 1965.3213,-18.1875"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.3403,-14.6877 1955.3195,-18.1276 1965.2983,-21.6876 1965.3403,-14.6877"/> </g> -<!-- 10->4 --> -<g id="edge20" class="edge"> -<title>10->4</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M835.9759,-647.9243C801.8556,-635.8819 757.5563,-620.2468 725.4508,-608.9154"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="726.4981,-605.5735 715.9033,-605.5457 724.1683,-612.1745 726.4981,-605.5735"/> +<!-- 67->0 --> +<g id="edge10" class="edge"> +<title>67->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M265.6134,-143.9159C268.4731,-122.7266 276.6634,-88.4294 300.0842,-72 367.3465,-24.8163 1654.4644,-18.7974 1890.9276,-18.0891"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.0878,-21.5887 1901.0777,-18.06 1891.0677,-14.5887 1891.0878,-21.5887"/> </g> -<!-- 11->4 --> -<g id="edge21" class="edge"> -<title>11->4</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M961.7825,-649.8879C958.8813,-649.2427 956.0079,-648.6109 953.1904,-648 873.2592,-630.669 779.5683,-612.3836 726.2128,-602.1607"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="726.575,-598.6666 716.0956,-600.2263 725.2604,-605.5421 726.575,-598.6666"/> +<!-- 68->0 --> +<g id="edge11" class="edge"> +<title>68->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M410.2047,-215.9822C419.6175,-179.783 446.5569,-99.3528 505.0842,-72 569.6465,-41.8267 1672.5937,-22.1955 1890.7648,-18.5979"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.1071,-22.0928 1901.0484,-18.4294 1890.9924,-15.0938 1891.1071,-22.0928"/> +</g> +<!-- 69->0 --> +<g id="edge12" class="edge"> +<title>69->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M712.1463,-78.5959C723.4392,-76.0097 735.6561,-73.5667 747.0842,-72 976.0129,-40.6151 1715.8389,-22.665 1890.764,-18.7958"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.0778,-22.2898 1900.9986,-18.5713 1890.9242,-15.2915 1891.0778,-22.2898"/> +</g> +<!-- 70->0 --> +<g id="edge13" class="edge"> +<title>70->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1105.3944,-143.9999C1123.6387,-122.5513 1157.3731,-87.6535 1195.0842,-72 1259.621,-45.2114 1750.3594,-24.7312 1890.7019,-19.3764"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.0829,-22.8645 1900.9433,-18.9888 1890.8181,-15.8695 1891.0829,-22.8645"/> </g> -<!-- 12->3 --> +<!-- 71->0 --> +<g id="edge14" class="edge"> +<title>71->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1249.1829,-215.716C1283.6923,-177.0066 1364.6095,-88.9344 1401.0842,-72 1488.3878,-31.4668 1785.232,-21.116 1890.6032,-18.6886"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.8451,-22.1843 1900.7659,-18.4657 1890.6915,-15.186 1890.8451,-22.1843"/> +</g> +<!-- 72->0 --> <g id="edge15" class="edge"> -<title>12->3</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M95.1904,-503.8314C95.1904,-496.131 95.1904,-486.9743 95.1904,-478.4166"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="98.6905,-478.4132 95.1904,-468.4133 91.6905,-478.4133 98.6905,-478.4132"/> +<title>72->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2233.9399,-81.0992C2164.695,-66.8137 2029.9497,-39.0152 1964.9315,-25.6017"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.6168,-22.1695 1955.1159,-23.5767 1964.2024,-29.0251 1965.6168,-22.1695"/> </g> -<!-- 13->2 --> -<g id="edge8" class="edge"> -<title>13->2</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M365.9929,-439.0647C433.1878,-426.1288 544.908,-404.6212 616.2452,-390.8878"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="617.3092,-394.2474 626.4672,-388.92 615.9858,-387.3736 617.3092,-394.2474"/> +<!-- 73->0 --> +<g id="edge16" class="edge"> +<title>73->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2417.9599,-143.6288C2399.4114,-122.4968 2365.8707,-88.5873 2329.0842,-72 2264.3833,-42.8259 2051.9768,-26.0632 1965.3582,-20.2955"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.4032,-16.791 1955.1961,-19.631 1964.9464,-23.7761 1965.4032,-16.791"/> </g> -<!-- 14->13 --> -<g id="edge30" class="edge"> -<title>14->13</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M309.1904,-503.8314C309.1904,-496.131 309.1904,-486.9743 309.1904,-478.4166"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="312.6905,-478.4132 309.1904,-468.4133 305.6905,-478.4133 312.6905,-478.4132"/> +<!-- 74->0 --> +<g id="edge17" class="edge"> +<title>74->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2815.423,-215.9467C2805.3764,-181.1374 2778.0947,-105.2472 2724.0842,-72 2658.9946,-31.9329 2114.3928,-20.8144 1965.5496,-18.511"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.184,-15.0052 1955.1324,-18.3544 1965.0786,-22.0045 1965.184,-15.0052"/> </g> -<!-- 15->2 --> -<g id="edge9" class="edge"> -<title>15->2</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M563.5651,-431.8314C584.8691,-422.2446 611.1887,-410.4008 633.7115,-400.2655"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="635.423,-403.3334 643.1059,-396.038 632.5504,-396.95 635.423,-403.3334"/> +<!-- 75->0 --> +<g id="edge18" class="edge"> +<title>75->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2051.4477,-71.8314C2024.6971,-60.1584 1990.2781,-45.1391 1964.596,-33.9324"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.7803,-30.6305 1955.215,-29.8389 1962.9806,-37.0463 1965.7803,-30.6305"/> </g> -<!-- 16->15 --> -<g id="edge33" class="edge"> -<title>16->15</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M523.1904,-503.8314C523.1904,-496.131 523.1904,-486.9743 523.1904,-478.4166"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="526.6905,-478.4132 523.1904,-468.4133 519.6905,-478.4133 526.6905,-478.4132"/> +<!-- 76->0 --> +<g id="edge19" class="edge"> +<title>76->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2654.4475,-143.6969C2633.7428,-122.292 2596.1899,-87.7826 2556.0842,-72 2447.4631,-29.255 2083.745,-20.2516 1965.5404,-18.4379"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.2526,-14.9334 1955.2029,-18.2882 1965.1512,-21.9327 1965.2526,-14.9334"/> </g> -<!-- 17->2 --> -<g id="edge10" class="edge"> -<title>17->2</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M683.1904,-431.8314C683.1904,-424.131 683.1904,-414.9743 683.1904,-406.4166"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="686.6905,-406.4132 683.1904,-396.4133 679.6905,-406.4133 686.6905,-406.4132"/> +<!-- 77->0 --> +<g id="edge20" class="edge"> +<title>77->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1642.3766,-521.0112C1337.0323,-516.2118 53.7034,-494.4917 22.0842,-468 -9.2525,-441.7451 3.0842,-418.8816 3.0842,-378 3.0842,-378 3.0842,-378 3.0842,-162 3.0842,-36.3519 147.4276,-94.2824 271.0842,-72 435.163,-42.4337 1659.5637,-22.1524 1890.556,-18.5682"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.8518,-22.0642 1900.7965,-18.4102 1890.7437,-15.065 1890.8518,-22.0642"/> </g> -<!-- 18->17 --> -<g id="edge36" class="edge"> -<title>18->17</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M723.5639,-503.8314C717.3443,-495.5386 709.8581,-485.557 703.0304,-476.4533"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="705.8004,-474.3133 697.0003,-468.4133 700.2004,-478.5133 705.8004,-474.3133"/> +<!-- 78->0 --> +<g id="edge21" class="edge"> +<title>78->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2146.7854,-521.2687C2411.5797,-518.0446 3401.3213,-503.646 3457.0842,-468 3494.9336,-443.805 3503.0842,-422.9219 3503.0842,-378 3503.0842,-378 3503.0842,-378 3503.0842,-162 3503.0842,-144.3837 3546.3272,-129.399 3379.0842,-72 3241.9169,-24.9232 2178.939,-18.848 1965.381,-18.1007"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.3116,-14.6005 1955.3,-18.0672 1965.2883,-21.6005 1965.3116,-14.6005"/> </g> -<!-- 19->2 --> -<g id="edge11" class="edge"> -<title>19->2</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M803.5633,-431.8314C782.0305,-422.2018 755.4055,-410.295 732.6752,-400.1299"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="734.0829,-396.9254 723.5253,-396.038 731.2252,-403.3155 734.0829,-396.9254"/> +<!-- 79->0 --> +<g id="edge22" class="edge"> +<title>79->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2969.0674,-143.8319C2963.3072,-122.5598 2950.4698,-88.1811 2925.0842,-72 2883.878,-45.7347 2141.5623,-23.8392 1965.371,-18.9973"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.3844,-15.4965 1955.2926,-18.7221 1965.1933,-22.4939 1965.3844,-15.4965"/> </g> -<!-- 20->19 --> -<g id="edge39" class="edge"> -<title>20->19</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M924.1898,-503.8314C910.7572,-494.7927 894.3431,-483.7476 879.8865,-474.0198"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="881.4329,-470.8418 871.1824,-468.1628 877.525,-476.6494 881.4329,-470.8418"/> +<!-- 80->0 --> +<g id="edge23" class="edge"> +<title>80->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M893.7939,-215.8428C905.8737,-180.8517 937.6469,-104.6572 994.0842,-72 1072.6674,-26.5281 1726.4648,-19.2938 1890.7447,-18.1909"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.8688,-21.6903 1900.8463,-18.1268 1890.8243,-14.6904 1890.8688,-21.6903"/> </g> -<!-- 21->2 --> -<g id="edge12" class="edge"> -<title>21->2</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1002.8578,-439.3762C935.532,-426.4496 821.9491,-404.6417 749.866,-390.8017"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="750.4599,-387.3519 739.9793,-388.9035 749.1399,-394.2263 750.4599,-387.3519"/> +<!-- 81->0 --> +<g id="edge24" class="edge"> +<title>81->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3085.868,-215.9458C3066.7963,-180.782 3019.2721,-103.7784 2954.0842,-72 2863.8806,-28.0267 2139.4344,-19.6355 1965.5189,-18.2489"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.3565,-14.7477 1955.3299,-18.1708 1965.3027,-21.7475 1965.3565,-14.7477"/> </g> -<!-- 22->21 --> -<g id="edge42" class="edge"> -<title>22->21</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1137.4421,-503.8314C1124.1351,-494.7927 1107.8744,-483.7476 1093.5529,-474.0198"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1095.1689,-470.8864 1084.9301,-468.1628 1091.2357,-476.677 1095.1689,-470.8864"/> +<!-- 82->0 --> +<g id="edge25" class="edge"> +<title>82->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1295.8232,-76.0498C1300.5517,-74.478 1305.3971,-73.0627 1310.0842,-72 1421.8697,-46.6544 1775.008,-26.1247 1890.8653,-19.9247"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.2073,-23.4116 1901.0076,-19.3862 1890.8361,-16.4214 1891.2073,-23.4116"/> </g> -<!-- 23->2 --> -<g id="edge13" class="edge"> -<title>23->2</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1216.019,-443.3555C1108.1874,-430.1291 866.9961,-400.5452 749.738,-386.1626"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="750.1593,-382.6881 739.8075,-384.9445 749.307,-389.636 750.1593,-382.6881"/> +<!-- 83->0 --> +<g id="edge26" class="edge"> +<title>83->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1543.8438,-145.5442C1584.6466,-126.1072 1655.7289,-93.6819 1719.0842,-72 1778.2097,-51.7657 1848.9853,-34.9801 1891.1479,-25.7356"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.9402,-29.1452 1900.971,-23.6049 1890.4563,-22.3042 1891.9402,-29.1452"/> </g> -<!-- 24->23 --> -<g id="edge45" class="edge"> -<title>24->23</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1348.6944,-503.8314C1335.513,-494.7927 1319.4056,-483.7476 1305.2193,-474.0198"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1306.9045,-470.9316 1296.6778,-468.1628 1302.9458,-476.7047 1306.9045,-470.9316"/> +<!-- 84->0 --> +<g id="edge27" class="edge"> +<title>84->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M3282.9229,-215.9345C3290.7608,-182.1234 3301.6527,-109.3381 3262.0842,-72 3213.6429,-26.2894 2176.548,-19.1294 1965.4049,-18.1442"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.1657,-14.6432 1955.1501,-18.0982 1965.1343,-21.6431 1965.1657,-14.6432"/> </g> -<!-- 25 --> -<g id="node26" class="node"> -<title>25</title> -<path fill="none" stroke="#d87d56" stroke-width="2" d="M641.6904,-252C641.6904,-252 570.6904,-252 570.6904,-252 564.6904,-252 558.6904,-246 558.6904,-240 558.6904,-240 558.6904,-228 558.6904,-228 558.6904,-222 564.6904,-216 570.6904,-216 570.6904,-216 641.6904,-216 641.6904,-216 647.6904,-216 653.6904,-222 653.6904,-228 653.6904,-228 653.6904,-240 653.6904,-240 653.6904,-246 647.6904,-252 641.6904,-252"/> -<text text-anchor="middle" x="606.1904" y="-231.5" font-family="sans" font-size="10.00" fill="#000000">aggregate_stats</text> +<!-- 85->0 --> +<g id="edge28" class="edge"> +<title>85->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M376.763,-77.5252C384.0319,-75.2999 391.7408,-73.2844 399.0842,-72 550.002,-45.6042 1670.8368,-22.925 1890.7176,-18.7035"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.8563,-22.2016 1900.7876,-18.511 1890.7225,-15.2028 1890.8563,-22.2016"/> </g> -<!-- 25->0 --> -<g id="edge2" class="edge"> -<title>25->0</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M582.0294,-215.8469C571.3167,-206.4046 559.6878,-193.9282 553.1904,-180 532.8555,-136.4091 525.9215,-115.6217 546.1904,-72 552.3523,-58.7387 563.5524,-47.5619 574.8802,-38.8788"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="576.9908,-41.6723 583.0811,-33.0028 572.9137,-35.9822 576.9908,-41.6723"/> +<!-- 86->0 --> +<g id="edge29" class="edge"> +<title>86->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M489.4202,-143.6382C497.9151,-122.1755 515.2363,-87.6092 543.0842,-72 603.4953,-38.1385 1675.5173,-21.5063 1890.6653,-18.5018"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.8694,-21.9994 1900.82,-18.3612 1890.7725,-15 1890.8694,-21.9994"/> </g> -<!-- 29 --> -<g id="node30" class="node"> -<title>29</title> -<path fill="none" stroke="#68d856" stroke-width="2" d="M653.1904,-108C653.1904,-108 567.1904,-108 567.1904,-108 561.1904,-108 555.1904,-102 555.1904,-96 555.1904,-96 555.1904,-84 555.1904,-84 555.1904,-78 561.1904,-72 567.1904,-72 567.1904,-72 653.1904,-72 653.1904,-72 659.1904,-72 665.1904,-78 665.1904,-84 665.1904,-84 665.1904,-96 665.1904,-96 665.1904,-102 659.1904,-108 653.1904,-108"/> -<text text-anchor="middle" x="610.1904" y="-87.5" font-family="sans" font-size="10.00" fill="#000000">workflow_statistics</text> +<!-- 87->0 --> +<g id="edge30" class="edge"> +<title>87->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M541.6895,-215.9505C547.7808,-181.148 566.4838,-105.269 617.0842,-72 671.7198,-36.0778 1683.1849,-21.1511 1890.964,-18.4573"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.1096,-21.9559 1901.0639,-18.3279 1891.0198,-14.9564 1891.1096,-21.9559"/> </g> -<!-- 25->29 --> -<g id="edge52" class="edge"> -<title>25->29</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M585.3326,-215.6461C576.0364,-206.0709 566.0925,-193.54 561.1904,-180 555.7436,-164.9557 555.4277,-158.9262 561.1904,-144 565.3096,-133.3306 572.624,-123.4665 580.3653,-115.1681"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="582.9251,-117.558 587.5154,-108.0091 577.9723,-112.6113 582.9251,-117.558"/> +<!-- 88->0 --> +<g id="edge31" class="edge"> +<title>88->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1070.819,-80.6173C1083.6442,-77.3907 1098.4484,-74.0722 1112.0842,-72 1265.4723,-48.6901 1751.7074,-25.8225 1890.6642,-19.6318"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1890.9703,-23.1217 1900.8054,-19.1822 1890.6602,-16.1286 1890.9703,-23.1217"/> </g> -<!-- 30 --> -<g id="node31" class="node"> -<title>30</title> -<path fill="none" stroke="#d8cb56" stroke-width="2" d="M686.1904,-180C686.1904,-180 582.1904,-180 582.1904,-180 576.1904,-180 570.1904,-174 570.1904,-168 570.1904,-168 570.1904,-156 570.1904,-156 570.1904,-150 576.1904,-144 582.1904,-144 582.1904,-144 686.1904,-144 686.1904,-144 692.1904,-144 698.1904,-150 698.1904,-156 698.1904,-156 698.1904,-168 698.1904,-168 698.1904,-174 692.1904,-180 686.1904,-180"/> -<text text-anchor="middle" x="634.1904" y="-159.5" font-family="sans" font-size="10.00" fill="#000000">pggb_log_compression</text> +<!-- 89->0 --> +<g id="edge32" class="edge"> +<title>89->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1390.3593,-143.6925C1396.3184,-122.6215 1409.2977,-88.7709 1434.0842,-72 1471.729,-46.5289 1782.1397,-26.4008 1890.7397,-20.0789"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1891.1178,-23.5631 1900.8999,-19.4936 1890.7151,-16.5747 1891.1178,-23.5631"/> </g> -<!-- 25->30 --> -<g id="edge53" class="edge"> -<title>25->30</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M613.256,-215.8314C616.3164,-207.9617 619.9683,-198.5712 623.3585,-189.8533"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="626.6672,-191.0019 627.0297,-180.4133 620.1431,-188.4647 626.6672,-191.0019"/> +<!-- 90->0 --> +<g id="edge33" class="edge"> +<title>90->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2186.2099,-215.8081C2187.2164,-182.4363 2184.2765,-111.2638 2145.0842,-72 2120.0911,-46.9613 2020.6996,-30.2046 1965.5101,-22.6283"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.7979,-19.1356 1955.4219,-21.278 1964.8692,-26.0738 1965.7979,-19.1356"/> </g> -<!-- 26->25 --> -<g id="edge47" class="edge"> -<title>26->25</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M622.6388,-287.8314C620.2601,-280.0463 617.4265,-270.7729 614.7871,-262.1347"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="618.0861,-260.954 611.8166,-252.4133 611.3917,-262.9996 618.0861,-260.954"/> +<!-- 91->0 --> +<g id="edge34" class="edge"> +<title>91->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2480.4869,-85.3029C2453.6084,-81.5814 2414.9467,-76.3095 2381.0842,-72 2226.878,-52.3752 2042.8551,-31.1014 1965.3756,-22.2424"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.4968,-18.7336 1955.1642,-21.0762 1964.7025,-25.6883 1965.4968,-18.7336"/> </g> -<!-- 27->0 --> -<g id="edge3" class="edge"> -<title>27->0</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M736.4524,-143.9817C721.8321,-125.2411 697.6217,-95.4219 674.1904,-72 664.0306,-61.8444 652.1788,-51.4834 641.4549,-42.5886"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="643.4776,-39.7214 633.5208,-36.1002 639.0462,-45.1402 643.4776,-39.7214"/> +<!-- 92->0 --> +<g id="edge35" class="edge"> +<title>92->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2845.0463,-143.8648C2839.2654,-122.6251 2826.4076,-88.2783 2801.0842,-72 2730.0654,-26.3481 2123.6184,-19.2612 1965.6035,-18.1873"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.4557,-14.6864 1955.4335,-18.1224 1965.411,-21.6862 1965.4557,-14.6864"/> </g> -<!-- 28->0 --> -<g id="edge4" class="edge"> -<title>28->0</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M765.8436,-78.9078C733.8695,-66.3962 681.7758,-46.0117 646.761,-32.3102"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="647.9567,-29.0197 637.3688,-28.635 645.4058,-35.5384 647.9567,-29.0197"/> +<!-- 93->0 --> +<g id="edge36" class="edge"> +<title>93->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1981.0747,-215.9169C1988.738,-206.0371 1997.1007,-193.1563 2001.0842,-180 2005.7207,-164.6865 2003.2451,-159.8534 2001.0842,-144 1996.5986,-111.0927 1997.6871,-100.7638 1981.0842,-72 1975.0401,-61.5289 1966.4912,-51.607 1958.0199,-43.193"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1960.324,-40.5544 1950.6603,-36.2111 1955.5063,-45.6328 1960.324,-40.5544"/> </g> -<!-- 29->0 --> -<g id="edge5" class="edge"> -<title>29->0</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M610.1904,-71.8314C610.1904,-64.131 610.1904,-54.9743 610.1904,-46.4166"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="613.6905,-46.4132 610.1904,-36.4133 606.6905,-46.4133 613.6905,-46.4132"/> +<!-- 94->0 --> +<g id="edge37" class="edge"> +<title>94->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M2648.512,-80.1113C2637.0476,-77.0712 2624.0901,-74.0021 2612.0842,-72 2367.8163,-31.2665 2069.1975,-21.0791 1965.5914,-18.6888"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.4101,-15.184 1955.3355,-18.4633 1965.2561,-22.1823 1965.4101,-15.184"/> </g> -<!-- 30->29 --> -<g id="edge51" class="edge"> -<title>30->29</title> -<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M628.1342,-143.8314C625.5392,-136.0463 622.448,-126.7729 619.5686,-118.1347"/> -<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="622.8109,-116.7933 616.3281,-108.4133 616.1701,-119.0069 622.8109,-116.7933"/> +<!-- 95->0 --> +<g id="edge39" class="edge"> +<title>95->0</title> +<path fill="none" stroke="#c0c0c0" stroke-width="2" d="M1999.9323,-505.2653C2002.6773,-504.7906 2005.4031,-504.3646 2008.0842,-504 2086.2235,-493.373 3361.9247,-512.4177 3427.0842,-468 3462.9607,-443.5438 3465.0842,-421.4193 3465.0842,-378 3465.0842,-378 3465.0842,-378 3465.0842,-162 3465.0842,-73.3514 3372.8902,-94.2688 3287.0842,-72 3156.1524,-38.0199 2170.7419,-21.6055 1965.4763,-18.5361"/> +<polygon fill="#c0c0c0" stroke="#c0c0c0" stroke-width="2" points="1965.2675,-15.0327 1955.2167,-18.3841 1965.1637,-22.0319 1965.2675,-15.0327"/> </g> </g> </svg> -- GitLab