Description:
INPUT
sequence = sequence of nums or symbols;
n-max = maximum number of patterns accepted in structure of seq;
alpha = alpha or num representation of the resulting structures;
result = type of output of analysis
all -> detailed analysis;
pos -> returns only the positions of the patterns;
mat -> return the list of pattern and the associated binary matrix;
p-score -> returns the score of structure completion for each structure;
save -> save all analysis into a file.
&OPTIONAL
length = value or list of minimum and maximum values for length of patterns.
If nil, lengths of patterns are set up to the half-lenght of the sequence;
seuil = minimum completion percentage of the structure taken in account;
OUTPUT
Returns an analysis of seq following the repetition criterium for segmentation.
Note : if out-of memory, try successives computations with a smaller value
of n-max (max number of patterns combined in each structure
|