X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bp_bin%2Falign_seq;h=632d732f21fe47bcdc054061bcc210f9fbdae8fe;hb=5de6112b70b59420b245ce636a8b2e3c90acbe00;hp=e34759a9c34472058382d2587faf567904a2ef56;hpb=52cd51e0b58ed81c412770c2e458838603c2d2ad;p=biopieces.git diff --git a/bp_bin/align_seq b/bp_bin/align_seq index e34759a..632d732 100755 --- a/bp_bin/align_seq +++ b/bp_bin/align_seq @@ -1,4 +1,4 @@ -#!/usr/bin/env perl -w +#!/usr/bin/env perl # Copyright (C) 2007-2009 Martin A. Hansen. @@ -26,6 +26,7 @@ # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< +use warnings; use strict; use Maasha::Biopieces; use Maasha::Align; @@ -39,7 +40,7 @@ use constant { # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -my ( $run_time_beg, $run_time_end, $options, $in, $out, $record, @entries, $entry ); +my ( $options, $in, $out, $record, @entries, $entry ); $options = Maasha::Biopieces::parse_options(); @@ -48,7 +49,7 @@ $out = Maasha::Biopieces::write_stream( $options->{ "stream_out" } ); while ( $record = Maasha::Biopieces::get_record( $in ) ) { - if ( $record->{ "SEQ_NAME" } and $record->{ "SEQ" } ) { + if ( $record->{ "SEQ_NAME" } and $record->{ "SEQ" } ) { # TODO use biopieces2fasta() instead push @entries, [ $record->{ "SEQ_NAME" }, $record->{ "SEQ" } ]; } elsif ( $record->{ "Q_ID" } and $record->{ "SEQ" } ) { push @entries, [ $record->{ "Q_ID" }, $record->{ "SEQ" } ]; @@ -66,32 +67,29 @@ foreach $entry ( @entries ) $record = { SEQ_NAME => $entry->[ SEQ_NAME ], SEQ => $entry->[ SEQ ], + SEQ_LEN => length $entry->[ SEQ ], }; Maasha::Biopieces::put_record( $record, $out ); } } +Maasha::Biopieces::close_stream( $in ); +Maasha::Biopieces::close_stream( $out ); + # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< BEGIN { - $run_time_beg = Maasha::Biopieces::run_time(); - - Maasha::Biopieces::log_biopiece(); + Maasha::Biopieces::status_set(); } END { - Maasha::Biopieces::close_stream( $in ); - Maasha::Biopieces::close_stream( $out ); - - $run_time_end = Maasha::Biopieces::run_time(); - - Maasha::Biopieces::run_time_print( $run_time_beg, $run_time_end, $options ); + Maasha::Biopieces::status_log(); } @@ -99,4 +97,3 @@ END __END__ -