Skip to main content

A library for the prediction and comparison of RNA secondary structures.

Project description

GitHub release Build Status Github All Releases Conda Conda Downloads AUR

ViennaRNA Package

A C code library and several stand-alone programs for the prediction and comparison of RNA secondary structures.

Amongst other things, our implementations allow you to:

  • predict minimum free energy secondary structures
  • calculate the partition function for the ensemble of structures
  • compute various equilibrium probabilities
  • calculate suboptimal structures in a given energy range
  • compute local structures in long sequences
  • predict consensus secondary structures from a multiple sequence alignment
  • predict melting curves
  • search for sequences folding into a given structure
  • compare two secondary structures
  • predict interactions between multiple RNA molecules

The package includes Perl 5 and Python modules that give access to almost all functions of the C library from within the respective scripting languages.

There is also a set of programs for analyzing sequence and distance data using split decomposition, statistical geometry, and cluster methods. They are not maintained any more and not built by default.

The code very rarely uses static arrays, and all programs should work for sequences up to a length of 32,700 (if you have huge amounts of memory that is).

See the NEWS and CHANGELOG.md files for changes between versions.


Availability

The most recent source code should always be available through the official ViennaRNA website and through github.


Documentation

Executable programs shipped with the ViennaRNA Package are documented by corresponding man pages, use e.g.:

man RNAfold

in a UNIX terminal to obtain the documentation for the RNAfold program. HTML translations of all man pages can be found at our official homepage.

We maintain a reference manual describing the RNAlib API that is automatically generated with doxygen. The HTML version of this reference manual is available here.

In addition, the description of the RNAlib Python API can be found at Read the Docs.


Installation

For best portability the ViennaRNA package uses the GNU autoconf and automake tools. The instructions below are for installing the ViennaRNA package from source.

See the file INSTALL for a more detailed description of the build and installation process.

Quick Start

Usually you'll simply unpack the distribution tarball, configure and make:

tar -zxvf ViennaRNA-2.6.3.tar.gz
cd ViennaRNA-2.6.3
./configure
make
sudo make install

User-dir Installation

If you do not have root privileges on your computer, you might want to install the ViennaRNA Package to a location where you actually have write access to. Use the --prefix option to set the installation prefix like so:

./configure --prefix=/home/username/ViennaRNA
make install

This will install everything into a new directory ViennaRNA directly into the home directory of user username.

Note, that the actual install destination paths are listed at the end of the ./configure output.

Install from git repository

If you attempt to build and install from our git repository, you need to perform some additional steps before actually running the ./configure script:

  1. Unpack the libsvm archive to allow for SVM Z-score regression with the program RNALfold:
cd src
tar -xzf libsvm-3.31.tar.gz
cd ..
  1. Unpack the dlib archive to allow for concentration dependency computations with the program RNAmultifold:
cd src
tar -xjf dlib-19.24.tar.bz2
cd ..
  1. Install the additional maintainer tools gengetopt, help2man,flex,xxd, and swig if necessary. For instance, in RedHat based distributions, the following packages need to be installed:

    • gengetopt (to generate command line parameter parsers)
    • help2man (to generate the man pages)
    • yacc, flex and flex-devel (to generate sources for RNAforester)
    • vim-common (for the xxd program)
    • swig (to generate the scripting language interfaces)
    • liblapacke (for RNAxplorer)
    • liblapack (for RNAxplorer)
    • A fortran compiler, e.g. gcc-gfortran (for RNAxplorer)
  2. Finally, run the autoconf/automake toolchain:

autoreconf -i

After that, you can compile and install the ViennaRNA Package as if obtained from the distribution tarball.

Binary packages

Binary packages for several Linux-based platforms, Microsoft Windows, and Mac OS X are available at our official website.

Bioconda

Installation is also possible through bioconda. After successfully setting up the bioconda channels

conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
conda config --set channel_priority strict

you can install the viennarna bioconda package through

conda install viennarna

Python interface only

The Python 3 interface for the ViennaRNA Package library is available at PyPI and can be installed independently using Python's pip:

python -m pip install viennarna

Building a Python 3 sdist or wheel package

Our source tree allows for building/installing the Python 3 interface separately. For that, we provide the necessary packaging files pyproject.toml, setup.cfg, setup.py and MANIFEST.in.

These files are created by our autoconf toolchain after a run of ./configure. Particular default compile-time features may be (de-)activated by setting the corresponding boolean flags in setup.cfg. See below for additional steps when building the Python interface from a clean git clone.

Running

python -m build

will then create a source distribution (sdist) and a binary package (wheel) in the dist/ directory. These files can be easily installed via Python's pip.

Howto prepare the Python 3 sdist/wheel build from git repository

If you are about to create the Python interface from a fresh clone of our git repository, you require additional steps after running ./configure as described above. In particular, some autogenerated static files that are compiled into RNAlib must be generated. To do so, run

cd src/ViennaRNA/static
make
cd ../../..

Additionally, if building the reference manual is not explicitly turned off, the Python interface requires docstrings to be generated. They are taken from the doxygen xml output which can be created by

cd doc
make refman-html
cd ..

Finally, the swig wrapper must be build using

cd interfaces/Python
make RNA/RNA.py
cd ../..

After these steps, the Python sdist and wheel packages can be build as usual.


References

If you use our software package, you may want to cite the follwing publications:

  • R. Lorenz et al. (2011), "ViennaRNA Package 2.0", Algorithms for Molecular Biology, 6:26

  • I.L. Hofacker (1994), "Fast folding and comparison of RNA secondary structures", Monatshefte fuer Chemie, Volume 125, Issue 2, pp 167-188

Note, that the individual executable programs state their own list of references in the corresponding man-pages.


License

Please read the copyright notice in the file COPYING!

If you're a commercial user and find these programs useful, please consider supporting further developments with a donation.


Contact

We need your feedback! Send your comments, suggestions, and questions to rna@tbi.univie.ac.at

Ivo Hofacker, Spring 2006

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ViennaRNA-2.6.3.tar.gz (4.8 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ViennaRNA-2.6.3-cp311-cp311-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

ViennaRNA-2.6.3-cp311-cp311-musllinux_1_1_i686.whl (11.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

ViennaRNA-2.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ViennaRNA-2.6.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (11.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

ViennaRNA-2.6.3-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ViennaRNA-2.6.3-cp311-cp311-macosx_10_14_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

ViennaRNA-2.6.3-cp310-cp310-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

ViennaRNA-2.6.3-cp310-cp310-musllinux_1_1_i686.whl (11.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

ViennaRNA-2.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ViennaRNA-2.6.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (11.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

ViennaRNA-2.6.3-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ViennaRNA-2.6.3-cp310-cp310-macosx_10_14_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

ViennaRNA-2.6.3-cp39-cp39-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

ViennaRNA-2.6.3-cp39-cp39-musllinux_1_1_i686.whl (11.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

ViennaRNA-2.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ViennaRNA-2.6.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (11.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

ViennaRNA-2.6.3-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ViennaRNA-2.6.3-cp39-cp39-macosx_10_14_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

ViennaRNA-2.6.3-cp38-cp38-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

ViennaRNA-2.6.3-cp38-cp38-musllinux_1_1_i686.whl (11.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

ViennaRNA-2.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ViennaRNA-2.6.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (11.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

ViennaRNA-2.6.3-cp38-cp38-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ViennaRNA-2.6.3-cp38-cp38-macosx_10_14_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

File details

Details for the file ViennaRNA-2.6.3.tar.gz.

File metadata

  • Download URL: ViennaRNA-2.6.3.tar.gz
  • Upload date:
  • Size: 4.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for ViennaRNA-2.6.3.tar.gz
Algorithm Hash digest
SHA256 f154ea15558567d55457553cc8c41a8f8d1ab2086cfd2b1493111beb7d81fabc
MD5 cd26fb107b5c33469f585222ad34cba8
BLAKE2b-256 3bc90f29227b21be07188d7eca38fdc1d4a8f5aff444e2301f635b48c5a9212a

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8617c1e254b8d69febd1174426db6ebcf4e14e8265b2e313b0d7f595ee42ea8
MD5 a048a5b83f14c7d48967218b8c6d20af
BLAKE2b-256 c08b042597cb78def0a5d3b60fd7d38b68b840831409035ce6a42a3910642b2a

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6d00e31f43864b30e461d6942f76109127ac89ce9b6835219c688c28ec4210fe
MD5 0a28cdfe0ebdac932ef0401c78dd8cc9
BLAKE2b-256 6c0f0e8ab6395909f664f52e969308655ba73a5e76e0f39892bdae7da5348f1c

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17bf5b57d3cee8f7dda6737646824c784a67a98e986d63bc9e96af569120a878
MD5 72c0cc7daf18b91c80d488ebc7d221fd
BLAKE2b-256 b975d9bbc8fb67bd585dc719c34ac4439a2bed0a92015c3548f9727b968612d4

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10bdae58e8368b7c79cf61f035b7148efeb0572cac6c31ea1d3ead024a67c095
MD5 e0f714ab4141c679b6c27da5c48b2f19
BLAKE2b-256 46b470c9716977d6e0019246b03d258802c568d6fa5b3cd0987deeac778dc262

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e6d9f9ef3a754489828aa6abcd03286707eeb6207c24ffb7b3e9da0977df900
MD5 e99beaa24727bd5d5cc5c7eca1750192
BLAKE2b-256 59aab2280bcc389c924dc72a72c1ae8028fe695c4a245f41b2ab1eb8681d91bd

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8060e12b6173845dc806c9eb07feebc1e141f18faa3d8d1c8c3b3b96b56c824a
MD5 6076dbc2960df2d01fba6a1ca235e491
BLAKE2b-256 7a9f8c2cb862e732bd3c2d8920a912cf8924605c62e97bcbcda002f83d533ff6

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 404d41d8f77055f82abceeb779920c3ca3485e1f2192c0ae2acb30bc9b17a0d8
MD5 693841309190c46878c190c100df6175
BLAKE2b-256 482fe59a3b66f4ca9abc6e2aa2cd8ec21d1539d133756ebfbe8dfd2f3b591199

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1c3a153be11aecfda6ee41e3f327c2a5fa91a8c89c297ecf15c353d2bcb6c21a
MD5 4f3187e740c14ec617049386327ab39e
BLAKE2b-256 080567326020bf4fb1f0b1326933453e8e41a36c3bfdea6b8cf87a07bcb3daf4

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f810a09b4f0755f02be1d22e6d0c5f6a860000028852062b9d1402e8cda7957b
MD5 57b248d917369ee7aa8b03dd3f98c496
BLAKE2b-256 6cc7373786745bf38c4a76662c103222151f55d33f7a0862bf557fdb95578526

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c94c56e70c4a213669228455f03548ed4e82cf302bb75671311c6d736da5a3f
MD5 14808db0d44774d48079c573899dd995
BLAKE2b-256 2486ceb1b342925dedb6a9e5fd4eddf3c66f3c511e42c4a8e34aa20aa04b6ed5

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 869dad64055a6f80785cdc0b5261a57814a5dd916a189527696b009cf2775c4d
MD5 4fcf1479a8a6f599621af041cd4bec14
BLAKE2b-256 5f8fc4b456b1d535ca3a5f5647e038f5ec9fab5925482fb538fcba51f2bc6a44

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bc410e508745dc0033cb83c4059a8bd9bac50908891a70f82d73d8357d1bb59d
MD5 1f587d3988d3776e2936e7d1fba8fcfc
BLAKE2b-256 a39e1e2ae50082ea8589f06adc18fd9d4ba5d5eceeaf11fdb00a507a7633a6c5

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 389eaf786e6e0478ca4497baf0456ef218ee9d5bebb8f6810dc4b19aacbe4ed0
MD5 1992969c0400f6cac8011b55e5862668
BLAKE2b-256 08714cf098294da264cadbd1e35e25f5664b37278ce4640ff983f9a48a4b442f

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0bd2d7aaba29620ebea41e75389602da9c83f4913f2d61b95e39c6e578d9db67
MD5 f1a82ad145097f633ac5eabcd93fa742
BLAKE2b-256 2308678c1fa8bd1c355fecfd9375434cfb452bdf1d9d5eb67147c2a8f2f0b85f

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f276c006ad6543e036041a41c2eda681828997ed29bd6f87e12d08ae0ba42576
MD5 554dc9e205be6c6e1c6d9ce1f2c4b238
BLAKE2b-256 e3908324e8a078d271eea60e30163e0097f40b5fffcfc2f22ebc60af685cb4ce

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9c33f2e3753035d889999804eda5097e9e5558657d8063890021239c282d6e5
MD5 bad54dcbe7e4a1e920f874642079045f
BLAKE2b-256 b79ce433da3ed44a34fef8aa9710e6838ef44ddb314455fc4b1a071edb952f23

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a08d7e6681507126ae61a1fd9543a7233737e6f7778ad406d38db64b25292db
MD5 34cd26696bf4f09bc88ea5e1e4e6681c
BLAKE2b-256 f5148a958e38331b63c35f688645a7c8ca789e016290d25ef26faf9d34ea6d72

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4ebfe7c1d89406fa6cdfe23f4ca1e4c2d8febef9d2a4935e07a270a3fd6aae62
MD5 f4abb709a0990f43440b98bb15bbc1d7
BLAKE2b-256 7b853291c8de1dc632df62d74f99ffc7d5de990b293d61e14afbd72ca54f0776

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8b1df158a376f2ed2664bb4b52fd79516b63f243bb34270dfebb69b8ae016bb6
MD5 dcf7a43b60b97c8deb2835ba5e62be63
BLAKE2b-256 463af24fda11d092c8f67ce31b2ecd790ae788045df5a3ab4497b1fd57d8272e

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f31b74d370ddfc19a4142f6d1892fe83173ed7e1ece2ed51db5940b96899ad47
MD5 74458ec1415d1c1bea20ca6a56a60627
BLAKE2b-256 3c8b9bbe373989b50478d4b0440c6e5262330fa653426c5b305a353e2a58113a

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0187d23dc8e62b5bf7c707d9ce39bf6590e25d2653c353a35fdfa01768c40578
MD5 d579bff06fcfa7e406d65093702ada73
BLAKE2b-256 cf6f95878bb677b6accc109fc47a6b94e1e590b3fefecce2fd8f241e477f3433

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1d1388366bd1cde75e682bd42640968c2de6c39870d5b358de7919e8275bade
MD5 6bc546b89be0f43b05d5e10c8beed81e
BLAKE2b-256 c2340dbb99607323989dd0c085a539ce0a256c5f3f0d9acc10dda20a11b7e81e

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 933b1f34edee9510fb25cc7796aa2f9349283d2425fec2b782863341d299312d
MD5 7339632b30072a2b8ba19395cd916dd8
BLAKE2b-256 c80d8b2999d3263215abd044039a2a7bede2211569f73da3015e2be1566d63db

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.6.3-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.6.3-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8a0f2185610c12704754d446e37d15a6dd53bfc6d7a29fdada4dfcaef175bf9a
MD5 84ffe5b580ce0f0ac8c9a2dfce2786f0
BLAKE2b-256 55617b341f99bd59f00ba5e6646a86409530c24802961ec2394d258eb3faffd5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page