From 4a0f473cc20d7a9f690f996ffba28475f533a6d4 Mon Sep 17 00:00:00 2001 From: Alex Kotlar Date: Wed, 18 Sep 2024 17:35:29 -0400 Subject: [PATCH] run perltidy --- perl/lib/Interface.pm | 5 +++-- perl/lib/Seq/Definition.pm | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/perl/lib/Interface.pm b/perl/lib/Interface.pm index 0e9f27e22..085ca4ef6 100644 --- a/perl/lib/Interface.pm +++ b/perl/lib/Interface.pm @@ -96,8 +96,9 @@ has compress => ( is => 'ro', isa => 'Str', metaclass => 'Getopt', - documentation => 'Enable compression. Specify the type of compression: lz4 gz bgz. `bgz` is an alias for gz (gzip); when bgzip is available, it will be used and will generate a block gzipped file with index', - default => 0, + documentation => + 'Enable compression. Specify the type of compression: lz4 gz bgz. `bgz` is an alias for gz (gzip); when bgzip is available, it will be used and will generate a block gzipped file with index', + default => 0, ); has archive => ( diff --git a/perl/lib/Seq/Definition.pm b/perl/lib/Seq/Definition.pm index fe699d93f..a49708243 100644 --- a/perl/lib/Seq/Definition.pm +++ b/perl/lib/Seq/Definition.pm @@ -46,8 +46,7 @@ has temp_dir => ( is => 'ro', isa => 'Maybe[Str]' ); # Do we want to compress? has compress => ( is => 'ro', isa => 'Str', default => 1 ); -has compressType => - ( is => 'ro', isa => enum( [qw/lz4 gz bgz/] ), default => 'gz' ); +has compressType => ( is => 'ro', isa => enum( [qw/lz4 gz bgz/] ), default => 'gz' ); # Do we want to tarball our results has archive => ( is => 'ro', isa => 'Bool', default => 0 );