NAME

CracTools::Utils - A set of usefull functions

SYNOPSIS

DESCRIPTION

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