]> git.donarmstrong.com Git - biopieces.git/blobdiff - bp_bin/uniq_seq
removed debug message
[biopieces.git] / bp_bin / uniq_seq
index a261875b4de4b33742a6b323f016ce23fd5694c8..fc3e43db9ab25f940b80d5e5a9b8413b30daffb9 100755 (executable)
@@ -50,7 +50,7 @@ $out = Maasha::Biopieces::write_stream( $options->{ "stream_out" } );
 while ( $record = Maasha::Biopieces::get_record( $in ) ) 
 {
     if ( $record->{ 'SEQ' } ) {
-        $hash{ $record->{ 'SEQ' } }++;
+        $hash{ uc $record->{ 'SEQ' } }++;
     } else {
         Maasha::Biopieces::put_record( $record, $out );
     }