Skip to content

Commit

Permalink
run perltidy
Browse files Browse the repository at this point in the history
  • Loading branch information
akotlar committed Sep 18, 2024
1 parent e1ebb2a commit 4a0f473
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions perl/lib/Interface.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 => (
Expand Down
3 changes: 1 addition & 2 deletions perl/lib/Seq/Definition.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit 4a0f473

Please sign in to comment.