The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

  Bio::DOOP::Util::Sort - sort the array of array objects.

VERSION

  Version 0.1

SYNOPSIS

  @result = $mofext->get_results;
  $sorting = Bio::DOOP::Util::Sort->new($db,\results);
  @sorted_result = $sorting->sort_by_column(1,"asc"); # Sorting ascendent the score

DESCRIPTION

  This class is sort any type of array of array. It can be used to sort the
  mofext or fuzznuc results, but can sort any other data.

AUTHORS

  Tibor Nagy, Godollo, Hungary and Endre Sebestyen, Martonvasar, Hungary

SUBRUTINES

new

  Create a Sort class.
  $mofext_sort = Bio::DOOP::Util::Sort->new($db,\@mofext_result);
  Arguments: Bio::DOOP::DBSQL, array of array (practically it is a table)

sort_by_column

  @ret = $mofext_sort->sort_by_column(0,"asc");
  Sort a given array by column. (Warning, the first column is zero!)
  Return type: sorted array of array