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

CracTools::Utils - A set of useful functions

reverseComplement

  Arg [1] : String - a DNA sequence
  Example : $reverse = reverseComplement('ATGC');
  Description : Reverse complemente the sequence in argument.
                For example : reverse_comptement('ATGC') returns : 'GCAT'.
  ReturnType  : String
  Exceptions  : none

reverse_tab

  Arg [1] : String - a string with values separated with coma.
  Example : $reverse = reverse_tab('2,1,1,1,0,0,1');
  Description : Reverse the values of the string in argument.
                For example : reverse_tab('1,2,0,1') returns : '1,0,2,1'.
  ReturnType  : String
  Exceptions  : none