File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
lib/BioX/Workflow/Command Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,12 @@ sub walk_FILES {
5050 $self -> pre_FILES( $attr , ' INPUT' );
5151 $self -> add_graph(' INPUT' );
5252 $self -> clear_files;
53+ $self -> files([]);
5354
5455 $self -> pre_FILES( $attr , ' OUTPUT' );
5556 $self -> add_graph(' OUTPUT' );
5657 $self -> clear_files;
58+ $self -> files([]);
5759}
5860
5961sub pre_FILES {
Original file line number Diff line number Diff line change @@ -150,13 +150,13 @@ sub gen_row {
150150
151151 my $rel = ' ' ;
152152 $rel = $file ;
153- $rel = path($file )-> absolute if $self -> use_full ;
153+ $rel = path($file )-> absolute if $self -> use_abs ;
154154
155- my $basename = basename($file ) unless $self -> use_full ;
155+ my $basename = basename($file ) unless $self -> use_abs ;
156156
157157 # Add the filename
158- push ( @trow , $rel ) if $self -> use_full ;
159- push ( @trow , $basename ) if !$self -> use_full ;
158+ push ( @trow , $rel ) if $self -> use_abs ;
159+ push ( @trow , $basename ) if !$self -> use_abs ;
160160
161161 # Does the file exist?
162162 if ( -e $file ) {
You can’t perform that action at this time.
0 commit comments