easylink 0.1.25__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {easylink-0.1.25 → easylink-0.2.0}/.gitignore +2 -0
- {easylink-0.1.25 → easylink-0.2.0}/CHANGELOG.rst +5 -0
- {easylink-0.1.25/src/easylink.egg-info → easylink-0.2.0}/PKG-INFO +1 -1
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/index.rst +2 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/index.rst +0 -4
- easylink-0.2.0/docs/source/user_guide/tutorials/DAG-naive-pipeline.svg +553 -0
- easylink-0.2.0/docs/source/user_guide/tutorials/debug_compare_fp_fn.py +176 -0
- easylink-0.1.25/docs/source/user_guide/tutorials/print_metrics_w2_ssa.py → easylink-0.2.0/docs/source/user_guide/tutorials/debug_metrics_w2_ssa.py +3 -0
- easylink-0.2.0/docs/source/user_guide/tutorials/getting_started.rst +699 -0
- easylink-0.2.0/docs/source/user_guide/tutorials/input_data_demo_2030.yaml +3 -0
- easylink-0.2.0/docs/source/user_guide/tutorials/naive_comparison_viewer.html +11024 -0
- easylink-0.2.0/docs/source/user_guide/tutorials/naive_match_weights.html +42 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/pipeline_demo_improved.yaml +10 -9
- easylink-0.2.0/docs/source/user_guide/tutorials/pipeline_demo_improved_cascade.yaml +134 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/pipeline_demo_naive.yaml +11 -10
- easylink-0.2.0/docs/source/user_guide/tutorials/print_fp_fn_w2_ssa.py +136 -0
- easylink-0.2.0/src/easylink/_version.py +1 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/cli.py +8 -3
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/implementation_metadata.yaml +62 -38
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/runner.py +66 -10
- easylink-0.2.0/src/easylink/steps/cascading/accept_all_pairs.def +22 -0
- easylink-0.2.0/src/easylink/steps/cascading/accept_all_pairs.py +26 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/cascading/exclude_clustered.py +11 -2
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/cascading/exclude_none.py +1 -1
- easylink-0.2.0/src/easylink/steps/cascading/one_to_many_links_to_clusters.def +22 -0
- easylink-0.2.0/src/easylink/steps/cascading/one_to_many_links_to_clusters.py +109 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/cascading/update_clusters_by_connected_components.py +17 -4
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_determining_exclusions.py +1 -1
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_removing_records.py +1 -1
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/splink/splink_blocking_and_filtering.py +12 -6
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/splink/splink_links_to_clusters.py +2 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/validation_utils.py +6 -6
- {easylink-0.1.25 → easylink-0.2.0/src/easylink.egg-info}/PKG-INFO +1 -1
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink.egg-info/SOURCES.txt +11 -1
- easylink-0.2.0/tests/e2e/pipeline_improved_cascade_results.csv +15861 -0
- easylink-0.2.0/tests/e2e/pipeline_improved_results.csv +15848 -0
- easylink-0.2.0/tests/e2e/pipeline_improved_results_2030.csv +17684 -0
- easylink-0.2.0/tests/e2e/pipeline_naive_results.csv +15816 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/e2e/test_pipelines_main_schema.py +19 -4
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/pipeline_cascade.yaml +7 -10
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_runner.py +19 -19
- easylink-0.1.25/docs/source/user_guide/tutorials/getting_started.rst +0 -736
- easylink-0.1.25/docs/source/user_guide/tutorials/input_data_demo_2030.yaml +0 -3
- easylink-0.1.25/docs/source/user_guide/tutorials/print_fp_fn_w2_ssa.py +0 -80
- easylink-0.1.25/src/easylink/_version.py +0 -1
- easylink-0.1.25/tests/e2e/pipeline_improved_results.csv +0 -25184
- easylink-0.1.25/tests/e2e/pipeline_improved_results_2030.csv +0 -28890
- easylink-0.1.25/tests/e2e/pipeline_naive_results.csv +0 -25184
- {easylink-0.1.25 → easylink-0.2.0}/.bandit +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/.flake8 +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/.github/CODEOWNERS +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/.github/pull_request_template.md +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/.github/workflows/deploy.yml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/.github/workflows/update_readme.yml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/.readthedocs.yml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/CONTRIBUTING.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/Jenkinsfile +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/LICENSE +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/Makefile +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/README.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/Makefile +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/nitpick-exceptions +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/_static/style.css +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/_templates/layout.html +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/cli.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/configuration.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/graph_components.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/implementation.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/index.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/pipeline.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/pipeline_graph.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/pipeline_schema.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/pipeline_schema_constants/development.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/pipeline_schema_constants/index.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/pipeline_schema_constants/testing.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/rule.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/runner.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/step.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/utilities/aggregator_utils.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/utilities/data_utils.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/utilities/general_utils.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/utilities/index.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/utilities/paths.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/utilities/splitter_utils.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/api_reference/utilities/validation_utils.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/index.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/01_step.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/02_default_implementation.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/03_slots.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/04_data_dependency.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/05_pipeline_schema.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/06_default_input.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/07_cloneable_section.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/08_cloneable_section_expanded.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/09_loopable_section.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/10_loopable_section_expanded.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/11_cloneable_section_splitter.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/12_cloneable_section_splitter_expanded.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/13_autoparallel_section.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/14_choice_section.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/15_choice_section_expanded.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/16_step_hierarchy.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/18_schema_to_pipeline.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/19_schema_to_pipeline_combined.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/clustering_sub_steps.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/easylink_pipeline_schema.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/entity_resolution_sub_steps.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/pipeline_schema/images/linking_sub_steps.drawio.png +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/concepts/workarounds.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/conf.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/glossary.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/index.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/cli.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/2020/input_file_ssa.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/2020/input_file_w2.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/2030/input_file_ssa.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/2030/input_file_w2.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/DAG-common-pipeline.svg +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/DAG-e2e-pipeline-expanded.svg +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/DAG-e2e-pipeline.svg +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/DAG-r-pyspark.svg +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/create_inputs_demo.ipynb +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/environment_local.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/environment_slurm.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/impl-config-pipeline.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/index.rst +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/input_data.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/input_data_demo.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/input_file_1.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/input_file_2.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/input_file_3.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/known_clusters.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/docs/source/user_guide/tutorials/r_spark_pipeline.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/pyproject.toml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/python_versions.json +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/pytype.cfg +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/setup.cfg +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/setup.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/__about__.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/__init__.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/configuration.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/devtools/implementation_creator.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/graph_components.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/implementation.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/pipeline.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/pipeline_graph.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/pipeline_schema.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/pipeline_schema_constants/__init__.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/pipeline_schema_constants/development.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/pipeline_schema_constants/main.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/pipeline_schema_constants/testing.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/rule.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/step.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/cascading/exclude_clustered.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/cascading/exclude_none.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/cascading/update_clusters_by_connected_components.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_clusters_to_links.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_clusters_to_links.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_determining_exclusions.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_removing_records.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_schema_alignment.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_schema_alignment.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_updating_clusters.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/default/default_updating_clusters.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/README.md +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/build-containers-local.sh +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/build-containers-remote.sh +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/input_data/create_input_files.ipynb +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/input_data/input_file_1.csv +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/input_data/input_file_1.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/input_data/input_file_2.csv +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/input_data/input_file_2.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/python_pandas/README.md +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/python_pandas/dummy_step.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/python_pandas/python_pandas.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/python_pyspark/README.md +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/python_pyspark/dummy_step.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/python_pyspark/python_pyspark.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/r/README.md +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/r/dummy_step.R +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/r/r-image.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/dev/test.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/example/middle_name_to_initial.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/example/middle_name_to_initial.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/fastLink/fastLink_evaluating_pairs.R +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/fastLink/fastLink_evaluating_pairs.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/fastLink/fastLink_links_to_clusters.R +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/fastLink/fastLink_links_to_clusters.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/output_dir/dummy_step_1_for_output_dir_example.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/output_dir/dummy_step_1_for_output_dir_example.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/output_dir/dummy_step_2_for_output_dir_example.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/output_dir/dummy_step_2_for_output_dir_example.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/canonicalizing_and_downstream_analysis/dummy_canonicalizing_and_downstream_analysis.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/canonicalizing_and_downstream_analysis/dummy_canonicalizing_and_downstream_analysis.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/input_data/create_input_files.ipynb +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/input_data/input_file_1.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/input_data/input_file_2.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/input_data/known_clusters.parquet +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/pre-processing/dummy_pre-processing.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/rl-dummy/pre-processing/dummy_pre-processing.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/splink/splink_blocking_and_filtering.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/splink/splink_evaluating_pairs.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/splink/splink_evaluating_pairs.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/steps/splink/splink_links_to_clusters.def +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/__init__.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/aggregator_utils.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/data_utils.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/general_utils.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/paths.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/spark.smk +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink/utilities/splitter_utils.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink.egg-info/dependency_links.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink.egg-info/entry_points.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink.egg-info/not-zip-safe +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink.egg-info/requires.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/src/easylink.egg-info/top_level.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/__init__.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/conftest.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/e2e/pipeline_splink_dummy_results.csv +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/e2e/test_easylink_cli.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/e2e/test_step_types.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/integration/test_compositions.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/integration/test_data_utils.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/integration/test_snakemake.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/integration/test_snakemake_slurm.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/integration/test_snakemake_spark.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/common/environment_local.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/common/input_data.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/common/input_data_one_file.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/common/pipeline.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/environment_slurm.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/environment_slurm_4GB.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/input_data_dummy.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/pipeline.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/pipeline_expanded.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/pipeline_splink_dummy.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/e2e/pipeline_with_fastLink.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/auto_parallel/pipeline_cloneable_step.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/auto_parallel/pipeline_hierarchical_step.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/auto_parallel/pipeline_loop_step.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/environment_spark_slurm.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/pipeline.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/pipeline_output_dir.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/pipeline_output_dir_default.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/integration/pipeline_spark.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/environment_minimum.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/environment_spark_slurm.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_bad_combined_implementations.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_bad_implementation.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_bad_loop_formatting.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_bad_step.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_bad_type_key.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_bad_implementation_names.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_bad_topology.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_two_steps.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_with_extra_node.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_with_iteration.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_with_iteration_cycle.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_with_missing_node.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_combine_with_parallel.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_default_implementations.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_missing_implementation_name.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_missing_implementations.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_missing_loop_nodes.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_missing_step.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_missing_substeps.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_missing_type_key.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_nested_templated_steps.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_out_of_order.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_spark.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_type_config_mismatch.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/specifications/unit/pipeline_wrong_clone_keys.yaml +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/__init__.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/conftest.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/recipe_strings/python_pandas.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/aggregation_rule.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/auto_parallel_rule.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/checkpoint_rule.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/implemented_rule_local.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/implemented_rule_slurm.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/pipeline_local.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/pipeline_slurm.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/target_rule.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/rule_strings/validation_rule.txt +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_cli.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_config.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_data_utils.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_general_utils.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_graph_components.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_implementation.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_implementation_creator.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_pipeline.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_pipeline_graph.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_pipeline_schema.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_rule.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_step.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/tests/unit/test_validations.py +0 -0
- {easylink-0.1.25 → easylink-0.2.0}/update_readme.py +0 -0
@@ -623,6 +623,8 @@ This step :ref:`has sub-steps <entity_resolution_sub_steps>`, which may be expan
|
|
623
623
|
and similar incremental methods, the already-found clusters would be used directly
|
624
624
|
and updated with new decisions about not-yet-clustered records.
|
625
625
|
|
626
|
+
.. _canonicalizing:
|
627
|
+
|
626
628
|
Canonicalizing and downstream analysis
|
627
629
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
628
630
|
|
@@ -0,0 +1,553 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
3
|
+
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<!-- Generated by graphviz version 12.2.1 (20250203.1708)
|
5
|
+
-->
|
6
|
+
<!-- Title: snakemake_dag Pages: 1 -->
|
7
|
+
<svg width="3214pt" height="1412pt"
|
8
|
+
viewBox="0.00 0.00 3214.25 1412.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
9
|
+
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1408)">
|
10
|
+
<title>snakemake_dag</title>
|
11
|
+
<polygon fill="white" stroke="none" points="-4,4 -4,-1408 3210.25,-1408 3210.25,4 -4,4"/>
|
12
|
+
<!-- 0 -->
|
13
|
+
<g id="node1" class="node">
|
14
|
+
<title>0</title>
|
15
|
+
<path fill="none" stroke="#5682d8" stroke-width="2" d="M1193.38,-36C1193.38,-36 1163.38,-36 1163.38,-36 1157.38,-36 1151.38,-30 1151.38,-24 1151.38,-24 1151.38,-12 1151.38,-12 1151.38,-6 1157.38,0 1163.38,0 1163.38,0 1193.38,0 1193.38,0 1199.38,0 1205.38,-6 1205.38,-12 1205.38,-12 1205.38,-24 1205.38,-24 1205.38,-30 1199.38,-36 1193.38,-36"/>
|
16
|
+
<text text-anchor="middle" x="1178.38" y="-14.88" font-family="sans" font-size="10.00">all</text>
|
17
|
+
</g>
|
18
|
+
<!-- 1 -->
|
19
|
+
<g id="node2" class="node">
|
20
|
+
<title>1</title>
|
21
|
+
<path fill="none" stroke="#56d8b9" stroke-width="2" d="M1298.12,-180C1298.12,-180 1058.62,-180 1058.62,-180 1052.62,-180 1046.62,-174 1046.62,-168 1046.62,-168 1046.62,-156 1046.62,-156 1046.62,-150 1052.62,-144 1058.62,-144 1058.62,-144 1298.12,-144 1298.12,-144 1304.12,-144 1310.12,-150 1310.12,-156 1310.12,-156 1310.12,-168 1310.12,-168 1310.12,-174 1304.12,-180 1298.12,-180"/>
|
22
|
+
<text text-anchor="middle" x="1178.38" y="-158.88" font-family="sans" font-size="10.00">dummy_canonicalizing_and_downstream_analysis</text>
|
23
|
+
</g>
|
24
|
+
<!-- 1->0 -->
|
25
|
+
<g id="edge1" class="edge">
|
26
|
+
<title>1->0</title>
|
27
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1160.22,-143.12C1151.83,-133.58 1142.77,-121.12 1138.38,-108 1133.29,-92.83 1133.29,-87.17 1138.38,-72 1141.36,-63.08 1146.51,-54.47 1152.13,-46.87"/>
|
28
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1154.74,-49.2 1158.32,-39.23 1149.3,-44.8 1154.74,-49.2"/>
|
29
|
+
</g>
|
30
|
+
<!-- 35 -->
|
31
|
+
<g id="node36" class="node">
|
32
|
+
<title>35</title>
|
33
|
+
<path fill="none" stroke="#c6d856" stroke-width="2" d="M1315.5,-108C1315.5,-108 1159.25,-108 1159.25,-108 1153.25,-108 1147.25,-102 1147.25,-96 1147.25,-96 1147.25,-84 1147.25,-84 1147.25,-78 1153.25,-72 1159.25,-72 1159.25,-72 1315.5,-72 1315.5,-72 1321.5,-72 1327.5,-78 1327.5,-84 1327.5,-84 1327.5,-96 1327.5,-96 1327.5,-102 1321.5,-108 1315.5,-108"/>
|
34
|
+
<text text-anchor="middle" x="1237.38" y="-86.88" font-family="sans" font-size="10.00">results_analysis_output_validator</text>
|
35
|
+
</g>
|
36
|
+
<!-- 1->35 -->
|
37
|
+
<g id="edge54" class="edge">
|
38
|
+
<title>1->35</title>
|
39
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1193.26,-143.34C1199.57,-135.85 1207.08,-126.95 1214.09,-118.63"/>
|
40
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1216.57,-121.12 1220.34,-111.22 1211.21,-116.61 1216.57,-121.12"/>
|
41
|
+
</g>
|
42
|
+
<!-- 2 -->
|
43
|
+
<g id="node3" class="node">
|
44
|
+
<title>2</title>
|
45
|
+
<path fill="none" stroke="#56d882" stroke-width="2" d="M1153.38,-324C1153.38,-324 1035.38,-324 1035.38,-324 1029.38,-324 1023.38,-318 1023.38,-312 1023.38,-312 1023.38,-300 1023.38,-300 1023.38,-294 1029.38,-288 1035.38,-288 1035.38,-288 1153.38,-288 1153.38,-288 1159.38,-288 1165.38,-294 1165.38,-300 1165.38,-300 1165.38,-312 1165.38,-312 1165.38,-318 1159.38,-324 1153.38,-324"/>
|
46
|
+
<text text-anchor="middle" x="1094.38" y="-302.88" font-family="sans" font-size="10.00">default_updating_clusters</text>
|
47
|
+
</g>
|
48
|
+
<!-- 2->1 -->
|
49
|
+
<g id="edge3" class="edge">
|
50
|
+
<title>2->1</title>
|
51
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1166.12,-301.98C1242.29,-297.08 1355.37,-284.43 1382.38,-252 1410.47,-218.26 1373.43,-196.94 1323.55,-183.66"/>
|
52
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1324.46,-180.28 1313.91,-181.26 1322.77,-187.07 1324.46,-180.28"/>
|
53
|
+
</g>
|
54
|
+
<!-- 34 -->
|
55
|
+
<g id="node35" class="node">
|
56
|
+
<title>34</title>
|
57
|
+
<path fill="none" stroke="#59d856" stroke-width="2" d="M953.25,-252C953.25,-252 621.5,-252 621.5,-252 615.5,-252 609.5,-246 609.5,-240 609.5,-240 609.5,-228 609.5,-228 609.5,-222 615.5,-216 621.5,-216 621.5,-216 953.25,-216 953.25,-216 959.25,-216 965.25,-222 965.25,-228 965.25,-228 965.25,-240 965.25,-240 965.25,-246 959.25,-252 953.25,-252"/>
|
58
|
+
<text text-anchor="middle" x="787.38" y="-230.88" font-family="sans" font-size="10.00">dummy_canonicalizing_and_downstream_analysis_clusters_validator</text>
|
59
|
+
</g>
|
60
|
+
<!-- 2->34 -->
|
61
|
+
<g id="edge53" class="edge">
|
62
|
+
<title>2->34</title>
|
63
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1022.4,-288.59C979.55,-278.82 924.76,-266.33 878.87,-255.86"/>
|
64
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="879.65,-252.45 869.13,-253.64 878.1,-259.28 879.65,-252.45"/>
|
65
|
+
</g>
|
66
|
+
<!-- 3 -->
|
67
|
+
<g id="node4" class="node">
|
68
|
+
<title>3</title>
|
69
|
+
<path fill="none" stroke="#80d856" stroke-width="2" d="M1088.5,-468C1088.5,-468 980.25,-468 980.25,-468 974.25,-468 968.25,-462 968.25,-456 968.25,-456 968.25,-444 968.25,-444 968.25,-438 974.25,-432 980.25,-432 980.25,-432 1088.5,-432 1088.5,-432 1094.5,-432 1100.5,-438 1100.5,-444 1100.5,-444 1100.5,-456 1100.5,-456 1100.5,-462 1094.5,-468 1088.5,-468"/>
|
70
|
+
<text text-anchor="middle" x="1034.38" y="-446.88" font-family="sans" font-size="10.00">splink_links_to_clusters</text>
|
71
|
+
</g>
|
72
|
+
<!-- 3->2 -->
|
73
|
+
<g id="edge6" class="edge">
|
74
|
+
<title>3->2</title>
|
75
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1101.5,-440.56C1154.56,-432.34 1222.44,-417.87 1239.38,-396 1249.17,-383.35 1248.54,-373.11 1239.38,-360 1225.12,-339.61 1202.14,-327.04 1178.63,-319.3"/>
|
76
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1179.82,-316 1169.24,-316.53 1177.85,-322.71 1179.82,-316"/>
|
77
|
+
</g>
|
78
|
+
<!-- 32 -->
|
79
|
+
<g id="node33" class="node">
|
80
|
+
<title>32</title>
|
81
|
+
<path fill="none" stroke="#d6d856" stroke-width="2" d="M928.25,-396C928.25,-396 692.5,-396 692.5,-396 686.5,-396 680.5,-390 680.5,-384 680.5,-384 680.5,-372 680.5,-372 680.5,-366 686.5,-360 692.5,-360 692.5,-360 928.25,-360 928.25,-360 934.25,-360 940.25,-366 940.25,-372 940.25,-372 940.25,-384 940.25,-384 940.25,-390 934.25,-396 928.25,-396"/>
|
82
|
+
<text text-anchor="middle" x="810.38" y="-374.88" font-family="sans" font-size="10.00">default_updating_clusters_new_clusters_validator</text>
|
83
|
+
</g>
|
84
|
+
<!-- 3->32 -->
|
85
|
+
<g id="edge52" class="edge">
|
86
|
+
<title>3->32</title>
|
87
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M976.98,-431.06C947.34,-421.8 910.95,-410.43 879.74,-400.68"/>
|
88
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="881.1,-397.43 870.51,-397.79 879.01,-404.12 881.1,-397.43"/>
|
89
|
+
</g>
|
90
|
+
<!-- 4 -->
|
91
|
+
<g id="node5" class="node">
|
92
|
+
<title>4</title>
|
93
|
+
<path fill="none" stroke="#56d863" stroke-width="2" d="M1088.12,-612C1088.12,-612 980.62,-612 980.62,-612 974.62,-612 968.62,-606 968.62,-600 968.62,-600 968.62,-588 968.62,-588 968.62,-582 974.62,-576 980.62,-576 980.62,-576 1088.12,-576 1088.12,-576 1094.12,-576 1100.12,-582 1100.12,-588 1100.12,-588 1100.12,-600 1100.12,-600 1100.12,-606 1094.12,-612 1088.12,-612"/>
|
94
|
+
<text text-anchor="middle" x="1034.38" y="-590.88" font-family="sans" font-size="10.00">splink_evaluating_pairs</text>
|
95
|
+
</g>
|
96
|
+
<!-- 4->3 -->
|
97
|
+
<g id="edge9" class="edge">
|
98
|
+
<title>4->3</title>
|
99
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1012.62,-575.23C1002.91,-565.89 992.52,-553.57 987.38,-540 981.7,-525.04 981.7,-518.96 987.38,-504 990.96,-494.57 997.07,-485.74 1003.72,-478.09"/>
|
100
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1006.15,-480.61 1010.53,-470.96 1001.09,-475.78 1006.15,-480.61"/>
|
101
|
+
</g>
|
102
|
+
<!-- 30 -->
|
103
|
+
<g id="node31" class="node">
|
104
|
+
<title>30</title>
|
105
|
+
<path fill="none" stroke="#56a9d8" stroke-width="2" d="M1194.12,-540C1194.12,-540 1008.62,-540 1008.62,-540 1002.62,-540 996.62,-534 996.62,-528 996.62,-528 996.62,-516 996.62,-516 996.62,-510 1002.62,-504 1008.62,-504 1008.62,-504 1194.12,-504 1194.12,-504 1200.12,-504 1206.12,-510 1206.12,-516 1206.12,-516 1206.12,-528 1206.12,-528 1206.12,-534 1200.12,-540 1194.12,-540"/>
|
106
|
+
<text text-anchor="middle" x="1101.38" y="-518.88" font-family="sans" font-size="10.00">splink_links_to_clusters_links_validator</text>
|
107
|
+
</g>
|
108
|
+
<!-- 4->30 -->
|
109
|
+
<g id="edge51" class="edge">
|
110
|
+
<title>4->30</title>
|
111
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1051.28,-575.34C1058.61,-567.69 1067.34,-558.56 1075.46,-550.08"/>
|
112
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1077.76,-552.73 1082.15,-543.09 1072.7,-547.89 1077.76,-552.73"/>
|
113
|
+
</g>
|
114
|
+
<!-- 5 -->
|
115
|
+
<g id="node6" class="node">
|
116
|
+
<title>5</title>
|
117
|
+
<path fill="none" stroke="#56b9d8" stroke-width="2" d="M999.12,-900C999.12,-900 885.62,-900 885.62,-900 879.62,-900 873.62,-894 873.62,-888 873.62,-888 873.62,-876 873.62,-876 873.62,-870 879.62,-864 885.62,-864 885.62,-864 999.12,-864 999.12,-864 1005.12,-864 1011.12,-870 1011.12,-876 1011.12,-876 1011.12,-888 1011.12,-888 1011.12,-894 1005.12,-900 999.12,-900"/>
|
118
|
+
<text text-anchor="middle" x="942.38" y="-878.88" font-family="sans" font-size="10.00">default_clusters_to_links</text>
|
119
|
+
</g>
|
120
|
+
<!-- 5->4 -->
|
121
|
+
<g id="edge11" class="edge">
|
122
|
+
<title>5->4</title>
|
123
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M918.49,-863.15C882.18,-833.72 820.14,-772.99 848.38,-720 874.38,-671.19 928.84,-638.05 972.15,-618.22"/>
|
124
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="973.53,-621.44 981.27,-614.2 970.71,-615.04 973.53,-621.44"/>
|
125
|
+
</g>
|
126
|
+
<!-- 7 -->
|
127
|
+
<g id="node8" class="node">
|
128
|
+
<title>7</title>
|
129
|
+
<path fill="none" stroke="#56d8d8" stroke-width="2" d="M1294.25,-756C1294.25,-756 1160.5,-756 1160.5,-756 1154.5,-756 1148.5,-750 1148.5,-744 1148.5,-744 1148.5,-732 1148.5,-732 1148.5,-726 1154.5,-720 1160.5,-720 1160.5,-720 1294.25,-720 1294.25,-720 1300.25,-720 1306.25,-726 1306.25,-732 1306.25,-732 1306.25,-744 1306.25,-744 1306.25,-750 1300.25,-756 1294.25,-756"/>
|
130
|
+
<text text-anchor="middle" x="1227.38" y="-734.88" font-family="sans" font-size="10.00">splink_blocking_and_filtering</text>
|
131
|
+
</g>
|
132
|
+
<!-- 5->7 -->
|
133
|
+
<g id="edge16" class="edge">
|
134
|
+
<title>5->7</title>
|
135
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M945.04,-863.04C949.04,-842.67 958.59,-809.95 980.38,-792 992.61,-781.92 1069.84,-766.31 1134.73,-754.64"/>
|
136
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1135.31,-758.1 1144.54,-752.9 1134.08,-751.2 1135.31,-758.1"/>
|
137
|
+
</g>
|
138
|
+
<!-- 26 -->
|
139
|
+
<g id="node27" class="node">
|
140
|
+
<title>26</title>
|
141
|
+
<path fill="none" stroke="#bed856" stroke-width="2" d="M1249.62,-828C1249.62,-828 1001.12,-828 1001.12,-828 995.12,-828 989.12,-822 989.12,-816 989.12,-816 989.12,-804 989.12,-804 989.12,-798 995.12,-792 1001.12,-792 1001.12,-792 1249.62,-792 1249.62,-792 1255.62,-792 1261.62,-798 1261.62,-804 1261.62,-804 1261.62,-816 1261.62,-816 1261.62,-822 1255.62,-828 1249.62,-828"/>
|
142
|
+
<text text-anchor="middle" x="1125.38" y="-806.88" font-family="sans" font-size="10.00">splink_blocking_and_filtering_known_links_validator</text>
|
143
|
+
</g>
|
144
|
+
<!-- 5->26 -->
|
145
|
+
<g id="edge47" class="edge">
|
146
|
+
<title>5->26</title>
|
147
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M989.03,-863.15C1012.6,-854.14 1041.44,-843.11 1066.52,-833.51"/>
|
148
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1067.57,-836.86 1075.66,-830.02 1065.07,-830.32 1067.57,-836.86"/>
|
149
|
+
</g>
|
150
|
+
<!-- 28 -->
|
151
|
+
<g id="node29" class="node">
|
152
|
+
<title>28</title>
|
153
|
+
<path fill="none" stroke="#56d892" stroke-width="2" d="M1091.5,-756C1091.5,-756 869.25,-756 869.25,-756 863.25,-756 857.25,-750 857.25,-744 857.25,-744 857.25,-732 857.25,-732 857.25,-726 863.25,-720 869.25,-720 869.25,-720 1091.5,-720 1091.5,-720 1097.5,-720 1103.5,-726 1103.5,-732 1103.5,-732 1103.5,-744 1103.5,-744 1103.5,-750 1097.5,-756 1091.5,-756"/>
|
154
|
+
<text text-anchor="middle" x="980.38" y="-734.88" font-family="sans" font-size="10.00">splink_evaluating_pairs_known_links_validator</text>
|
155
|
+
</g>
|
156
|
+
<!-- 5->28 -->
|
157
|
+
<g id="edge49" class="edge">
|
158
|
+
<title>5->28</title>
|
159
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M940.82,-863.14C939.82,-844.83 939.86,-815.75 947.38,-792 950.02,-783.63 954.3,-775.25 958.91,-767.7"/>
|
160
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="961.72,-769.79 964.32,-759.52 955.89,-765.93 961.72,-769.79"/>
|
161
|
+
</g>
|
162
|
+
<!-- 6 -->
|
163
|
+
<g id="node7" class="node">
|
164
|
+
<title>6</title>
|
165
|
+
<path fill="none" stroke="#56d873" stroke-width="2" d="M1064,-972C1064,-972 820.75,-972 820.75,-972 814.75,-972 808.75,-966 808.75,-960 808.75,-960 808.75,-948 808.75,-948 808.75,-942 814.75,-936 820.75,-936 820.75,-936 1064,-936 1064,-936 1070,-936 1076,-942 1076,-948 1076,-948 1076,-960 1076,-960 1076,-966 1070,-972 1064,-972"/>
|
166
|
+
<text text-anchor="middle" x="942.38" y="-950.88" font-family="sans" font-size="10.00">default_clusters_to_links_known_clusters_validator</text>
|
167
|
+
</g>
|
168
|
+
<!-- 6->5 -->
|
169
|
+
<g id="edge15" class="edge">
|
170
|
+
<title>6->5</title>
|
171
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M942.38,-935.34C942.38,-928.75 942.38,-921.08 942.38,-913.67"/>
|
172
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="945.88,-913.93 942.38,-903.93 938.88,-913.93 945.88,-913.93"/>
|
173
|
+
</g>
|
174
|
+
<!-- 7->4 -->
|
175
|
+
<g id="edge12" class="edge">
|
176
|
+
<title>7->4</title>
|
177
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1231.67,-719.14C1235.28,-699.47 1237.56,-667.97 1221.38,-648 1207.33,-630.66 1157.88,-617.09 1113.37,-608.03"/>
|
178
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1114.13,-604.61 1103.64,-606.11 1112.78,-611.48 1114.13,-604.61"/>
|
179
|
+
</g>
|
180
|
+
<!-- 29 -->
|
181
|
+
<g id="node30" class="node">
|
182
|
+
<title>29</title>
|
183
|
+
<path fill="none" stroke="#d8bc56" stroke-width="2" d="M1199.88,-684C1199.88,-684 1006.88,-684 1006.88,-684 1000.88,-684 994.88,-678 994.88,-672 994.88,-672 994.88,-660 994.88,-660 994.88,-654 1000.88,-648 1006.88,-648 1006.88,-648 1199.88,-648 1199.88,-648 1205.88,-648 1211.88,-654 1211.88,-660 1211.88,-660 1211.88,-672 1211.88,-672 1211.88,-678 1205.88,-684 1199.88,-684"/>
|
184
|
+
<text text-anchor="middle" x="1103.38" y="-662.88" font-family="sans" font-size="10.00">splink_evaluating_pairs_blocks_validator</text>
|
185
|
+
</g>
|
186
|
+
<!-- 7->29 -->
|
187
|
+
<g id="edge50" class="edge">
|
188
|
+
<title>7->29</title>
|
189
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1195.76,-719.15C1180.61,-710.6 1162.23,-700.22 1145.87,-690.99"/>
|
190
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1147.99,-688.17 1137.56,-686.3 1144.55,-694.26 1147.99,-688.17"/>
|
191
|
+
</g>
|
192
|
+
<!-- 8 -->
|
193
|
+
<g id="node9" class="node">
|
194
|
+
<title>8</title>
|
195
|
+
<path fill="none" stroke="#56a2d8" stroke-width="2" d="M1427.75,-900C1427.75,-900 1303,-900 1303,-900 1297,-900 1291,-894 1291,-888 1291,-888 1291,-876 1291,-876 1291,-870 1297,-864 1303,-864 1303,-864 1427.75,-864 1427.75,-864 1433.75,-864 1439.75,-870 1439.75,-876 1439.75,-876 1439.75,-888 1439.75,-888 1439.75,-894 1433.75,-900 1427.75,-900"/>
|
196
|
+
<text text-anchor="middle" x="1365.38" y="-878.88" font-family="sans" font-size="10.00">default_schema_alignment</text>
|
197
|
+
</g>
|
198
|
+
<!-- 8->7 -->
|
199
|
+
<g id="edge17" class="edge">
|
200
|
+
<title>8->7</title>
|
201
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1345.21,-863C1334.12,-852.92 1320.25,-840.01 1308.38,-828 1288.51,-807.92 1267.03,-784.22 1251.19,-766.33"/>
|
202
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1254.02,-764.26 1244.79,-759.07 1248.77,-768.88 1254.02,-764.26"/>
|
203
|
+
</g>
|
204
|
+
<!-- 27 -->
|
205
|
+
<g id="node28" class="node">
|
206
|
+
<title>27</title>
|
207
|
+
<path fill="none" stroke="#56c9d8" stroke-width="2" d="M1553.25,-828C1553.25,-828 1329.5,-828 1329.5,-828 1323.5,-828 1317.5,-822 1317.5,-816 1317.5,-816 1317.5,-804 1317.5,-804 1317.5,-798 1323.5,-792 1329.5,-792 1329.5,-792 1553.25,-792 1553.25,-792 1559.25,-792 1565.25,-798 1565.25,-804 1565.25,-804 1565.25,-816 1565.25,-816 1565.25,-822 1559.25,-828 1553.25,-828"/>
|
208
|
+
<text text-anchor="middle" x="1441.38" y="-806.88" font-family="sans" font-size="10.00">splink_blocking_and_filtering_records_validator</text>
|
209
|
+
</g>
|
210
|
+
<!-- 8->27 -->
|
211
|
+
<g id="edge48" class="edge">
|
212
|
+
<title>8->27</title>
|
213
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1384.55,-863.34C1393.04,-855.52 1403.2,-846.16 1412.57,-837.53"/>
|
214
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1414.73,-840.3 1419.71,-830.95 1409.99,-835.15 1414.73,-840.3"/>
|
215
|
+
</g>
|
216
|
+
<!-- 9 -->
|
217
|
+
<g id="node10" class="node">
|
218
|
+
<title>9</title>
|
219
|
+
<path fill="none" stroke="#d86656" stroke-width="2" d="M1371.5,-1044C1371.5,-1044 951.25,-1044 951.25,-1044 945.25,-1044 939.25,-1038 939.25,-1032 939.25,-1032 939.25,-1020 939.25,-1020 939.25,-1014 945.25,-1008 951.25,-1008 951.25,-1008 1371.5,-1008 1371.5,-1008 1377.5,-1008 1383.5,-1014 1383.5,-1020 1383.5,-1020 1383.5,-1032 1383.5,-1032 1383.5,-1038 1377.5,-1044 1371.5,-1044"/>
|
220
|
+
<text text-anchor="middle" x="1161.38" y="-1022.88" font-family="sans" font-size="10.00">pre-processing_parallel_split_1_pre-processing_parallel_split_1_dummy_pre-processing</text>
|
221
|
+
</g>
|
222
|
+
<!-- 9->8 -->
|
223
|
+
<g id="edge20" class="edge">
|
224
|
+
<title>9->8</title>
|
225
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1172.19,-1007.02C1184.89,-987.24 1207.65,-955.66 1234.38,-936 1251.31,-923.54 1271.6,-913.48 1291.08,-905.62"/>
|
226
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1292.18,-908.95 1300.25,-902.09 1289.66,-902.41 1292.18,-908.95"/>
|
227
|
+
</g>
|
228
|
+
<!-- 25 -->
|
229
|
+
<g id="node26" class="node">
|
230
|
+
<title>25</title>
|
231
|
+
<path fill="none" stroke="#d89c56" stroke-width="2" d="M1475.75,-972C1475.75,-972 1255,-972 1255,-972 1249,-972 1243,-966 1243,-960 1243,-960 1243,-948 1243,-948 1243,-942 1249,-936 1255,-936 1255,-936 1475.75,-936 1475.75,-936 1481.75,-936 1487.75,-942 1487.75,-948 1487.75,-948 1487.75,-960 1487.75,-960 1487.75,-966 1481.75,-972 1475.75,-972"/>
|
232
|
+
<text text-anchor="middle" x="1365.38" y="-950.88" font-family="sans" font-size="10.00">default_schema_alignment_datasets_validator</text>
|
233
|
+
</g>
|
234
|
+
<!-- 9->25 -->
|
235
|
+
<g id="edge45" class="edge">
|
236
|
+
<title>9->25</title>
|
237
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1213.65,-1007.06C1240.28,-997.93 1272.9,-986.73 1301.06,-977.07"/>
|
238
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1302.05,-980.43 1310.38,-973.87 1299.78,-973.81 1302.05,-980.43"/>
|
239
|
+
</g>
|
240
|
+
<!-- 10 -->
|
241
|
+
<g id="node11" class="node">
|
242
|
+
<title>10</title>
|
243
|
+
<path fill="none" stroke="#afd856" stroke-width="2" d="M1361.25,-1188C1361.25,-1188 831.5,-1188 831.5,-1188 825.5,-1188 819.5,-1182 819.5,-1176 819.5,-1176 819.5,-1164 819.5,-1164 819.5,-1158 825.5,-1152 831.5,-1152 831.5,-1152 1361.25,-1152 1361.25,-1152 1367.25,-1152 1373.25,-1158 1373.25,-1164 1373.25,-1164 1373.25,-1176 1373.25,-1176 1373.25,-1182 1367.25,-1188 1361.25,-1188"/>
|
244
|
+
<text text-anchor="middle" x="1096.38" y="-1166.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_1_removing_records_default_removing_records</text>
|
245
|
+
</g>
|
246
|
+
<!-- 10->9 -->
|
247
|
+
<g id="edge23" class="edge">
|
248
|
+
<title>10->9</title>
|
249
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M868.85,-1151.01C818.4,-1138.2 788.07,-1116.53 819.38,-1080 835.59,-1061.07 877.22,-1048.85 926.09,-1040.97"/>
|
250
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="926.3,-1044.48 935.66,-1039.51 925.25,-1037.56 926.3,-1044.48"/>
|
251
|
+
</g>
|
252
|
+
<!-- 22 -->
|
253
|
+
<g id="node23" class="node">
|
254
|
+
<title>22</title>
|
255
|
+
<path fill="none" stroke="#5692d8" stroke-width="2" d="M1351.88,-1116C1351.88,-1116 840.88,-1116 840.88,-1116 834.88,-1116 828.88,-1110 828.88,-1104 828.88,-1104 828.88,-1092 828.88,-1092 828.88,-1086 834.88,-1080 840.88,-1080 840.88,-1080 1351.88,-1080 1351.88,-1080 1357.88,-1080 1363.88,-1086 1363.88,-1092 1363.88,-1092 1363.88,-1104 1363.88,-1104 1363.88,-1110 1357.88,-1116 1351.88,-1116"/>
|
256
|
+
<text text-anchor="middle" x="1096.38" y="-1094.88" font-family="sans" font-size="10.00">pre-processing_parallel_split_1_pre-processing_parallel_split_1_dummy_pre-processing_dataset_validator</text>
|
257
|
+
</g>
|
258
|
+
<!-- 10->22 -->
|
259
|
+
<g id="edge38" class="edge">
|
260
|
+
<title>10->22</title>
|
261
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1096.38,-1151.34C1096.38,-1144.75 1096.38,-1137.08 1096.38,-1129.67"/>
|
262
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1099.88,-1129.93 1096.38,-1119.93 1092.88,-1129.93 1099.88,-1129.93"/>
|
263
|
+
</g>
|
264
|
+
<!-- 23 -->
|
265
|
+
<g id="node24" class="node">
|
266
|
+
<title>23</title>
|
267
|
+
<path fill="none" stroke="#68d856" stroke-width="2" d="M1833.5,-1044C1833.5,-1044 1413.25,-1044 1413.25,-1044 1407.25,-1044 1401.25,-1038 1401.25,-1032 1401.25,-1032 1401.25,-1020 1401.25,-1020 1401.25,-1014 1407.25,-1008 1413.25,-1008 1413.25,-1008 1833.5,-1008 1833.5,-1008 1839.5,-1008 1845.5,-1014 1845.5,-1020 1845.5,-1020 1845.5,-1032 1845.5,-1032 1845.5,-1038 1839.5,-1044 1833.5,-1044"/>
|
268
|
+
<text text-anchor="middle" x="1623.38" y="-1022.88" font-family="sans" font-size="10.00">pre-processing_parallel_split_2_pre-processing_parallel_split_2_dummy_pre-processing</text>
|
269
|
+
</g>
|
270
|
+
<!-- 10->23 -->
|
271
|
+
<g id="edge40" class="edge">
|
272
|
+
<title>10->23</title>
|
273
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1270.09,-1151.07C1305.48,-1143.25 1341.57,-1132.04 1373.38,-1116 1394.44,-1105.38 1391.63,-1091.22 1412.38,-1080 1437.99,-1066.15 1467.31,-1055.83 1495.78,-1048.18"/>
|
274
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1496.6,-1051.58 1505.42,-1045.71 1494.86,-1044.8 1496.6,-1051.58"/>
|
275
|
+
</g>
|
276
|
+
<!-- 24 -->
|
277
|
+
<g id="node25" class="node">
|
278
|
+
<title>24</title>
|
279
|
+
<path fill="none" stroke="#56d8a2" stroke-width="2" d="M1943.88,-1116C1943.88,-1116 1432.88,-1116 1432.88,-1116 1426.88,-1116 1420.88,-1110 1420.88,-1104 1420.88,-1104 1420.88,-1092 1420.88,-1092 1420.88,-1086 1426.88,-1080 1432.88,-1080 1432.88,-1080 1943.88,-1080 1943.88,-1080 1949.88,-1080 1955.88,-1086 1955.88,-1092 1955.88,-1092 1955.88,-1104 1955.88,-1104 1955.88,-1110 1949.88,-1116 1943.88,-1116"/>
|
280
|
+
<text text-anchor="middle" x="1688.38" y="-1094.88" font-family="sans" font-size="10.00">pre-processing_parallel_split_2_pre-processing_parallel_split_2_dummy_pre-processing_dataset_validator</text>
|
281
|
+
</g>
|
282
|
+
<!-- 10->24 -->
|
283
|
+
<g id="edge43" class="edge">
|
284
|
+
<title>10->24</title>
|
285
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1248.45,-1151.02C1332.6,-1141.07 1437.28,-1128.69 1523.41,-1118.51"/>
|
286
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1523.72,-1121.99 1533.24,-1117.34 1522.9,-1115.04 1523.72,-1121.99"/>
|
287
|
+
</g>
|
288
|
+
<!-- 11 -->
|
289
|
+
<g id="node12" class="node">
|
290
|
+
<title>11</title>
|
291
|
+
<path fill="none" stroke="#5663d8" stroke-width="2" d="M997.75,-1332C997.75,-1332 411,-1332 411,-1332 405,-1332 399,-1326 399,-1320 399,-1320 399,-1308 399,-1308 399,-1302 405,-1296 411,-1296 411,-1296 997.75,-1296 997.75,-1296 1003.75,-1296 1009.75,-1302 1009.75,-1308 1009.75,-1308 1009.75,-1320 1009.75,-1320 1009.75,-1326 1003.75,-1332 997.75,-1332"/>
|
292
|
+
<text text-anchor="middle" x="704.38" y="-1310.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_1_determining_exclusions_default_determining_exclusions</text>
|
293
|
+
</g>
|
294
|
+
<!-- 11->10 -->
|
295
|
+
<g id="edge26" class="edge">
|
296
|
+
<title>11->10</title>
|
297
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M471.89,-1295.07C432,-1287.26 398.99,-1276.06 385.38,-1260 375.03,-1247.79 374.49,-1235.73 385.38,-1224 414.69,-1192.42 622.42,-1179.52 805.83,-1174.31"/>
|
298
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="805.79,-1177.81 815.69,-1174.04 805.6,-1170.82 805.79,-1177.81"/>
|
299
|
+
</g>
|
300
|
+
<!-- 15 -->
|
301
|
+
<g id="node16" class="node">
|
302
|
+
<title>15</title>
|
303
|
+
<path fill="none" stroke="#d8cb56" stroke-width="2" d="M1760.25,-1260C1760.25,-1260 1104.5,-1260 1104.5,-1260 1098.5,-1260 1092.5,-1254 1092.5,-1248 1092.5,-1248 1092.5,-1236 1092.5,-1236 1092.5,-1230 1098.5,-1224 1104.5,-1224 1104.5,-1224 1760.25,-1224 1760.25,-1224 1766.25,-1224 1772.25,-1230 1772.25,-1236 1772.25,-1236 1772.25,-1248 1772.25,-1248 1772.25,-1254 1766.25,-1260 1760.25,-1260"/>
|
304
|
+
<text text-anchor="middle" x="1432.38" y="-1238.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_1_removing_records_default_removing_records_ids_to_remove_validator</text>
|
305
|
+
</g>
|
306
|
+
<!-- 11->15 -->
|
307
|
+
<g id="edge31" class="edge">
|
308
|
+
<title>11->15</title>
|
309
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M891.38,-1295.02C995.83,-1284.98 1125.97,-1272.46 1232.43,-1262.23"/>
|
310
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1232.67,-1265.72 1242.28,-1261.28 1232,-1258.75 1232.67,-1265.72"/>
|
311
|
+
</g>
|
312
|
+
<!-- 12 -->
|
313
|
+
<g id="node13" class="node">
|
314
|
+
<title>12</title>
|
315
|
+
<path fill="none" stroke="#56d8c9" stroke-width="2" d="M724.75,-1404C724.75,-1404 12,-1404 12,-1404 6,-1404 0,-1398 0,-1392 0,-1392 0,-1380 0,-1380 0,-1374 6,-1368 12,-1368 12,-1368 724.75,-1368 724.75,-1368 730.75,-1368 736.75,-1374 736.75,-1380 736.75,-1380 736.75,-1392 736.75,-1392 736.75,-1398 730.75,-1404 724.75,-1404"/>
|
316
|
+
<text text-anchor="middle" x="368.38" y="-1382.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_1_determining_exclusions_default_determining_exclusions_input_datasets_validator</text>
|
317
|
+
</g>
|
318
|
+
<!-- 12->11 -->
|
319
|
+
<g id="edge29" class="edge">
|
320
|
+
<title>12->11</title>
|
321
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M454.47,-1367.06C500.61,-1357.45 557.66,-1345.57 605.6,-1335.58"/>
|
322
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="606.18,-1339.03 615.25,-1333.57 604.75,-1332.18 606.18,-1339.03"/>
|
323
|
+
</g>
|
324
|
+
<!-- 13 -->
|
325
|
+
<g id="node14" class="node">
|
326
|
+
<title>13</title>
|
327
|
+
<path fill="none" stroke="#8fd856" stroke-width="2" d="M1483.62,-1404C1483.62,-1404 767.12,-1404 767.12,-1404 761.12,-1404 755.12,-1398 755.12,-1392 755.12,-1392 755.12,-1380 755.12,-1380 755.12,-1374 761.12,-1368 767.12,-1368 767.12,-1368 1483.62,-1368 1483.62,-1368 1489.62,-1368 1495.62,-1374 1495.62,-1380 1495.62,-1380 1495.62,-1392 1495.62,-1392 1495.62,-1398 1489.62,-1404 1483.62,-1404"/>
|
328
|
+
<text text-anchor="middle" x="1125.38" y="-1382.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_1_determining_exclusions_default_determining_exclusions_known_clusters_validator</text>
|
329
|
+
</g>
|
330
|
+
<!-- 13->11 -->
|
331
|
+
<g id="edge30" class="edge">
|
332
|
+
<title>13->11</title>
|
333
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1017.23,-1367.02C958.55,-1357.26 885.84,-1345.17 825.29,-1335.1"/>
|
334
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="825.99,-1331.67 815.55,-1333.48 824.84,-1338.58 825.99,-1331.67"/>
|
335
|
+
</g>
|
336
|
+
<!-- 14 -->
|
337
|
+
<g id="node15" class="node">
|
338
|
+
<title>14</title>
|
339
|
+
<path fill="none" stroke="#d8ac56" stroke-width="2" d="M1062.25,-1260C1062.25,-1260 406.5,-1260 406.5,-1260 400.5,-1260 394.5,-1254 394.5,-1248 394.5,-1248 394.5,-1236 394.5,-1236 394.5,-1230 400.5,-1224 406.5,-1224 406.5,-1224 1062.25,-1224 1062.25,-1224 1068.25,-1224 1074.25,-1230 1074.25,-1236 1074.25,-1236 1074.25,-1248 1074.25,-1248 1074.25,-1254 1068.25,-1260 1062.25,-1260"/>
|
340
|
+
<text text-anchor="middle" x="734.38" y="-1238.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_1_removing_records_default_removing_records_input_datasets_validator</text>
|
341
|
+
</g>
|
342
|
+
<!-- 14->10 -->
|
343
|
+
<g id="edge27" class="edge">
|
344
|
+
<title>14->10</title>
|
345
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M827.13,-1223.06C877.16,-1213.39 939.09,-1201.41 990.94,-1191.39"/>
|
346
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="991.42,-1194.86 1000.58,-1189.52 990.09,-1187.99 991.42,-1194.86"/>
|
347
|
+
</g>
|
348
|
+
<!-- 15->10 -->
|
349
|
+
<g id="edge28" class="edge">
|
350
|
+
<title>15->10</title>
|
351
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1346.28,-1223.06C1300.14,-1213.45 1243.09,-1201.57 1195.15,-1191.58"/>
|
352
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1196,-1188.18 1185.5,-1189.57 1194.57,-1195.03 1196,-1188.18"/>
|
353
|
+
</g>
|
354
|
+
<!-- 16 -->
|
355
|
+
<g id="node17" class="node">
|
356
|
+
<title>16</title>
|
357
|
+
<path fill="none" stroke="#d88d56" stroke-width="2" d="M2249.25,-1188C2249.25,-1188 1719.5,-1188 1719.5,-1188 1713.5,-1188 1707.5,-1182 1707.5,-1176 1707.5,-1176 1707.5,-1164 1707.5,-1164 1707.5,-1158 1713.5,-1152 1719.5,-1152 1719.5,-1152 2249.25,-1152 2249.25,-1152 2255.25,-1152 2261.25,-1158 2261.25,-1164 2261.25,-1164 2261.25,-1176 2261.25,-1176 2261.25,-1182 2255.25,-1188 2249.25,-1188"/>
|
358
|
+
<text text-anchor="middle" x="1984.38" y="-1166.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_2_removing_records_default_removing_records</text>
|
359
|
+
</g>
|
360
|
+
<!-- 16->9 -->
|
361
|
+
<g id="edge24" class="edge">
|
362
|
+
<title>16->9</title>
|
363
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1986.29,-1151.19C1987.4,-1130.64 1985.6,-1097.44 1965.38,-1080 1919.38,-1040.33 1499.2,-1047.5 1397.1,-1044.05"/>
|
364
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1397.38,-1040.56 1387.22,-1043.58 1397.05,-1047.55 1397.38,-1040.56"/>
|
365
|
+
</g>
|
366
|
+
<!-- 16->22 -->
|
367
|
+
<g id="edge39" class="edge">
|
368
|
+
<title>16->22</title>
|
369
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1756.27,-1151.02C1627.96,-1140.9 1467.86,-1128.28 1337.49,-1118.01"/>
|
370
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1337.83,-1114.52 1327.59,-1117.23 1337.28,-1121.5 1337.83,-1114.52"/>
|
371
|
+
</g>
|
372
|
+
<!-- 16->23 -->
|
373
|
+
<g id="edge41" class="edge">
|
374
|
+
<title>16->23</title>
|
375
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1994.66,-1151C2004.46,-1131.2 2015.4,-1099.6 1998.38,-1080 1978.06,-1056.61 1921.91,-1043.26 1859.04,-1035.73"/>
|
376
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1859.73,-1032.28 1849.4,-1034.64 1858.94,-1039.24 1859.73,-1032.28"/>
|
377
|
+
</g>
|
378
|
+
<!-- 16->24 -->
|
379
|
+
<g id="edge44" class="edge">
|
380
|
+
<title>16->24</title>
|
381
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1908.53,-1151.06C1868.32,-1141.55 1818.69,-1129.82 1776.74,-1119.9"/>
|
382
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1777.76,-1116.54 1767.22,-1117.65 1776.15,-1123.35 1777.76,-1116.54"/>
|
383
|
+
</g>
|
384
|
+
<!-- 17 -->
|
385
|
+
<g id="node18" class="node">
|
386
|
+
<title>17</title>
|
387
|
+
<path fill="none" stroke="#5673d8" stroke-width="2" d="M2429.75,-1332C2429.75,-1332 1843,-1332 1843,-1332 1837,-1332 1831,-1326 1831,-1320 1831,-1320 1831,-1308 1831,-1308 1831,-1302 1837,-1296 1843,-1296 1843,-1296 2429.75,-1296 2429.75,-1296 2435.75,-1296 2441.75,-1302 2441.75,-1308 2441.75,-1308 2441.75,-1320 2441.75,-1320 2441.75,-1326 2435.75,-1332 2429.75,-1332"/>
|
388
|
+
<text text-anchor="middle" x="2136.38" y="-1310.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_2_determining_exclusions_default_determining_exclusions</text>
|
389
|
+
</g>
|
390
|
+
<!-- 17->16 -->
|
391
|
+
<g id="edge32" class="edge">
|
392
|
+
<title>17->16</title>
|
393
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1905.73,-1295.01C1865.92,-1287.2 1832.94,-1276.02 1819.38,-1260 1793.01,-1228.87 1832.02,-1206.88 1878.7,-1192.56"/>
|
394
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1879.49,-1195.97 1888.12,-1189.83 1877.54,-1189.25 1879.49,-1195.97"/>
|
395
|
+
</g>
|
396
|
+
<!-- 21 -->
|
397
|
+
<g id="node22" class="node">
|
398
|
+
<title>21</title>
|
399
|
+
<path fill="none" stroke="#56d8a9" stroke-width="2" d="M3194.25,-1260C3194.25,-1260 2538.5,-1260 2538.5,-1260 2532.5,-1260 2526.5,-1254 2526.5,-1248 2526.5,-1248 2526.5,-1236 2526.5,-1236 2526.5,-1230 2532.5,-1224 2538.5,-1224 2538.5,-1224 3194.25,-1224 3194.25,-1224 3200.25,-1224 3206.25,-1230 3206.25,-1236 3206.25,-1236 3206.25,-1248 3206.25,-1248 3206.25,-1254 3200.25,-1260 3194.25,-1260"/>
|
400
|
+
<text text-anchor="middle" x="2866.38" y="-1238.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_2_removing_records_default_removing_records_ids_to_remove_validator</text>
|
401
|
+
</g>
|
402
|
+
<!-- 17->21 -->
|
403
|
+
<g id="edge37" class="edge">
|
404
|
+
<title>17->21</title>
|
405
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M2323.89,-1295.02C2428.63,-1284.98 2559.13,-1272.46 2665.89,-1262.23"/>
|
406
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="2666.15,-1265.72 2675.77,-1261.28 2665.48,-1258.75 2666.15,-1265.72"/>
|
407
|
+
</g>
|
408
|
+
<!-- 18 -->
|
409
|
+
<g id="node19" class="node">
|
410
|
+
<title>18</title>
|
411
|
+
<path fill="none" stroke="#d88556" stroke-width="2" d="M2407.75,-1404C2407.75,-1404 1695,-1404 1695,-1404 1689,-1404 1683,-1398 1683,-1392 1683,-1392 1683,-1380 1683,-1380 1683,-1374 1689,-1368 1695,-1368 1695,-1368 2407.75,-1368 2407.75,-1368 2413.75,-1368 2419.75,-1374 2419.75,-1380 2419.75,-1380 2419.75,-1392 2419.75,-1392 2419.75,-1398 2413.75,-1404 2407.75,-1404"/>
|
412
|
+
<text text-anchor="middle" x="2051.38" y="-1382.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_2_determining_exclusions_default_determining_exclusions_input_datasets_validator</text>
|
413
|
+
</g>
|
414
|
+
<!-- 18->17 -->
|
415
|
+
<g id="edge35" class="edge">
|
416
|
+
<title>18->17</title>
|
417
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M2072.82,-1367.34C2082.51,-1359.36 2094.16,-1349.77 2104.82,-1340.99"/>
|
418
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="2106.81,-1343.88 2112.3,-1334.83 2102.36,-1338.48 2106.81,-1343.88"/>
|
419
|
+
</g>
|
420
|
+
<!-- 19 -->
|
421
|
+
<g id="node20" class="node">
|
422
|
+
<title>19</title>
|
423
|
+
<path fill="none" stroke="#d87556" stroke-width="2" d="M3166.62,-1404C3166.62,-1404 2450.12,-1404 2450.12,-1404 2444.12,-1404 2438.12,-1398 2438.12,-1392 2438.12,-1392 2438.12,-1380 2438.12,-1380 2438.12,-1374 2444.12,-1368 2450.12,-1368 2450.12,-1368 3166.62,-1368 3166.62,-1368 3172.62,-1368 3178.62,-1374 3178.62,-1380 3178.62,-1380 3178.62,-1392 3178.62,-1392 3178.62,-1398 3172.62,-1404 3166.62,-1404"/>
|
424
|
+
<text text-anchor="middle" x="2808.38" y="-1382.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_2_determining_exclusions_default_determining_exclusions_known_clusters_validator</text>
|
425
|
+
</g>
|
426
|
+
<!-- 19->17 -->
|
427
|
+
<g id="edge36" class="edge">
|
428
|
+
<title>19->17</title>
|
429
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M2635.75,-1367.02C2539.64,-1357.01 2419.94,-1344.54 2321.83,-1334.32"/>
|
430
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="2322.38,-1330.86 2312.07,-1333.3 2321.66,-1337.82 2322.38,-1330.86"/>
|
431
|
+
</g>
|
432
|
+
<!-- 20 -->
|
433
|
+
<g id="node21" class="node">
|
434
|
+
<title>20</title>
|
435
|
+
<path fill="none" stroke="#d85656" stroke-width="2" d="M2496.25,-1260C2496.25,-1260 1840.5,-1260 1840.5,-1260 1834.5,-1260 1828.5,-1254 1828.5,-1248 1828.5,-1248 1828.5,-1236 1828.5,-1236 1828.5,-1230 1834.5,-1224 1840.5,-1224 1840.5,-1224 2496.25,-1224 2496.25,-1224 2502.25,-1224 2508.25,-1230 2508.25,-1236 2508.25,-1236 2508.25,-1248 2508.25,-1248 2508.25,-1254 2502.25,-1260 2496.25,-1260"/>
|
436
|
+
<text text-anchor="middle" x="2168.38" y="-1238.88" font-family="sans" font-size="10.00">determining_exclusions_and_removing_records_parallel_split_2_removing_records_default_removing_records_input_datasets_validator</text>
|
437
|
+
</g>
|
438
|
+
<!-- 20->16 -->
|
439
|
+
<g id="edge33" class="edge">
|
440
|
+
<title>20->16</title>
|
441
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M2121.47,-1223.15C2097.77,-1214.14 2068.77,-1203.11 2043.55,-1193.51"/>
|
442
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="2044.94,-1190.29 2034.35,-1190.01 2042.45,-1196.84 2044.94,-1190.29"/>
|
443
|
+
</g>
|
444
|
+
<!-- 21->16 -->
|
445
|
+
<g id="edge34" class="edge">
|
446
|
+
<title>21->16</title>
|
447
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M2639.81,-1223.02C2512.37,-1212.9 2353.35,-1200.28 2223.86,-1190.01"/>
|
448
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="2224.29,-1186.53 2214.04,-1189.23 2223.74,-1193.51 2224.29,-1186.53"/>
|
449
|
+
</g>
|
450
|
+
<!-- 22->9 -->
|
451
|
+
<g id="edge25" class="edge">
|
452
|
+
<title>22->9</title>
|
453
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1112.78,-1079.34C1119.81,-1071.77 1128.18,-1062.75 1135.98,-1054.35"/>
|
454
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1138.45,-1056.83 1142.69,-1047.12 1133.32,-1052.07 1138.45,-1056.83"/>
|
455
|
+
</g>
|
456
|
+
<!-- 23->8 -->
|
457
|
+
<g id="edge21" class="edge">
|
458
|
+
<title>23->8</title>
|
459
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1601.44,-1007.3C1576.88,-988.05 1535.41,-957.21 1496.38,-936 1475.28,-924.54 1451.18,-914.09 1429.45,-905.57"/>
|
460
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1430.72,-902.31 1420.13,-901.99 1428.21,-908.84 1430.72,-902.31"/>
|
461
|
+
</g>
|
462
|
+
<!-- 23->25 -->
|
463
|
+
<g id="edge46" class="edge">
|
464
|
+
<title>23->25</title>
|
465
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1557.27,-1007.06C1522.68,-997.68 1480.1,-986.13 1443.85,-976.29"/>
|
466
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1444.8,-972.92 1434.23,-973.68 1442.97,-979.68 1444.8,-972.92"/>
|
467
|
+
</g>
|
468
|
+
<!-- 24->23 -->
|
469
|
+
<g id="edge42" class="edge">
|
470
|
+
<title>24->23</title>
|
471
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1671.97,-1079.34C1664.94,-1071.77 1656.57,-1062.75 1648.77,-1054.35"/>
|
472
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1651.43,-1052.07 1642.06,-1047.12 1646.3,-1056.83 1651.43,-1052.07"/>
|
473
|
+
</g>
|
474
|
+
<!-- 25->8 -->
|
475
|
+
<g id="edge22" class="edge">
|
476
|
+
<title>25->8</title>
|
477
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1365.38,-935.34C1365.38,-928.75 1365.38,-921.08 1365.38,-913.67"/>
|
478
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1368.88,-913.93 1365.38,-903.93 1361.88,-913.93 1368.88,-913.93"/>
|
479
|
+
</g>
|
480
|
+
<!-- 26->7 -->
|
481
|
+
<g id="edge18" class="edge">
|
482
|
+
<title>26->7</title>
|
483
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1151.38,-791.15C1163.37,-782.93 1177.8,-773.02 1190.86,-764.06"/>
|
484
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1192.66,-767.07 1198.92,-758.53 1188.7,-761.3 1192.66,-767.07"/>
|
485
|
+
</g>
|
486
|
+
<!-- 27->7 -->
|
487
|
+
<g id="edge19" class="edge">
|
488
|
+
<title>27->7</title>
|
489
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1386.54,-791.06C1358.48,-781.88 1324.07,-770.63 1294.44,-760.94"/>
|
490
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1295.53,-757.61 1284.94,-757.83 1293.36,-764.27 1295.53,-757.61"/>
|
491
|
+
</g>
|
492
|
+
<!-- 28->4 -->
|
493
|
+
<g id="edge13" class="edge">
|
494
|
+
<title>28->4</title>
|
495
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M977.94,-719.15C976.18,-700.59 975.59,-671.08 985.38,-648 989.4,-638.51 995.9,-629.65 1002.87,-621.99"/>
|
496
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1005.11,-624.69 1009.66,-615.12 1000.14,-619.77 1005.11,-624.69"/>
|
497
|
+
</g>
|
498
|
+
<!-- 29->4 -->
|
499
|
+
<g id="edge14" class="edge">
|
500
|
+
<title>29->4</title>
|
501
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1085.96,-647.34C1078.42,-639.69 1069.42,-630.56 1061.07,-622.08"/>
|
502
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1063.66,-619.72 1054.15,-615.06 1058.67,-624.64 1063.66,-619.72"/>
|
503
|
+
</g>
|
504
|
+
<!-- 30->3 -->
|
505
|
+
<g id="edge10" class="edge">
|
506
|
+
<title>30->3</title>
|
507
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1084.47,-503.34C1077.14,-495.69 1068.41,-486.56 1060.29,-478.08"/>
|
508
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1063.05,-475.89 1053.6,-471.09 1057.99,-480.73 1063.05,-475.89"/>
|
509
|
+
</g>
|
510
|
+
<!-- 31 -->
|
511
|
+
<g id="node32" class="node">
|
512
|
+
<title>31</title>
|
513
|
+
<path fill="none" stroke="#9fd856" stroke-width="2" d="M1218.25,-396C1218.25,-396 970.5,-396 970.5,-396 964.5,-396 958.5,-390 958.5,-384 958.5,-384 958.5,-372 958.5,-372 958.5,-366 964.5,-360 970.5,-360 970.5,-360 1218.25,-360 1218.25,-360 1224.25,-360 1230.25,-366 1230.25,-372 1230.25,-372 1230.25,-384 1230.25,-384 1230.25,-390 1224.25,-396 1218.25,-396"/>
|
514
|
+
<text text-anchor="middle" x="1094.38" y="-374.88" font-family="sans" font-size="10.00">default_updating_clusters_known_clusters_validator</text>
|
515
|
+
</g>
|
516
|
+
<!-- 31->2 -->
|
517
|
+
<g id="edge7" class="edge">
|
518
|
+
<title>31->2</title>
|
519
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1094.38,-359.34C1094.38,-352.75 1094.38,-345.08 1094.38,-337.67"/>
|
520
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1097.88,-337.93 1094.38,-327.93 1090.88,-337.93 1097.88,-337.93"/>
|
521
|
+
</g>
|
522
|
+
<!-- 32->2 -->
|
523
|
+
<g id="edge8" class="edge">
|
524
|
+
<title>32->2</title>
|
525
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M883.14,-359.06C921.93,-349.5 969.85,-337.69 1010.23,-327.74"/>
|
526
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1010.97,-331.16 1019.84,-325.37 1009.29,-324.37 1010.97,-331.16"/>
|
527
|
+
</g>
|
528
|
+
<!-- 33 -->
|
529
|
+
<g id="node34" class="node">
|
530
|
+
<title>33</title>
|
531
|
+
<path fill="none" stroke="#70d856" stroke-width="2" d="M1361.12,-252C1361.12,-252 995.62,-252 995.62,-252 989.62,-252 983.62,-246 983.62,-240 983.62,-240 983.62,-228 983.62,-228 983.62,-222 989.62,-216 995.62,-216 995.62,-216 1361.12,-216 1361.12,-216 1367.12,-216 1373.12,-222 1373.12,-228 1373.12,-228 1373.12,-240 1373.12,-240 1373.12,-246 1367.12,-252 1361.12,-252"/>
|
532
|
+
<text text-anchor="middle" x="1178.38" y="-230.88" font-family="sans" font-size="10.00">dummy_canonicalizing_and_downstream_analysis_input_datasets_validator</text>
|
533
|
+
</g>
|
534
|
+
<!-- 33->1 -->
|
535
|
+
<g id="edge4" class="edge">
|
536
|
+
<title>33->1</title>
|
537
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1178.38,-215.34C1178.38,-208.75 1178.38,-201.08 1178.38,-193.67"/>
|
538
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1181.88,-193.93 1178.38,-183.93 1174.88,-193.93 1181.88,-193.93"/>
|
539
|
+
</g>
|
540
|
+
<!-- 34->1 -->
|
541
|
+
<g id="edge5" class="edge">
|
542
|
+
<title>34->1</title>
|
543
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M887.81,-215.02C942.09,-205.3 1009.28,-193.27 1065.37,-183.23"/>
|
544
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1065.69,-186.73 1074.92,-181.52 1064.46,-179.84 1065.69,-186.73"/>
|
545
|
+
</g>
|
546
|
+
<!-- 35->0 -->
|
547
|
+
<g id="edge2" class="edge">
|
548
|
+
<title>35->0</title>
|
549
|
+
<path fill="none" stroke="grey" stroke-width="2" d="M1222.49,-71.34C1216.18,-63.85 1208.67,-54.95 1201.66,-46.63"/>
|
550
|
+
<polygon fill="grey" stroke="grey" stroke-width="2" points="1204.54,-44.61 1195.41,-39.22 1199.18,-49.12 1204.54,-44.61"/>
|
551
|
+
</g>
|
552
|
+
</g>
|
553
|
+
</svg>
|