Downloading and Compiling the source
code
ALSE is written in C++, it can be compiled
with the GCC C++ compiler version 3.00 or above. You can
get the source code from the ALSE
webpage. The file is in the format ALSE_v????.tar.gz
where v???? is the version number.
Unix prompt is shown as "$". Un-tar the file
and compile the ALSE by doing:
$ tar zxvf ALSE_v???.tar.gz $ cd ALSE $ make clean $ make
If everything is smooth, you should get a executable
file "find_motif".
Running ALSE
SYNOPSIS
./find_motif [OPTIONS] -t <true
seq file> -f <false seq file>
where
- <true seq file> is the full
path name of the sequence file that is known
to contain the motif(s). It is in the FASTA format.
- <false seq file> - sequence
data file that consist of the background
sequences, also in FASTA format.
- [OPTIONS] fields specify the parameters
used for running ALSE. They can be any of
the following, appeared in any order. When
a particular option is not set or not specified
in the command line, the default value is
used in ALSE.
-m, --motif
Length of the motif to be discovered
(default 6)
-r, --no_reverse
do not test the reversed sequence
-O, --output
output HTML filename
(default ./output.html)
-b, --binding
Specify the maximum number of motifs in a sequence
(default 2)
-s, --seeds
number of seeds used for s tuning iteration
(default 100)
-h, --help
Disply the command and options information
|