The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use NCBIx::BigFetch;

# Parameters
my $params = { project_id => '1', 
               base_dir   => '/home/user/data' };

# Start project
my $project = NCBIx::BigFetch->new( $params );

# Get missing batches 
while ( $project->missing_batches() ) { $project->get_missing_batch(); }

exit;