https://github.com/ViennaRNA/ViennaRNA
Raw File
Tip revision: efd906245e13a1b1b62389e8294e66cde8598593 authored by Ronny Lorenz on 12 October 2017, 15:02:54 UTC
Prepare for release 2.4.2
Tip revision: efd9062
INSTALL
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.

This release includes the RNAforester and Kinfold programs, which can also 
be obtained as independent packages. Running ./configure in the ViennaRNA 
directory will configure those two packages as well. However, for detailed
information and compile time options, see the README and INSTALL files in 
the respective subdirectories. 

The Kinfold program can be used to simulate the folding dynamics of an 
RNA molecule, and is compiled by default. Use the --without-kinfold
option to skip compiling Kinfold.

The RNAforester program is used for comparing secondary structures using 
tree alignment. To compile RNAforester you'll need to first install the
g2 graphic library, then run configure with the --with-forester option.

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 giving ./configure the --enable-floatpf option.

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
./doc/RNAlib-2.3.3.pdf as well as a set of HTML pages in
./doc/html/index.html. Documentation in HTML can also be found at
http://www.tbi.univie.ac.at/RNA/


System specific notes:

MacOS X users:

Although users will find /usr/bin/gcc and /usr/bin/g++ exectuables in
their directory tree, these programs are not at all what they pretend
to be. Instead of including the GNU programs, Apple decided to install
clang/llvm in disguise. Unfortunately, the default version of clang/llvm
does not support OpenMP (yet), but only complains at a late stage of the
build process when this support is required. Therefore, it seems
necessary to deactivate OpenMP support by passing the option
--disable-openmp to the ./configure script.

Additionally, since MacOS X 10.5 the perl and python installation
distributed with MacOS X always include so called universal-binaries
(a.k.a. fat-binaries), i.e. binaries for multiple architecture types.
In order to compile and link the programs, library, and scripting
language interfaces of the ViennaRNA Package for multiple architectures,
we've added a new configure switch that sets up the required changes
automatically:

./configure --enable-universal-binary

In case it doesn't work for your system, please file a bug report to rna@tbi.univie.ac.at


General remarks:

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.


back to top