Skip to content

Commit b342446

Browse files
committed
removing orphan input check until further notice
1 parent ef7910d commit b342446

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

lib/BioX/Workflow/Command/run/Utils/Files/ResolveDeps.pm

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,19 @@ sub post_process_rules {
6565
# $self->app_log->info( 'Looking for orphan INPUTs '
6666
# . '(INPUTs with no corresponding OUTPUTs)' );
6767

68-
my $rule_count = 0;
69-
foreach my $rule ( $self->all_select_rule_keys ) {
70-
##Skip the first rule
71-
if ( $rule_count == 0 ) {
72-
$rule_count++;
73-
next;
74-
}
75-
$self->check_input_output($rule);
76-
}
77-
78-
79-
$self->app_log->warn( "Found Orphan Inputs (inputs with no corresponding outputs)\n" . $self->orphan_table )
80-
if $self->orphan_inputs;
68+
# my $rule_count = 0;
69+
# foreach my $rule ( $self->all_select_rule_keys ) {
70+
# ##Skip the first rule
71+
# if ( $rule_count == 0 ) {
72+
# $rule_count++;
73+
# next;
74+
# }
75+
# $self->check_input_output($rule);
76+
# }
77+
#
78+
#
79+
# $self->app_log->warn( "Found Orphan Inputs (inputs with no corresponding outputs)\n" . $self->orphan_table )
80+
# if $self->orphan_inputs;
8181

8282
$self->dedeps;
8383
$self->process_auto_deps;

0 commit comments

Comments
 (0)