INSTALL (from scratch w/o using conda or other package managers) ================================================================ # The software can be downloaded from # https://www.tbi.univie.ac.at/~will/AlgoSB2019 # Download the following files # ViennaRNA-2.4.11.tar.gz # locarna-2.0.0RC7p0.tar.gz # rnaz-2.1.1-tar.gz # Install in the following order tar xzf ViennaRNA-2.4.11.tar.gz cd ViennaRNA-2.4.11.tar.gz ./configure make -j4 make install cd .. tar xzf locarna-2.0.0RC7p0.tar.gz cd locarna-2.0.0RC7p0 ./configure make -j4 make install cd .. tar -xzf rnaz-2.1.1-tar.gz cd RNAz-2.1.1 ./configure make -j4 make install cd ..