Skip to content

Commit

Permalink
Merge branch 'version/2.4'
Browse files Browse the repository at this point in the history
* version/2.4:
  Like the other param_* methods, param_exists should be in Process
  • Loading branch information
muffato committed Apr 30, 2018
2 parents d13358d + 74e97b2 commit 2113529
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/Bio/EnsEMBL/Hive/Process.pm
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,12 @@ sub param_required {
return $value;
}

sub param_exists {
my $self = shift @_;

return $self->input_job->param_exists(@_);
}

sub param_is_defined {
my $self = shift @_;

Expand Down

0 comments on commit 2113529

Please sign in to comment.