Installation:

This package uses GNU autoconf generated configure scripts, see the
file INSTALL.configure for generic configure documentation.

Quickstart: Usually you'll just have to type:
----------
	./configure
	make
and (as root)
	make install 

Install Paths:
-------------
The main programs, library, man, and info pages are
installed in the usual places by default
(i.e. /usr/local/{bin,lib,man,info}). In addition the following
install paths are used:
header files	/usr/local/include/ViennaRNA	[includedir/ViennaRNA]
parameter files	/usr/local/share/ViennaRNA      [datadir/ViennaRNA]
extra scripts	/usr/local/share/ViennaRNA/bin  [datadir/ViennaRNA/bin]
documentation   /usr/local/share/ViennaRNA/doc  [datadir/ViennaRNA/doc]

All these locations can be changed by calling ./configure with
appropriate options.

If you like having all software packages separated in their own directories
you could run e.g.:
./configure --prefix=/opt/packages/ViennaRNA --datadir=/opt/packages/ViennaRNA 
resulting in /opt/packages/ViennaRNA/{bin,lib,man,info,include,doc} directories

The installed location of the Perl module is determined by Perl's own
configuration, independent of any configure options. 
To leave out the Perl modules run
   ./configure --without-perl

The programs AnalyseSeqs and AnalyseDists offer some cluster analysis
tools (split decomposition, statistical geometry, neighbor joining,
Ward's method) for sequences and distance data. To also build these
programs add  --with-cluster  to your configure options.

Calculation of partition functions (via RNAfold -p) uses double
precision floats by default, to avoid overflow errors on longer sequences.  
If your machine has little memory and you dont't plan to fold sequences
over 1000 bases in length you can compile the package to do the computions 
in single precision by ....

Memory requirements for a sequence of length n will be approximately
12*n^2 bytes for RNAfold -p in the double precision version, and
 4*n^2 bytes for the minimum free energy alone.
  

The readseq program is not integrated in the build process. If desired,
install readseq manually, following the instructions in the readseq
directory.

There are man pages for all executables, the library is documented in
./man/RNAlib.texinfo. You can either print this file as a manual using
TeX (if you don't have texinfo.tex installed use the .dvi file) or use
it as online documentation if you have the GNU texinfo package installed.
Documentation in HTML can be found at http://www.tbi.univie.ac.at/~ivo/RNA/


System specific notes:
calculating the partition function for long sequences ( >400 bases)
generates a lot of floating point underflows. On some system this can slow
down the calculation dramatically because an exception is invoked for each 
underflow. How to avoid this problem is highly system specific:

On SunOS 4.1 the remedy is calling nonstandard_arithmetic() add a -DSUN4 to
the CFLAGS in lib/makefile to do this. Use CC=gcc since SUN's standard cc
doesn't understand ANSI C.

On HP machines running hpux-9 or hpux-10 add -DHP9 to the CFLAGS so that
fpsetfastmode() will be called.


