diff --git a/modules/Bio/EnsEMBL/Pipeline/FASTA/SCPBlast.pm b/modules/Bio/EnsEMBL/Pipeline/FASTA/SCPBlast.pm index afa05182030a22aa4ba8b49711177956fa5b28a1..e28609c2241e94ced8df0e0b02b32f749e73179a 100644 --- a/modules/Bio/EnsEMBL/Pipeline/FASTA/SCPBlast.pm +++ b/modules/Bio/EnsEMBL/Pipeline/FASTA/SCPBlast.pm @@ -31,6 +31,8 @@ Allowed parameters are: =over 8 +=item no_scp - If true then we will not run SCP but still finish cleanly without error + =item type - The type of dump to copy. Required parameter =item genomic_dir - Needed if you are copying DNA genomic files @@ -66,6 +68,7 @@ use File::Spec; sub param_defaults { my ($self) = @_; return { + no_scp => 0, # genomic_dir => '', # genes_dir => '', # target_servers => ['srv1', 'srv2'], @@ -80,6 +83,11 @@ sub param_defaults { sub fetch_input { my ($self) = @_; + if($self->param('no_scp')) { + $self->info('Skipping as no_scp has been specified'); + return; + } + my $servers = $self->param('target_servers'); if(!check_ref($servers, 'ARRAY') || ! @{$servers}) { @@ -105,6 +113,10 @@ sub fetch_input { sub run { my ($self) = @_; + if($self->param('no_scp')) { + $self->info('Skipping as no_scp has been specified'); + return; + } my $servers = $self->param('target_servers'); return unless @{$servers}; my $files = $self->get_files(); diff --git a/modules/Bio/EnsEMBL/Pipeline/PipeConfig/FASTA_conf.pm b/modules/Bio/EnsEMBL/Pipeline/PipeConfig/FASTA_conf.pm index 0914d5f60151b312a317f7b6f06bd4b24b93f836..d0c26e9d1196c559a4ce1b0ba51c42a3480d7760 100644 --- a/modules/Bio/EnsEMBL/Pipeline/PipeConfig/FASTA_conf.pm +++ b/modules/Bio/EnsEMBL/Pipeline/PipeConfig/FASTA_conf.pm @@ -42,6 +42,7 @@ sub default_options { scp_user => $self->o('ENV', 'USER'), scp_identity => '', + no_scp => 0, ### Defaults