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 at our official website and at ReadTheDocs.


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.7.0.tar.gz
cd ViennaRNA-2.7.0
./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.35.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 autotools toolchain and the additional maintainer tools gengetopt, help2man,flex,xxd, and swig if necessary. For instance, in Debian based distributions, the following packages need to be installed:

    • build-essential (basic build tools, such as compiler, linker, etc.)
    • autoconf, automake, libtool, pkg-config (autotools toolchain)
    • gengetopt (to generate command line parameter parsers)
    • help2man (to generate the man pages)
    • bison and `flex`` (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. 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.7.0.tar.gz (5.9 MB view details)

Uploaded Source

Built Distributions

ViennaRNA-2.7.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13 Windows x86-64

ViennaRNA-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

ViennaRNA-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

ViennaRNA-2.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

ViennaRNA-2.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

ViennaRNA-2.7.0-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

ViennaRNA-2.7.0-cp313-cp313-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13 macOS 10.14+ x86-64

ViennaRNA-2.7.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

ViennaRNA-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

ViennaRNA-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

ViennaRNA-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

ViennaRNA-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

ViennaRNA-2.7.0-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

ViennaRNA-2.7.0-cp312-cp312-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 macOS 10.14+ x86-64

ViennaRNA-2.7.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

ViennaRNA-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

ViennaRNA-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

ViennaRNA-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

ViennaRNA-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

ViennaRNA-2.7.0-cp311-cp311-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 macOS 10.14+ x86-64

ViennaRNA-2.7.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

ViennaRNA-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

ViennaRNA-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

ViennaRNA-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

ViennaRNA-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

ViennaRNA-2.7.0-cp310-cp310-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

ViennaRNA-2.7.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

ViennaRNA-2.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

ViennaRNA-2.7.0-cp39-cp39-musllinux_1_2_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

ViennaRNA-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

ViennaRNA-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

ViennaRNA-2.7.0-cp39-cp39-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

File details

Details for the file viennarna-2.7.0.tar.gz.

File metadata

  • Download URL: viennarna-2.7.0.tar.gz
  • Upload date:
  • Size: 5.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for viennarna-2.7.0.tar.gz
Algorithm Hash digest
SHA256 443dcf98615b667f2cda96ed6b6660f32cba9b7a8b944563bc20a9754f3c9ca3
MD5 c32c3d2709ba1305a79b91022bc38563
BLAKE2b-256 8694c65cfb4666efed90fc0fc241ee646054c5f1f7d16e83a39ab43ce7dfbe35

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7fc788f17e62c55937c341da8229df837a9ce0f58774cc879d6c1a794f338123
MD5 a29c4335e43bf1239287698b10bc53c6
BLAKE2b-256 31ee658f195f7f744d01d8d5261262c17257778bd62bf8e407c83ef207fb17b7

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13d196f303969da031342cd1842d822b15e32ef19bcefa769868fc9cd566d18c
MD5 f531a94cbdcd71858c5268c57876a170
BLAKE2b-256 5ed185916f237369640fc85aff22392ecf4fb19355c200190da2ae5772ed6aa1

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b90ea2414027a3da10e685052d1d09f9d420368eac49c848099a6083c5208d56
MD5 9054b92fedc548a46d8f0d92be18b61c
BLAKE2b-256 33c4d969033090c802b96b766fc85b61457a290d5f38c03e7686f229aef8ba71

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f5a56104bfc01accbfb58c675ad7a0933c84543c1da48efd56557bc6ee1dd2b
MD5 2e960983e30a2aadd238543b14c91a56
BLAKE2b-256 7d6144e8f1be14dee657b1d0faa617c1dfd6b288cb739c4c3fbf9a7832305e22

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e10c2f0d29b1b964252f95ee45630a6becc8b0ef3b7421a12ccc5cfb755872e
MD5 0248323515afc47c4a54f9cbbc4677df
BLAKE2b-256 2ef9136bcb00c5169b53299a6c65ffb9572c76c142c578d251b121aaffdc0773

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5b1c4ac0f79a938eb836e730d600f30f633ffcb115823ccf147b6e81221b6cd
MD5 32b8d00284e8a22960918e2aa395a244
BLAKE2b-256 97c8ba889f0a455e9cb41e52bb5a6617a1ab88d114e25ca797c436816f7cf311

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2ea96d0b6c3db03ec2582933aed4fd50c6f9d9cb1b9318573f8e0eb692d3f33a
MD5 9a1b9a99bd21f215328b20853b7eb813
BLAKE2b-256 2ac1ef2bfd2b91641e0412a794968d5adb9aafd40992621fb5386cc836cea04d

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed56b18d0eaa70e3551beb16879ffe111b02c10b3f0f9deb2d0c7c534e979910
MD5 e05f69fa0ddd939e6d484e3a0b939a5a
BLAKE2b-256 34ece8d83e0e06b13e2b581070d019b16d898a33552f317a6ae72052a934f666

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42645f2c543705a639a90f8fb5b9057f8dbd480a6f6e86ab15c1c1b8ae07c5b2
MD5 8d7d0bf9c2afdec1dfb9cb263e4bf267
BLAKE2b-256 62b4c3a50349e938326bd456ca430f6569d04151f5c9263ec67dc3f2541ddb48

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 178c50a6679e8c09bdbb5fd0f3fed704c422e9ef84954e0eea7d8c4d8719a21f
MD5 4db8a812a278d181d065dc72ccbcedd4
BLAKE2b-256 24737b48aa6529fb27a38a7b32c1ed7f5be8194bb665c939db5506cb8f52edf5

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd76b0e5dc671781041524f5e1c08a5be4c6d7aec21ebe2704eee06c0adb05c1
MD5 9189530e49265578d61018aa45526ecd
BLAKE2b-256 032f73ea7b15dc226f120dbc89f3f4bb40b6a5a26ac969898255f22123a94d1a

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50e8f56fdaf35f111313c4c29d762557b173354934278cadaad423dac0239273
MD5 82fd0940a0720018ee93b3a70ebf9cbf
BLAKE2b-256 6feccbeb6f5c8d9cf2929002864b31a3ae9e8ec07ecd15518c643343abc6dcd5

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0526898b732887fd0a5393c1a9eae3addf4a0869641c3a716cf6db2dfd935ab0
MD5 6d4b2ba612412151b4675d5c3f22a47a
BLAKE2b-256 9c58c50ea1c787da20812b1d8a1419984684648aa7d8b11ab2536784e175d934

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8ccd49fc776f4f0653e29c902661b21c6082cd1574f42e45874cf61e1df05021
MD5 f03cdda6bc3a659efebe5eadd38aa83a
BLAKE2b-256 90a25a50243d49cdeccf4dd21ae0007e49f156c23cb9b66f2c4010d3718dbcaa

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e34e484b5e403364a309390354f85f73afad54c88dac2ff9a54390914b10fb0
MD5 b412d40b3f8ff5345a8f4317de25779a
BLAKE2b-256 1e65d6fc56d73706a39b351d04116b9634b270d48b15310cd49f18aba40b232a

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02f1a5405942871dd1282681a368e5ec9d6b63e39442582b6346032688006791
MD5 4865bf0f6db546b6cfdcfb5f25f16001
BLAKE2b-256 b2523a4be96e2341113511d7ecc06b28b0f176440c4bfe26d7abbb57d97ae244

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c3d03a49db7fe20ae500e44ebf95c188ec46647a8e067968d628bb354d690f6
MD5 e2a49ed537427eebce8ca4b2b8a9e8f9
BLAKE2b-256 d108adfbd6e62dd0075c09c0b1046da5f5bc37351e3333a30472d2c335e97539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f45dc19ce387034c4114c91b7f0da6fd333abdb7a54d7f161aa2f40c3521daa4
MD5 4dfdb2f7d7a548a6999084456bfe2da4
BLAKE2b-256 f85c798a7bd9018d22de07d000fba8bccaf7af0d3dae13e3dcad940ad9951307

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2352b39b6d728912c934261211637ed5f3aab798a25cca1ba783b09b310fe0a
MD5 f1258f939020b71fc40a31b0f72c851f
BLAKE2b-256 442cb7dfdbc78523b681b0f588820624f4ab0d85761bc555721e188957cd2680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fae427615e481bc14c4b345a37e7dfd4652ba4d740a0c7f410a3fa26132f7f3
MD5 c41546f35dfd65a4584b79f0eb3ea912
BLAKE2b-256 eaf67e83e30b41c9707cd26e51029ccafe6fa4c7ff23e394035b3437e0ce6243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 643cff0ab259da59f0b73ca9cb110e5cc39d40dc4cb3e2a0f2ee46bc3e62d6a1
MD5 95441c0b0f4fbf49ebbe48848f16ad4d
BLAKE2b-256 f733b801b7307ec43c171786b68d024e66e5f1e7ed9cce6e7e45cfbfc4fd7aa1

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ea7f10f25d829a55df3b8d1db4efa2d6a897305177e2b6897dd48ff03115669
MD5 f951c2f6b448d932b85033bbfc0e3b1b
BLAKE2b-256 7481e580f0a9e176384b10fd87a71733d02d0bdcc55338ccee192c17d279be36

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cd000fdce344c42a5baa251031e9c1fbca5aa46658cc4f969e0f75cc579da41
MD5 baef9f33b102e88062864733d0ebef5a
BLAKE2b-256 55fdad23121002ef91e3d7d2b47ea0e41fd5d944948814bf2e11202714ef6e31

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f83504d2a5b55edfd3d654987cf91d1929d0a2669859fdfb7317b08d4cfac8c
MD5 49368930c8b80252f2f311282184be7f
BLAKE2b-256 332c5d41c389079a165f2d73812fb2533144db7dc7590c9d0ce3652155ac0ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e9ded14505044d28fcd5041f957d38b4ca62cd56520fd262f0f5d7cd8e70c0b
MD5 3f76aaff8e6a80ac267d66649c9adc41
BLAKE2b-256 d8473a24756b5019078151c878e0af48c347522cb22ff76a5fa030763170b2ac

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f1de2151aaa8cf67dba0a7760b421e62edc9de5396447df1a634dbea29eea69
MD5 564a225b47267850fcf7a9861ab3078c
BLAKE2b-256 9ee759865764b68c09c496ea1baf008a0bf3cbab4e99bd75de80c2c1d965aa78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 257b85fec4771e6bdc2044ff7607a472b832d4ec39548678196d5e24de4c90ba
MD5 84627b146dfb2be41f9e73f67e4cfd79
BLAKE2b-256 c960fb4f55965c8771e6354b6cb08bfcc3f81dce72c9b22a1d1d446f11caa879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7a6b8bcb24e50098c6bf10601d108d1d9fe5480fdcf8b654b4bdd449c88e8dd8
MD5 a9208cb4a540906aec977c9b13ecc83c
BLAKE2b-256 c6bc20e47e6070c455a0e69e1738b1631110878ae425f90a31c71d697a2ed718

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ViennaRNA-2.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for ViennaRNA-2.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ac497c0ab3c7d66bff39bd32aec2d26df72e93dbddc76074ec2b69dc12a3cbc0
MD5 2635d2422792b82946fed3d60d569a8e
BLAKE2b-256 42cacaed18628b4b2ecb04e03eb61598432050104f2d75b1a2f5b2868274b20f

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5b9a267e7248d5bae7a1f1dd4525b81e332e2742a170986d14d2877266568ef
MD5 61b2552d7361469119de2de5defc6c84
BLAKE2b-256 c91a3f7fa8d4659a5c39212b3423a075569958a51888e51dae3c3f690bc34e8d

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c235a1dfb177c012eebfb8c618b4e1c157fc6837cce00a25589944e086492f9
MD5 687a56284313af46777019a5a3692afa
BLAKE2b-256 fc0a9b26bc69f08d555493d44a89583dd6a7238db2c12187cbcbc42575558664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe170cde40b44d325d5ae2c48d3c1c9eaa8848bf4da8733c284afe3a2b7b09e9
MD5 100829934e702258ef284c376d344d98
BLAKE2b-256 ef25b254e7c48f851be16e69d3ed8f7b67922353a870490533b1512b85e06b7c

See more details on using hashes here.

File details

Details for the file ViennaRNA-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf718c38fcf451c4f8efd413adf7a024d1a92ad04d3b11369b4fdb3b58a120df
MD5 8beea0ac56d4e7baded0a2ce09849905
BLAKE2b-256 f0b62ec5f887d6dee750503935dab31121321734c58060684dd8db4a269ee272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eec6d7e2a984ee97e53f846e76a38edea19aa780155c24c4e96ef4a0215a0dc9
MD5 d853173c4d0e28ec4e5057e702becc91
BLAKE2b-256 aa62ad8d49122f8cf0a687dfcf48d97493a2ed1dae38cb4f1784eb8483abf6ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ViennaRNA-2.7.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 df599303eaf351ae5f71d299d6492968b8b1b020407d7eaf84a05f1f587883f0
MD5 6136e7f45188f22669cbcf92d8f5095b
BLAKE2b-256 112f73850d076dd208fde88585e498ba4a66672edae3d0a593f1ab0fb0888c3d

See more details on using hashes here.

Supported by

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