Convert-Pheno

 view release on metacpan or  search on metacpan

lib/Convert/Pheno/Pipeline.pm  view on Meta::CPAN

package Convert::Pheno::Pipeline;

use strict;
use warnings;

use Exporter 'import';

use Convert::Pheno::ConversionRequest;
use Convert::Pheno::ExecutionContext;

our @EXPORT_OK = qw(run_conversion_pipeline);

sub run_conversion_pipeline {
    my ($converter) = @_;
    my $request = Convert::Pheno::ConversionRequest->from_converter($converter);
    my $spec    = $request->spec;

    die "Conversion <$spec->{name}> is not a compound pipeline\n"
      unless $spec->{operation} eq 'pipeline';
    die "Conversion <$spec->{name}> does not support streaming\n"
      if $converter->{stream} && !$spec->{streaming};

    my $execution = Convert::Pheno::ExecutionContext->new(
        { request => $request }
    );

    # OMOP file input is already emitted one participant at a time. Preserve
    # that bounded-memory path while applying the downstream BFF-to-PXF stage
    # in the output sink rather than materializing the full BFF intermediate.
    if ( $spec->{name} eq 'omop2pxf' && !$request->has_data ) {
        my ( $stage, $arguments ) = $execution->begin_next_stage;
        my $stage_converter = Convert::Pheno->new($arguments);
        $stage_converter->{method_ori} = $spec->{name};
        my $result = $stage_converter->$stage();
        return $execution->complete_stage($result);
    }

    while ( $execution->has_next_stage ) {
        my ( $stage, $arguments ) = $execution->begin_next_stage;
        my $stage_converter = Convert::Pheno->new($arguments);
        my $result = $stage_converter->$stage();
        $execution->complete_stage($result);
    }

    return $execution->result;
}

1;



( run in 1.323 second using v1.01-cache-2.11-cpan-5c0b1e786e0 )