LICENSE
MANIFEST.in
README.rst
pyproject.toml
setup.cfg
setup.py
docs/Makefile
docs/conf.py
docs/index.rst
docs/installation.rst
docs/make.bat
docs/modules.rst
docs/pipelime.augmentations.rst
docs/pipelime.cli.conversions.rst
docs/pipelime.cli.datasets.rst
docs/pipelime.cli.h5.rst
docs/pipelime.cli.rst
docs/pipelime.cli.underfolder.rst
docs/pipelime.cli.workflow.rst
docs/pipelime.filesystem.rst
docs/pipelime.h5.rst
docs/pipelime.rst
docs/pipelime.sequences.readers.rst
docs/pipelime.sequences.rst
docs/pipelime.sequences.writers.rst
docs/pipelime.tools.rst
docs/readme.rst
docs/usage.rst
docs/images/naming.png
docs/images/underfolder.png
pipelime/__init__.py
pipelime/cli.py
pipelime/pipelime.py
pipelime.egg-info/PKG-INFO
pipelime.egg-info/SOURCES.txt
pipelime.egg-info/dependency_links.txt
pipelime.egg-info/entry_points.txt
pipelime.egg-info/not-zip-safe
pipelime.egg-info/requires.txt
pipelime.egg-info/top_level.txt
pipelime/cli/__init__.py
pipelime/cli/dump.py
pipelime/cli/main.py
pipelime/cli/summary.py
pipelime/cli/conversions/__init__.py
pipelime/cli/conversions/conversions.py
pipelime/cli/conversions/h5_to_underfolder.py
pipelime/cli/conversions/subfolders_to_underfolder.py
pipelime/cli/conversions/underfolder_to_h5.py
pipelime/cli/datasets/__init__.py
pipelime/cli/datasets/datasets.py
pipelime/cli/datasets/generate_toy_dataset.py
pipelime/cli/h5/__init__.py
pipelime/cli/h5/h5.py
pipelime/cli/h5/operations.py
pipelime/cli/piper/__init__.py
pipelime/cli/piper/piper.py
pipelime/cli/underfolder/__init__.py
pipelime/cli/underfolder/operations.py
pipelime/cli/underfolder/underfolder.py
pipelime/cli/workflow/__init__.py
pipelime/cli/workflow/click2cwl.py
pipelime/cli/workflow/delete_nodes.py
pipelime/cli/workflow/init_workflow.py
pipelime/cli/workflow/list_nodes.py
pipelime/cli/workflow/run_workflow.py
pipelime/cli/workflow/show_graph.py
pipelime/cli/workflow/update_nodes.py
pipelime/cli/workflow/workflow.py
pipelime/converters/__init__.py
pipelime/converters/base.py
pipelime/converters/subfolders2underfolder.py
pipelime/filesystem/__init__.py
pipelime/filesystem/remotes.py
pipelime/filesystem/toolkit.py
pipelime/h5/__init__.py
pipelime/h5/toolkit.py
pipelime/pipes/__init__.py
pipelime/pipes/communication.py
pipelime/pipes/graph.py
pipelime/pipes/model.py
pipelime/pipes/piper.py
pipelime/pipes/drawing/__init__.py
pipelime/pipes/drawing/base.py
pipelime/pipes/drawing/factory.py
pipelime/pipes/drawing/graphviz.py
pipelime/pipes/drawing/mermaid.py
pipelime/pipes/executors/__init__.py
pipelime/pipes/executors/base.py
pipelime/pipes/executors/naive.py
pipelime/pipes/parsers/__init__.py
pipelime/pipes/parsers/base.py
pipelime/pipes/parsers/factory.py
pipelime/pipes/parsers/simple.py
pipelime/sequences/__init__.py
pipelime/sequences/operations.py
pipelime/sequences/pipes.py
pipelime/sequences/proxies.py
pipelime/sequences/samples.py
pipelime/sequences/stages.py
pipelime/sequences/validation.py
pipelime/sequences/api/__init__.py
pipelime/sequences/api/authentication.py
pipelime/sequences/api/base.py
pipelime/sequences/api/entities.py
pipelime/sequences/api/underfolder.py
pipelime/sequences/readers/__init__.py
pipelime/sequences/readers/base.py
pipelime/sequences/readers/filesystem.py
pipelime/sequences/readers/h5.py
pipelime/sequences/readers/summary.py
pipelime/sequences/streams/__init__.py
pipelime/sequences/streams/base.py
pipelime/sequences/streams/underfolder.py
pipelime/sequences/writers/__init__.py
pipelime/sequences/writers/base.py
pipelime/sequences/writers/filesystem.py
pipelime/sequences/writers/h5.py
pipelime/tools/__init__.py
pipelime/tools/bytes.py
pipelime/tools/click.py
pipelime/tools/dictionaries.py
pipelime/tools/idgenerators.py
pipelime/tools/modules.py
pipelime/tools/progress.py
pipelime/tools/toydataset.py
tests/__init__.py
tests/conftest.py
tests/test_pipelime.py
tests/pipelime/__init__.py
tests/pipelime/cli/__init__.py
tests/pipelime/cli/test_underfolder.py
tests/pipelime/converters/__init__.py
tests/pipelime/converters/test_subfolders2underfolder.py
tests/pipelime/filesystem/test_fstoolkit.py
tests/pipelime/filesystem/test_remotes.py
tests/pipelime/piper/__init__.py
tests/pipelime/piper/conftest.py
tests/pipelime/piper/test_dag_draw.py
tests/pipelime/piper/test_dag_executors.py
tests/pipelime/piper/test_dag_graphs.py
tests/pipelime/piper/test_dag_parser.py
tests/pipelime/piper/test_piper_commands.py
tests/pipelime/piper/test_piper_operations.py
tests/pipelime/sequences/__init__.py
tests/pipelime/sequences/conftest.py
tests/pipelime/sequences/test_operations.py
tests/pipelime/sequences/test_pipes.py
tests/pipelime/sequences/test_proxies.py
tests/pipelime/sequences/test_samples.py
tests/pipelime/sequences/test_samples_merge.py
tests/pipelime/sequences/test_sequence.py
tests/pipelime/sequences/test_stages.py
tests/pipelime/sequences/test_validation.py
tests/pipelime/sequences/api/__init__.py
tests/pipelime/sequences/api/test_underfolder_api.py
tests/pipelime/sequences/api/test_underfolder_interface.py
tests/pipelime/sequences/io/__init__.py
tests/pipelime/sequences/io/test_h5.py
tests/pipelime/sequences/io/test_mixed.py
tests/pipelime/sequences/io/test_summary.py
tests/pipelime/sequences/io/test_underfolder.py
tests/pipelime/sequences/io/underfolder/test_plugin_stage.py
tests/pipelime/sequences/streams/__init__.py
tests/pipelime/sequences/streams/test_underfolder.py
tests/pipelime/tools/__init__.py
tests/pipelime/tools/test_click.py
tests/pipelime/workflow/tools/test_cwl_template.py
tests/sample_data/datasets/underfolder_minimnist.h5
tests/sample_data/datasets/underfolder_empty/data/.placeholder
tests/sample_data/datasets/underfolder_minimnist/cfg.yml
tests/sample_data/datasets/underfolder_minimnist/numbers.txt
tests/sample_data/datasets/underfolder_minimnist/pose.txt
tests/sample_data/datasets/underfolder_minimnist/data/000000_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000000_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000000_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000000_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000000_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000000_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000000_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000001_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000001_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000001_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000001_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000001_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000001_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000001_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000002_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000002_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000002_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000002_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000002_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000002_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000002_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000003_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000003_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000003_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000003_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000003_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000003_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000003_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000004_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000004_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000004_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000004_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000004_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000004_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000004_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000005_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000005_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000005_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000005_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000005_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000005_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000005_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000006_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000006_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000006_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000006_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000006_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000006_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000006_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000007_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000007_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000007_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000007_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000007_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000007_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000007_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000008_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000008_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000008_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000008_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000008_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000008_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000008_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000009_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000009_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000009_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000009_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000009_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000009_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000009_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000010_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000010_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000010_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000010_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000010_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000010_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000010_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000011_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000011_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000011_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000011_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000011_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000011_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000011_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000012_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000012_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000012_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000012_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000012_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000012_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000012_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000013_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000013_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000013_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000013_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000013_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000013_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000013_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000014_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000014_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000014_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000014_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000014_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000014_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000014_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000015_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000015_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000015_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000015_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000015_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000015_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000015_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000016_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000016_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000016_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000016_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000016_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000016_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000016_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000017_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000017_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000017_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000017_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000017_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000017_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000017_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000018_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000018_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000018_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000018_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000018_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000018_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000018_points.txt
tests/sample_data/datasets/underfolder_minimnist/data/000019_image.jpg
tests/sample_data/datasets/underfolder_minimnist/data/000019_image_mask.png
tests/sample_data/datasets/underfolder_minimnist/data/000019_image_maskinv.png
tests/sample_data/datasets/underfolder_minimnist/data/000019_label.txt
tests/sample_data/datasets/underfolder_minimnist/data/000019_metadata.json
tests/sample_data/datasets/underfolder_minimnist/data/000019_metadatay.yml
tests/sample_data/datasets/underfolder_minimnist/data/000019_points.txt
tests/sample_data/datasets/underfolder_minimnist_queries/cfg.yml
tests/sample_data/datasets/underfolder_minimnist_queries/numbers.txt
tests/sample_data/datasets/underfolder_minimnist_queries/pose.txt
tests/sample_data/datasets/underfolder_minimnist_queries/data/00000_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00000_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00000_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00001_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00001_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00001_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00002_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00002_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00002_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00003_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00003_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00003_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00004_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00004_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00004_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00005_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00005_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00005_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00006_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00006_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00006_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00007_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00007_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00007_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00008_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00008_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00008_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00009_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00009_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00009_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00010_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00010_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00010_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00011_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00011_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00011_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00012_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00012_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00012_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00013_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00013_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00013_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00014_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00014_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00014_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00015_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00015_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00015_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00016_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00016_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00016_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00017_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00017_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00017_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00018_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00018_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00018_info.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00019_categories.yml
tests/sample_data/datasets/underfolder_minimnist_queries/data/00019_image.jpg
tests/sample_data/datasets/underfolder_minimnist_queries/data/00019_info.yml
tests/sample_data/datasets/underfolder_minimnist_schemas/bad.schema
tests/sample_data/datasets/underfolder_minimnist_schemas/deep.schema
tests/sample_data/datasets/underfolder_minimnist_schemas/invalid.schema
tests/sample_data/datasets/underfolder_minimnist_schemas/simple.schema
tests/sample_data/piper/dags/complex/dag_parsed.yml
tests/sample_data/piper/dags/complex/dag_to_parse.yml
tests/sample_data/piper/dags/complex/final_validation.py
tests/sample_data/piper/dags/complex/params.yml
tests/sample_data/piper/dags/complex/params_with_placeholders.yml
tests/sample_data/piper/dags/complex/schema_detected.schema
tests/sample_data/piper/dags/complex/schema_generated.schema
tests/sample_data/piper/dags/complex/schema_remapped.schema
tests/sample_data/piper/dags/invalid_arg_foreach/dag_parsed.yml
tests/sample_data/piper/dags/invalid_arg_foreach/dag_to_parse.yml
tests/sample_data/piper/dags/invalid_arg_foreach_content/dag_parsed.yml
tests/sample_data/piper/dags/invalid_arg_foreach_content/dag_to_parse.yml
tests/sample_data/piper/dags/invalid_node_foreach/dag_parsed.yml
tests/sample_data/piper/dags/invalid_node_foreach/dag_to_parse.yml
tests/sample_data/piper/dags/invalid_node_foreach_do_content/dag_parsed.yml
tests/sample_data/piper/dags/invalid_node_foreach_do_content/dag_to_parse.yml
tests/sample_data/piper/dags/invalid_nodes/dag_parsed.yml
tests/sample_data/piper/dags/invalid_nodes/dag_to_parse.yml
tests/sample_data/piper/dags/invalid_params/dag_parsed.yml
tests/sample_data/piper/dags/invalid_params/dag_to_parse.yml
tests/sample_data/piper/dags/no_params/dag_parsed.yml
tests/sample_data/piper/dags/no_params/dag_to_parse.yml
tests/sample_data/piper/dags/validation_error/dag_parsed.yml
tests/sample_data/piper/dags/validation_error/dag_to_parse.yml
tests/sample_data/piper/dags/validation_error/params.yml
tests/sample_data/piper/dags/validation_error/params_with_placeholders.yml
tests/sample_data/piper/dags/validation_error/schema_generated.schema
tests/sample_data/piper/dags/validation_error_noschema_file/dag_parsed.yml
tests/sample_data/piper/dags/validation_error_noschema_file/dag_to_parse.yml
tests/sample_data/piper/dags/validation_error_noschema_file/params.yml
tests/sample_data/piper/dags/validation_error_noschema_file/params_with_placeholders.yml
tests/sample_data/piper/piper_commands/fake_detector.py
tests/sample_data/piper/piper_commands/no_command_name.py
tests/sample_data/piper/piper_commands/not_a_piper.py
tests/sample_data/piper/piper_commands/wrong_inputs.py
tests/sample_data/piper/piper_commands/wrong_outputs.py