App-Fasops
view release on metacpan or search on metacpan
lib/App/Fasops/Command/vars.pm view on Meta::CPAN
package App::Fasops::Command::vars;
use strict;
use warnings;
use autodie;
use Excel::Writer::XLSX;
use App::Fasops -command;
use App::Fasops::Common;
sub abstract {
return 'list substitutions';
}
sub opt_spec {
return (
[ "outfile|o=s", "Output filename. [stdout] for screen" ],
[ "annotation|a=s", "YAML file for cds/repeat" ],
[ "length|l=i", "the threshold of alignment length", { default => 1 } ],
[ 'outgroup', 'alignments have an outgroup', ],
[ 'nosingle', 'omit singleton', ],
[ 'nocomplex', 'omit complex', ],
{ show_defaults => 1, }
);
}
sub usage_desc {
return "fasops vars [options] <infile>";
}
sub description {
my $desc;
$desc .= ucfirst(abstract) . ".\n";
$desc .= <<'MARKDOWN';
* <infiles> are paths to axt files, .fas.gz is supported
* infile == stdin means reading from STDIN
MARKDOWN
return $desc;
}
sub validate_args {
my ( $self, $opt, $args ) = @_;
if ( @{$args} != 1 ) {
my $message = "This command need one input file.\n\tIt found";
$message .= sprintf " [%s]", $_ for @{$args};
$message .= ".\n";
$self->usage_error($message);
}
for ( @{$args} ) {
next if lc $_ eq "stdin";
if ( !Path::Tiny::path($_)->is_file ) {
$self->usage_error("The input file [$_] doesn't exist.");
}
}
if ( exists $opt->{annotation} ) {
if ( !Path::Tiny::path( $opt->{annotation} )->is_file ) {
$self->usage_error("The annotation file [$opt->{annotation}] doesn't exist.");
}
}
if ( !exists $opt->{outfile} ) {
$opt->{outfile} = Path::Tiny::path( $args->[0] )->absolute . ".tsv";
}
}
sub execute {
my ( $self, $opt, $args ) = @_;
#@type IO::Handle
my $in_fh;
if ( lc $args->[0] eq "stdin" ) {
$in_fh = *STDIN{IO};
}
else {
$in_fh = IO::Zlib->new( $args->[0], "rb" );
}
my $out_fh;
if ( lc( $opt->{outfile} ) eq "stdout" ) {
$out_fh = *STDOUT{IO};
}
else {
open $out_fh, ">", $opt->{outfile};
}
my $cds_set_of = {};
my $repeat_set_of = {};
if ( $opt->{annotation} ) {
my $anno = YAML::Syck::LoadFile( $opt->{annotation} );
Carp::confess "Invalid annotation YAML. Need cds.\n" unless defined $anno->{cds};
Carp::confess "Invalid annotation YAML. Need repeat.\n" unless defined $anno->{repeat};
$cds_set_of = App::RL::Common::runlist2set( $anno->{cds} );
$repeat_set_of = App::RL::Common::runlist2set( $anno->{repeat} );
}
my $content = ''; # content of one block
while (1) {
last if $in_fh->eof and $content eq '';
my $line = '';
( run in 1.344 second using v1.01-cache-2.11-cpan-39bf76dae61 )