https://kedro.org/ logo
#beginners-need-help
Title
# beginners-need-help
k

kradja

07/12/2022, 2:32 AM
When I run kedro with
kedro run
my first pipeline data_processing has a node which outputs prokka_bins. This data is one of the outputs of the pipeline data_processing.
Copy code
namespace="data_processing", 
inputs=["partition_prokka_faa", "partition_prokka_gff"], 
outputs=["hypo_prot","prokka_bins"]
I was wondering how I can access the data from my new pipeline
edge_processing
inputs="prokka_bins"
when this code is within a node in edge_processing, I get the error.
ValueError: Pipeline input(s) {'edge_processing.prokka_bins'} not found in the DataCatalog
Other than essentially duplicating an entry in my DataCatalog with
edge_processing.prokka_bins
which makes things more messy, is there any way I can access this data in my second pipeline?