X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bp_bin%2Fcomplement_seq;h=10a3a043d5e607b921d409d07d6cbae010a8a4fb;hb=48bea5c28b89dc5586d0bddb338ccd6ba23aa1f9;hp=348e0580640c1e2a97c18cbd156d543bd08e67cc;hpb=9bf550c4335d8860c5f6f9c4db0f385f1b36c1dd;p=biopieces.git diff --git a/bp_bin/complement_seq b/bp_bin/complement_seq index 348e058..10a3a04 100755 --- a/bp_bin/complement_seq +++ b/bp_bin/complement_seq @@ -50,9 +50,9 @@ while ( $record = Maasha::Biopieces::get_record( $in ) ) $type = Maasha::Seq::seq_guess_type( $record->{ "SEQ" } ); } - if ( $type eq "rna" ) { + if ( $type eq "RNA" ) { Maasha::Seq::rna_comp( \$record->{ "SEQ" } ); - } elsif ( $type eq "dna" ) { + } elsif ( $type eq "DNA" ) { Maasha::Seq::dna_comp( \$record->{ "SEQ" } ); } }