]> git.donarmstrong.com Git - biopieces.git/blobdiff - bp_bin/read_kiss
removed debug message
[biopieces.git] / bp_bin / read_kiss
index 043f08a54129c8b1015b5a6e32ba278ccf857ae2..04a93886b4c3544607e4349d125aac9f39216b44 100755 (executable)
@@ -21,7 +21,7 @@
 
 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> DESCRIPTION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
 
-# Read FASTA entries from one or more files.
+# Read KISS entries from one or more files.
 
 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
 
@@ -30,7 +30,7 @@ use warnings;
 use strict;
 use Maasha::Biopieces;
 use Maasha::Filesys;
-use Maasha::KISS::IO;
+use Maasha::KISS;
 
 
 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
@@ -58,9 +58,9 @@ if ( $options->{ 'data_in' } )
 
     $num = 1;
 
-    while ( $entry = Maasha::KISS::IO::kiss_entry_get( $data_in ) ) 
+    while ( $entry = Maasha::KISS::kiss_entry_get( $data_in ) ) 
     {
-        if ( $record = Maasha::KISS::IO::kiss2biopiece( $entry ) ) {
+        if ( $record = Maasha::KISS::kiss2biopiece( $entry ) ) {
             Maasha::Biopieces::put_record( $record, $out );
         }