Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge devel to master for release 2.51.0 #474

Merged
merged 4 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Unreleased

Release 2.51.0 (2024-10-25)
- Banish more Sequels

Release 2.50.1 (2024-10-04)
- Remove sequel specific references to Sequel from the code
- Following a release on 07/09/2024, see https://metacpan.org/dist/App-perlbrew/changes
Expand Down
2 changes: 1 addition & 1 deletion bin/npg_pacbio_analysis_monitor.pl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
push @init_args, api_uri => $api_uri;
}

my $monitor = WTSI::NPG::HTS::PacBio::Sequel::AnalysisMonitor->new
my $monitor = WTSI::NPG::HTS::PacBio::AnalysisMonitor->new
(@init_args);

my ($num_files, $num_published, $num_errors) =
Expand Down
4 changes: 2 additions & 2 deletions bin/npg_pacbio_run_auxiliary.pl
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@
my ($num_runs, $num_processed, $num_actioned, $num_errors);

if ($task eq 'delete') {
my $delete = WTSI::NPG::HTS::PacBio::Sequel::RunDeleteMonitor->new(@init_args);
my $delete = WTSI::NPG::HTS::PacBio::RunDeleteMonitor->new(@init_args);
($num_runs, $num_processed, $num_actioned, $num_errors) = $delete->delete_runs;
} elsif ($task eq 'audit') {
my $audit = WTSI::NPG::HTS::PacBio::Sequel::RunAuditor->new(@init_args);
my $audit = WTSI::NPG::HTS::PacBio::RunAuditor->new(@init_args);
($num_runs, $num_processed, $num_actioned, $num_errors) = $audit->check_runs;
}

Expand Down
2 changes: 1 addition & 1 deletion bin/npg_pacbio_runmonitor.pl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'verbose' => \$verbose);


my $module = 'WTSI::NPG::HTS::PacBio::Sequel::RunMonitor';
my $module = 'WTSI::NPG::HTS::PacBio::RunMonitor';

if ($log4perl_config) {
Log::Log4perl::init($log4perl_config);
Expand Down
2 changes: 1 addition & 1 deletion bin/npg_publish_pacbio_run.pl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@



my $module = 'WTSI::NPG::HTS::PacBio::Sequel::RunPublisher';
my $module = 'WTSI::NPG::HTS::PacBio::RunPublisher';

# Process CLI arguments
if ($log4perl_config) {
Expand Down
2 changes: 1 addition & 1 deletion lib/WTSI/NPG/HTS/PacBio/MonitorBase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package WTSI::NPG::HTS::PacBio::MonitorBase;
use Moose::Role;
use WTSI::NPG::iRODS;
use WTSI::DNAP::Warehouse::Schema;

use WTSI::NPG::HTS::PacBio::Sequel::APIClient;

our $VERSION = '';

Expand Down
Loading