foreach $record ( @{ $records } )
{
- if ( $entry = record2fasta( $record ) )
+ if ( $entry = Maasha::Biopieces::record2fasta( $record ) )
{
next if length $entry->[ SEQ ] < 12; # assuming that the index is created for 12 as minimum length
+++ /dev/null
-package Maasha::Test;
-
-
-use warnings;
-use strict;
-
-require Exporter;
-
-use vars qw( @ISA @EXPORT @EXPORT_OK );
-
-@ISA = qw( Exporter );
-
-@EXPORT_OK = qw(
- hello_world
-);
-
-sub hello_world
-{
- print "Hello Word\n";
-}
-
-END {
- hello_world;
-}