ViennaRNA


NameViennaRNA JSON
Version 2.6.2 PyPI version JSON
download
home_page
SummaryA library for the prediction and comparison of RNA secondary structures.
upload_time2023-07-12 19:33:18
maintainer
docs_urlNone
author
requires_python>=3.8
licenseDisclaimer and Copyright The programs, library and source code of the Vienna RNA Package are free software. They are distributed in the hope that they will be useful but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Permission is granted for research, educational, and commercial use and modification so long as 1) the package and any derived works are not redistributed for any fee, other than media costs, 2) proper credit is given to the authors and the Institute for Theoretical Chemistry of the University of Vienna. If you want to include this software in a commercial product, please contact the authors. Note that the file ./src/ViennaRNA/plotting/naview.c has its own copyright attached.
keywords synthetic computational biology genetic dna rna secondary structure prediction minimum free energy centroid subopt mfe viennarna dynamic partition function modified base constraints programming
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![GitHub release](https://img.shields.io/github/release/ViennaRNA/ViennaRNA.svg)](https://www.tbi.univie.ac.at/RNA/#download)
[![Build Status](https://github.com/ViennaRNA/ViennaRNA/actions/workflows/release.yaml/badge.svg)](https://github.com/ViennaRNA/ViennaRNA/actions)
[![Github All Releases](https://img.shields.io/github/downloads/ViennaRNA/ViennaRNA/total.svg)](https://github.com/ViennaRNA/ViennaRNA/releases)
[![Conda](https://img.shields.io/conda/v/bioconda/viennarna.svg)](https://anaconda.org/bioconda/viennarna)
[![Conda Downloads](https://img.shields.io/conda/dn/bioconda/viennarna.svg)](https://anaconda.org/bioconda/viennarna)
[![AUR](https://img.shields.io/aur/version/viennarna.svg)](https://aur.archlinux.org/packages/viennarna/)

# 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][file_news] and [CHANGELOG.md][file_changelog] files for changes between versions.

----

## Availability

The most recent source code should always be available through the
[official ViennaRNA website][vrna_website] and through
[github][vrna_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][vrna_website_manpages].

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

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

----

## 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][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.2.tar.gz
cd ViennaRNA-2.6.2
./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 ..
```

2. Unpack the `dlib` archive to allow for concentration dependency computations with the
   program `RNAmultifold`:
```
cd src
tar -xjf dlib-19.24.tar.bz2
cd ..
```

3. 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`)

4. 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][vrna_website_packages].

### Bioconda
Installation is also possible through [bioconda][bioconda_website].
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][vrna_bioconda_website]
through
```
conda install viennarna
```


### Python interface only
The Python 3 interface for the ViennaRNA Package library is
[available at PyPI][vrna_pypi_website] 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)][vrna2_paper],
"ViennaRNA Package 2.0", Algorithms for Molecular Biology, 6:26

- [I.L. Hofacker (1994)][vrna_paper],
"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][file_license]!

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


[file_news]: https://github.com/ViennaRNA/ViennaRNA/blob/master/NEWS
[file_changelog]: https://github.com/ViennaRNA/ViennaRNA/blob/master/CHANGELOG.md
[file_install]: https://github.com/ViennaRNA/ViennaRNA/blob/master/INSTALL
[file_license]: https://github.com/ViennaRNA/ViennaRNA/blob/master/COPYING
[file_param_rna2004]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_turner2004.par
[file_param_rna1999]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_turner1999.par
[file_param_dna2004]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/dna_mathews2004.par
[file_param_dna1999]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/dna_mathews1999.par
[file_param_andronescu2007]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_andronescou2007.par
[file_param_langdon2018]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_langdon2018.par
[file_param_inosine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_inosine_parameters.json
[file_param_pseudouridine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_pseudouridine_parameters.json
[file_param_m6A]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_m6A_parameters.json
[file_param_7DA]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_7DA_parameters.json
[file_param_purine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_purine_parameters.json
[file_param_dihydrouridine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_dihydrouridine_parameters.json
[vrna_website]: https://www.tbi.univie.ac.at/RNA
[vrna_github]: https://github.com/ViennaRNA/ViennaRNA
[vrna_website_manpages]: https://www.tbi.univie.ac.at/RNA/documentation.html#programs
[vrna_website_packages]: https://www.tbi.univie.ac.at/RNA/#binary_packages
[doxygen_website]: https://www.doxygen.nl
[vrna_refman_website]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman
[vrna_refman_epars]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman/group__energy__parameters__rw.html
[vrna_refman_mod_base]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman/group__modified__bases.html
[vrna_rtd_website]: https://viennarna-python.readthedocs.io
[bioconda_website]: https://bioconda.github.io
[vrna_bioconda_website]: http://bioconda.github.io/recipes/viennarna/README.html
[vrna_pypi_website]: https://pypi.org/project/ViennaRNA
[vrna_refman_config]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman/install.html#configuration
[vrna2_paper]: https://almob.biomedcentral.com/articles/10.1186/1748-7188-6-26
[vrna_paper]: https://link.springer.com/article/10.1007/BF00818163
[nndb_paper]: https://dx.doi.org/10.1093/nar/gkp892
[param2004_paper]: https://doi.org/10.1073/pnas.0401799101

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ViennaRNA",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Ronny Lorenz <rna@tbi.univie.ac.at>, Ayaan Hossain <auh57@psu.edu>",
    "keywords": "synthetic,computational,biology,genetic,DNA,RNA,secondary,structure,prediction,minimum,free,energy,centroid,subopt,mfe,ViennaRNA,dynamic,partition function,modified base,constraints,programming",
    "author": "",
    "author_email": "Ronny Lorenz <ronny@tbi.univie.ac.at>, \"Ivo L. Hofacker\" <ivo@tbi.univie.ac.at>",
    "download_url": "https://files.pythonhosted.org/packages/b3/73/44904c687790f2d9e151caf4dc6f1a97eb1beb5da1d089a79784abefa4a2/ViennaRNA-2.6.2.tar.gz",
    "platform": null,
    "description": "[![GitHub release](https://img.shields.io/github/release/ViennaRNA/ViennaRNA.svg)](https://www.tbi.univie.ac.at/RNA/#download)\n[![Build Status](https://github.com/ViennaRNA/ViennaRNA/actions/workflows/release.yaml/badge.svg)](https://github.com/ViennaRNA/ViennaRNA/actions)\n[![Github All Releases](https://img.shields.io/github/downloads/ViennaRNA/ViennaRNA/total.svg)](https://github.com/ViennaRNA/ViennaRNA/releases)\n[![Conda](https://img.shields.io/conda/v/bioconda/viennarna.svg)](https://anaconda.org/bioconda/viennarna)\n[![Conda Downloads](https://img.shields.io/conda/dn/bioconda/viennarna.svg)](https://anaconda.org/bioconda/viennarna)\n[![AUR](https://img.shields.io/aur/version/viennarna.svg)](https://aur.archlinux.org/packages/viennarna/)\n\n# ViennaRNA Package\n\nA C code library and several stand-alone programs for the prediction and comparison of RNA secondary structures.\n\nAmongst other things, our implementations allow you to:\n\n- predict minimum free energy secondary structures\n- calculate the partition function for the ensemble of structures\n- compute various equilibrium probabilities\n- calculate suboptimal structures in a given energy range\n- compute local structures in long sequences\n- predict consensus secondary structures from a multiple sequence alignment\n- predict melting curves\n- search for sequences folding into a given structure\n- compare two secondary structures \n- predict interactions between multiple RNA molecules\n\nThe package includes `Perl 5` and `Python` modules that give access to almost\nall functions of the C library from within the respective scripting languages.\n\nThere is also a set of programs for analyzing sequence and distance\ndata using split decomposition, statistical geometry, and cluster methods.\nThey are not maintained any more and not built by default.\n\nThe code very rarely uses static arrays, and all programs should work for \nsequences up to a length of 32,700 (if you have huge amounts of memory that\nis).\n\nSee the [NEWS][file_news] and [CHANGELOG.md][file_changelog] files for changes between versions.\n\n----\n\n## Availability\n\nThe most recent source code should always be available through the\n[official ViennaRNA website][vrna_website] and through\n[github][vrna_github].\n\n----\n\n## Documentation\n\nExecutable programs shipped with the ViennaRNA Package are documented by\ncorresponding man pages, use e.g.:\n```\nman RNAfold\n```\nin a UNIX terminal to obtain the documentation for the `RNAfold` program.\nHTML translations of all man pages can be found at [our official homepage][vrna_website_manpages].\n\nWe maintain a reference manual describing the `RNAlib` API that is automatically\ngenerated with [doxygen][doxygen_website]. The HTML version of this reference\nmanual is available [here][vrna_refman_website].\n\nIn addition, the description of the `RNAlib` Python API can be found at\n[Read the Docs][vrna_rtd_website].\n\n----\n\n## Installation\n\nFor best portability the ViennaRNA package uses the GNU autoconf and automake\ntools. The instructions below are for installing the ViennaRNA package from\nsource.\n\n*See the file [INSTALL][file_install] for a more detailed description of the build\nand installation process.*\n\n### Quick Start\n\nUsually you'll simply unpack the distribution tarball, configure and make:\n```\ntar -zxvf ViennaRNA-2.6.2.tar.gz\ncd ViennaRNA-2.6.2\n./configure\nmake\nsudo make install\n```\n\n### User-dir Installation\nIf you do not have root privileges on your computer, you might want to install\nthe ViennaRNA Package to a location where you actually have write access to.\nUse the `--prefix` option to set the installation prefix like so:\n```\n./configure --prefix=/home/username/ViennaRNA\nmake install\n```\n\nThis will install everything into a new directory `ViennaRNA` directly into\nthe home directory of user `username`.\n\n*Note, that the actual install destination paths are listed at the end\nof the `./configure` output.*\n\n### Install from git repository\n\nIf you attempt to build and install from our git repository, you need to\nperform some additional steps __before__ actually running the `./configure`\nscript:\n\n1. Unpack the `libsvm` archive to allow for SVM Z-score regression with the\n   program `RNALfold`:\n```\ncd src\ntar -xzf libsvm-3.31.tar.gz\ncd ..\n```\n\n2. Unpack the `dlib` archive to allow for concentration dependency computations with the\n   program `RNAmultifold`:\n```\ncd src\ntar -xjf dlib-19.24.tar.bz2\ncd ..\n```\n\n3. Install the additional maintainer tools `gengetopt`, `help2man`,`flex`,`xxd`,\n   and `swig` if necessary. For instance, in RedHat based distributions, the\n   following packages need to be installed:\n    - `gengetopt` (to generate command line parameter parsers)\n    - `help2man` (to generate the man pages) \n    - `yacc`, `flex` and `flex-devel` (to generate sources for RNAforester)\n    - `vim-common` (for the `xxd` program)\n    - `swig` (to generate the scripting language interfaces)\n    - `liblapacke` (for `RNAxplorer`)\n    - `liblapack`  (for `RNAxplorer`)\n    - A fortran compiler, e.g. `gcc-gfortran` (for `RNAxplorer`)\n\n4. Finally, run the autoconf/automake toolchain:\n```\nautoreconf -i\n```\n\nAfter that, you can compile and install the ViennaRNA Package as if obtained\nfrom the distribution tarball.\n\n\n### Binary packages\nBinary packages for several Linux-based platforms, Microsoft Windows, and\nMac OS X are available at [our official website][vrna_website_packages].\n\n### Bioconda\nInstallation is also possible through [bioconda][bioconda_website].\nAfter successfully setting up the bioconda channels\n```\nconda config --add channels defaults\nconda config --add channels bioconda\nconda config --add channels conda-forge\nconda config --set channel_priority strict\n```\nyou can install the [viennarna bioconda package][vrna_bioconda_website]\nthrough\n```\nconda install viennarna\n```\n\n\n### Python interface only\nThe Python 3 interface for the ViennaRNA Package library is\n[available at PyPI][vrna_pypi_website] and can\nbe installed independently using Python's `pip`:\n```\npython -m pip install viennarna\n```\n\n#### Building a Python 3 sdist or wheel package\nOur source tree allows for building/installing the Python 3\ninterface separately. For that, we provide the necessary packaging\nfiles `pyproject.toml`, `setup.cfg`, `setup.py` and `MANIFEST.in`.\n\nThese files are created by our `autoconf` toolchain after a run\nof `./configure`. Particular default compile-time features may be\n(de-)activated by setting the corresponding boolean flags in\n`setup.cfg`. See below for additional steps when building the\nPython interface from a clean git clone.\n\nRunning\n```\npython -m build\n```\nwill then create a source distribution (`sdist`) and a binary\npackage (`wheel`) in the `dist/` directory. These files can be\neasily installed via Python's `pip`.\n\n#### Howto prepare the Python 3 sdist/wheel build from git repository\nIf you are about to create the Python interface from a fresh\nclone of our git repository, you require additional steps after\nrunning `./configure` as described above. In particular, some\nautogenerated static files that are compiled into RNAlib must\nbe generated. To do so, run\n```\ncd src/ViennaRNA/static\nmake\ncd ../../..\n```\n\nAdditionally, if building the reference manual is not explicitly\nturned off, the Python interface requires docstrings to be generated.\nThey are taken from the doxygen xml output which can be created by\n```\ncd doc\nmake refman-html\ncd ..\n```\n\nFinally, the swig wrapper must be build using\n```\ncd interfaces/Python\nmake RNA/RNA.py\ncd ../..\n```\n\nAfter these steps, the Python sdist and wheel packages can\nbe build as usual.\n\n----\n\n## References\n\nIf you use our software package, you may want to cite the follwing publications:\n\n- [R. Lorenz et al. (2011)][vrna2_paper],\n\"ViennaRNA Package 2.0\", Algorithms for Molecular Biology, 6:26\n\n- [I.L. Hofacker (1994)][vrna_paper],\n\"Fast folding and comparison of RNA secondary structures\",\nMonatshefte fuer Chemie, Volume 125, Issue 2, pp 167-188\n\n\n*Note, that the individual executable programs state their own list of references\nin the corresponding man-pages.*\n\n----\n\n## License\n\nPlease read the copyright notice in the file [COPYING][file_license]!\n\nIf you're a commercial user and find these programs useful, please consider\nsupporting further developments with a donation.\n\n----\n\n## Contact\n\nWe need your feedback! Send your comments, suggestions, and questions to\nrna@tbi.univie.ac.at\n\nIvo Hofacker, Spring 2006\n\n\n[file_news]: https://github.com/ViennaRNA/ViennaRNA/blob/master/NEWS\n[file_changelog]: https://github.com/ViennaRNA/ViennaRNA/blob/master/CHANGELOG.md\n[file_install]: https://github.com/ViennaRNA/ViennaRNA/blob/master/INSTALL\n[file_license]: https://github.com/ViennaRNA/ViennaRNA/blob/master/COPYING\n[file_param_rna2004]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_turner2004.par\n[file_param_rna1999]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_turner1999.par\n[file_param_dna2004]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/dna_mathews2004.par\n[file_param_dna1999]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/dna_mathews1999.par\n[file_param_andronescu2007]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_andronescou2007.par\n[file_param_langdon2018]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_langdon2018.par\n[file_param_inosine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_inosine_parameters.json\n[file_param_pseudouridine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_pseudouridine_parameters.json\n[file_param_m6A]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_m6A_parameters.json\n[file_param_7DA]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_7DA_parameters.json\n[file_param_purine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_purine_parameters.json\n[file_param_dihydrouridine]: https://github.com/ViennaRNA/ViennaRNA/blob/master/misc/rna_mod_dihydrouridine_parameters.json\n[vrna_website]: https://www.tbi.univie.ac.at/RNA\n[vrna_github]: https://github.com/ViennaRNA/ViennaRNA\n[vrna_website_manpages]: https://www.tbi.univie.ac.at/RNA/documentation.html#programs\n[vrna_website_packages]: https://www.tbi.univie.ac.at/RNA/#binary_packages\n[doxygen_website]: https://www.doxygen.nl\n[vrna_refman_website]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman\n[vrna_refman_epars]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman/group__energy__parameters__rw.html\n[vrna_refman_mod_base]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman/group__modified__bases.html\n[vrna_rtd_website]: https://viennarna-python.readthedocs.io\n[bioconda_website]: https://bioconda.github.io\n[vrna_bioconda_website]: http://bioconda.github.io/recipes/viennarna/README.html\n[vrna_pypi_website]: https://pypi.org/project/ViennaRNA\n[vrna_refman_config]: https://www.tbi.univie.ac.at/RNA/ViennaRNA/refman/install.html#configuration\n[vrna2_paper]: https://almob.biomedcentral.com/articles/10.1186/1748-7188-6-26\n[vrna_paper]: https://link.springer.com/article/10.1007/BF00818163\n[nndb_paper]: https://dx.doi.org/10.1093/nar/gkp892\n[param2004_paper]: https://doi.org/10.1073/pnas.0401799101\n",
    "bugtrack_url": null,
    "license": "Disclaimer and Copyright  The programs, library and source code of the Vienna RNA Package are free software. They are distributed in the hope that they will be useful but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  Permission is granted for research, educational, and commercial use and modification so long as 1) the package and any derived works are not redistributed for any fee, other than media costs, 2) proper credit is given to the authors and the Institute for Theoretical Chemistry of the University of Vienna.  If you want to include this software in a commercial product, please contact the authors.  Note that the file ./src/ViennaRNA/plotting/naview.c has its own copyright attached. ",
    "summary": "A library for the prediction and comparison of RNA secondary structures.",
    "version": "2.6.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/ViennaRNA/ViennaRNA/issues",
        "Changelog": "https://www.tbi.univie.ac.at/RNA/changelog.html",
        "Documentation": "https://viennarna-python.readthedocs.io/",
        "Homepage": "https://www.tbi.univie.ac.at/RNA"
    },
    "split_keywords": [
        "synthetic",
        "computational",
        "biology",
        "genetic",
        "dna",
        "rna",
        "secondary",
        "structure",
        "prediction",
        "minimum",
        "free",
        "energy",
        "centroid",
        "subopt",
        "mfe",
        "viennarna",
        "dynamic",
        "partition function",
        "modified base",
        "constraints",
        "programming"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56d74be5f10eed2081a3bd54b8ba051159d3d05432eecd58c83b72f535b76e21",
                "md5": "0229289b99f5cd7f71ca6053ed9fb5e7",
                "sha256": "3659ad1cc0506e91986c73eaf358453d402c0f8a595ade2b5e3ecf9fef0b22e8"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0229289b99f5cd7f71ca6053ed9fb5e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2347902,
            "upload_time": "2023-07-12T19:32:07",
            "upload_time_iso_8601": "2023-07-12T19:32:07.544839Z",
            "url": "https://files.pythonhosted.org/packages/56/d7/4be5f10eed2081a3bd54b8ba051159d3d05432eecd58c83b72f535b76e21/ViennaRNA-2.6.2-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89fa1b4d9474cff058f4e23ce3dffc2c8cc6fa7aa980782f44324fbeeabb55f0",
                "md5": "c8e8ac72a38b53f3cc0c54777812b7bd",
                "sha256": "cb6b644472195ea731ca57a00916e1f02d742c2db94f338d7ccd9bf0edd35671"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c8e8ac72a38b53f3cc0c54777812b7bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2267693,
            "upload_time": "2023-07-12T19:32:09",
            "upload_time_iso_8601": "2023-07-12T19:32:09.372760Z",
            "url": "https://files.pythonhosted.org/packages/89/fa/1b4d9474cff058f4e23ce3dffc2c8cc6fa7aa980782f44324fbeeabb55f0/ViennaRNA-2.6.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fb29eeacfc00e825ca78aabc27ead72c32b2056e74d784846e66c80549f8bc3",
                "md5": "b66ef48cc954649076610f796da2f233",
                "sha256": "38f144b47d810b17fa41afe4c3cbc863f313e930e38912de9dabd06c9912e2b1"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b66ef48cc954649076610f796da2f233",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11117003,
            "upload_time": "2023-07-12T19:32:11",
            "upload_time_iso_8601": "2023-07-12T19:32:11.089554Z",
            "url": "https://files.pythonhosted.org/packages/3f/b2/9eeacfc00e825ca78aabc27ead72c32b2056e74d784846e66c80549f8bc3/ViennaRNA-2.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5f39c602f1c4e7cf2bb95c31bba8b4908f2ddf862204aceb999377b1e76a263",
                "md5": "52b197e85c1b5e829fb7166a8b3c5537",
                "sha256": "689d56b1591e1a3a55e6eb3f6a9c8bdfe9d072e25d2d75d84fc6d4dcb8a07a8c"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52b197e85c1b5e829fb7166a8b3c5537",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11898482,
            "upload_time": "2023-07-12T19:32:13",
            "upload_time_iso_8601": "2023-07-12T19:32:13.859887Z",
            "url": "https://files.pythonhosted.org/packages/a5/f3/9c602f1c4e7cf2bb95c31bba8b4908f2ddf862204aceb999377b1e76a263/ViennaRNA-2.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b950273d56b829109ec99f52a3250d5975969ea92f8a1d1fe569460a8505a067",
                "md5": "9feeca14cc91ef9d6f7c68e7f8b74fd7",
                "sha256": "8664ed9614d9ee294f269c59e4ec2b4d513d9772b9d50a527dd3c5480307dc99"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9feeca14cc91ef9d6f7c68e7f8b74fd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11664022,
            "upload_time": "2023-07-12T19:32:16",
            "upload_time_iso_8601": "2023-07-12T19:32:16.339117Z",
            "url": "https://files.pythonhosted.org/packages/b9/50/273d56b829109ec99f52a3250d5975969ea92f8a1d1fe569460a8505a067/ViennaRNA-2.6.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ec3d1d4388ce289b97970f762a68cfd7821971b80e2c2a56c3e7c091485c966",
                "md5": "ed74d12a0960aec90bbc5f98819571f0",
                "sha256": "6f831f9bc8667d7f61e98ddab4abad1b4e2ee07fd19f13e18cc7ccb6bb02de38"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed74d12a0960aec90bbc5f98819571f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 12404180,
            "upload_time": "2023-07-12T19:32:20",
            "upload_time_iso_8601": "2023-07-12T19:32:20.378756Z",
            "url": "https://files.pythonhosted.org/packages/4e/c3/d1d4388ce289b97970f762a68cfd7821971b80e2c2a56c3e7c091485c966/ViennaRNA-2.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fac1b794e68d98c1b7a204e4e5da625e9953f83a3c554d19689d9a1108a1d9fb",
                "md5": "56665eed197c4e3496effaba264b8bf6",
                "sha256": "c492f1e5dd7e0c6ce8bed13bf19badafcd1273ab983626e485535af6159fb03f"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56665eed197c4e3496effaba264b8bf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2347891,
            "upload_time": "2023-07-12T19:32:22",
            "upload_time_iso_8601": "2023-07-12T19:32:22.916575Z",
            "url": "https://files.pythonhosted.org/packages/fa/c1/b794e68d98c1b7a204e4e5da625e9953f83a3c554d19689d9a1108a1d9fb/ViennaRNA-2.6.2-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de45e9b08e19992bec9300ffb94cd49f7ea974912cee94de5d4dd0b10697d0d7",
                "md5": "07b5a080c348b1a473aec96ef8244e8b",
                "sha256": "e8c429bc71405ddf0a66795f3bf442ce54a192f76ab86f3b9e1daa4d6c7ce1e7"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "07b5a080c348b1a473aec96ef8244e8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2267705,
            "upload_time": "2023-07-12T19:32:24",
            "upload_time_iso_8601": "2023-07-12T19:32:24.652837Z",
            "url": "https://files.pythonhosted.org/packages/de/45/e9b08e19992bec9300ffb94cd49f7ea974912cee94de5d4dd0b10697d0d7/ViennaRNA-2.6.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38c871736f66a09668eaef822836989f72781dd8ae12f4d0303170445429889c",
                "md5": "0541a661c56e654b7345cda1ac5292da",
                "sha256": "582d996357f2a2a0a487142a21b000d9747c265142061bd061fbb0162c395333"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0541a661c56e654b7345cda1ac5292da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11180575,
            "upload_time": "2023-07-12T19:32:26",
            "upload_time_iso_8601": "2023-07-12T19:32:26.631722Z",
            "url": "https://files.pythonhosted.org/packages/38/c8/71736f66a09668eaef822836989f72781dd8ae12f4d0303170445429889c/ViennaRNA-2.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7056bf9b92ad84d1aa0b31265d9a14c58ffcaa236ae460c4365737145bb12489",
                "md5": "0f95ad889aeae0d7f6849588d2ab1fc2",
                "sha256": "fd4085831f7314daa54f169a051deea0aa630a7138c04e1d6696d50416d8b4b1"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f95ad889aeae0d7f6849588d2ab1fc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11965203,
            "upload_time": "2023-07-12T19:32:29",
            "upload_time_iso_8601": "2023-07-12T19:32:29.398437Z",
            "url": "https://files.pythonhosted.org/packages/70/56/bf9b92ad84d1aa0b31265d9a14c58ffcaa236ae460c4365737145bb12489/ViennaRNA-2.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba69db7732e6870f2f25c62edbc619cffc645394a8d54e6f8a928961036d78e1",
                "md5": "6871a31f0cf338c75c7415eaa8cb7756",
                "sha256": "9102d10b49a34241d382606fdfbbacf59d22b6b82f3d4d0b106a7c7b88047cf3"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6871a31f0cf338c75c7415eaa8cb7756",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11708719,
            "upload_time": "2023-07-12T19:32:33",
            "upload_time_iso_8601": "2023-07-12T19:32:33.693650Z",
            "url": "https://files.pythonhosted.org/packages/ba/69/db7732e6870f2f25c62edbc619cffc645394a8d54e6f8a928961036d78e1/ViennaRNA-2.6.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04c1f5c82621ad6b749fd552d59de22f520f908277dd976f4d5a33f367d30de8",
                "md5": "e7e592535ac3392e76e16c695a91bfa0",
                "sha256": "7de231a2d3132908ba9fdf7091a9f53ec846bc6bd4f079c93392583604c6f457"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7e592535ac3392e76e16c695a91bfa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 12448523,
            "upload_time": "2023-07-12T19:32:36",
            "upload_time_iso_8601": "2023-07-12T19:32:36.493627Z",
            "url": "https://files.pythonhosted.org/packages/04/c1/f5c82621ad6b749fd552d59de22f520f908277dd976f4d5a33f367d30de8/ViennaRNA-2.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f33e5b5dec4d557b9f654c71b89f7aad42a7f9fc4c7c87f1a9fa68e5a51b3163",
                "md5": "2942561c665c1cb2507656c554d7ee94",
                "sha256": "9d3a6ec4d79cae9f8a4916551a68636406c64220b1890523020245b2c6b144dd"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp38-cp38-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2942561c665c1cb2507656c554d7ee94",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2348602,
            "upload_time": "2023-07-12T19:32:40",
            "upload_time_iso_8601": "2023-07-12T19:32:40.212100Z",
            "url": "https://files.pythonhosted.org/packages/f3/3e/5b5dec4d557b9f654c71b89f7aad42a7f9fc4c7c87f1a9fa68e5a51b3163/ViennaRNA-2.6.2-cp38-cp38-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9b989a9e6c7c919b641718d3a60d15cbf4b66862df180079ca0e5a8f418a6f0",
                "md5": "fff819ee5e0aa419576f37c0eb59eddd",
                "sha256": "a26e66c231f20b83b67ef3d04157be47af8db5cae81f12300b2d5eb368bf9fe5"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fff819ee5e0aa419576f37c0eb59eddd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2267898,
            "upload_time": "2023-07-12T19:32:41",
            "upload_time_iso_8601": "2023-07-12T19:32:41.906687Z",
            "url": "https://files.pythonhosted.org/packages/c9/b9/89a9e6c7c919b641718d3a60d15cbf4b66862df180079ca0e5a8f418a6f0/ViennaRNA-2.6.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4704470fb66f45780ae342dcd0c39fd3cb01e4fc59ea95066ba04c3d5e5f0f7d",
                "md5": "bec3d63c2da7b1348caa828a18582d20",
                "sha256": "ceca8c3dc69898eada8f45b49b60dc2ef60ef7bb6a8f26ed6eebdd2a7d84d9a7"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bec3d63c2da7b1348caa828a18582d20",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11200056,
            "upload_time": "2023-07-12T19:32:44",
            "upload_time_iso_8601": "2023-07-12T19:32:44.083474Z",
            "url": "https://files.pythonhosted.org/packages/47/04/470fb66f45780ae342dcd0c39fd3cb01e4fc59ea95066ba04c3d5e5f0f7d/ViennaRNA-2.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76ce2ada9ed900e320fa7ed9bac4fb2a505e16b83a9116e21ec66958885b5f90",
                "md5": "952a7cfd724664dbec48f9a7912519e4",
                "sha256": "09a54c9ff0c67e59dd8a48eafa62cabde03949c7ca639368dc7d0d95b7e68ca9"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "952a7cfd724664dbec48f9a7912519e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11885827,
            "upload_time": "2023-07-12T19:32:47",
            "upload_time_iso_8601": "2023-07-12T19:32:47.871808Z",
            "url": "https://files.pythonhosted.org/packages/76/ce/2ada9ed900e320fa7ed9bac4fb2a505e16b83a9116e21ec66958885b5f90/ViennaRNA-2.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b5e16bbe0cda15be9dd038dbe30b3fb53d8f8edc21c5121f67bc594934b196c",
                "md5": "d057cef4887bb383308cc11544ffdd67",
                "sha256": "84434fdd2cb972998f85a7152a36bd4d07a34d195b7be73bd64374f8884c2173"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d057cef4887bb383308cc11544ffdd67",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11658408,
            "upload_time": "2023-07-12T19:32:54",
            "upload_time_iso_8601": "2023-07-12T19:32:54.205098Z",
            "url": "https://files.pythonhosted.org/packages/3b/5e/16bbe0cda15be9dd038dbe30b3fb53d8f8edc21c5121f67bc594934b196c/ViennaRNA-2.6.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "667f56eb458650c056b8c1ed6e22185238926e7836b5701d357ef896ce5abb33",
                "md5": "d5ef2f0ae8fedecceb792c37bcfcabc6",
                "sha256": "c4236a426575a4113966eb9470bf9fc7084686041d407517d36dac584d54e1b5"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5ef2f0ae8fedecceb792c37bcfcabc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 12402917,
            "upload_time": "2023-07-12T19:32:56",
            "upload_time_iso_8601": "2023-07-12T19:32:56.922750Z",
            "url": "https://files.pythonhosted.org/packages/66/7f/56eb458650c056b8c1ed6e22185238926e7836b5701d357ef896ce5abb33/ViennaRNA-2.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cef3297531f48acfdeeb4f10083d0d7d7e5f7af06e7905ac2061344ccac6022",
                "md5": "6006d97728dba8282cd09d0e9f145655",
                "sha256": "c1bd5063f16e1ddce5e629da78a99a6266471d70a85131257dc1b43c0a441999"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6006d97728dba8282cd09d0e9f145655",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2347849,
            "upload_time": "2023-07-12T19:33:01",
            "upload_time_iso_8601": "2023-07-12T19:33:01.115516Z",
            "url": "https://files.pythonhosted.org/packages/1c/ef/3297531f48acfdeeb4f10083d0d7d7e5f7af06e7905ac2061344ccac6022/ViennaRNA-2.6.2-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3644ac509347ec8f9b9c5cb69f4adc993b6f782bab7ed63639a1645450bb5d1c",
                "md5": "717683345674a4c5b28d74e4af2b6938",
                "sha256": "15729a94559cbc96b69f3c856583bb588cfa6cd09170bd30e6c0ecad21e7b521"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "717683345674a4c5b28d74e4af2b6938",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2267741,
            "upload_time": "2023-07-12T19:33:02",
            "upload_time_iso_8601": "2023-07-12T19:33:02.986783Z",
            "url": "https://files.pythonhosted.org/packages/36/44/ac509347ec8f9b9c5cb69f4adc993b6f782bab7ed63639a1645450bb5d1c/ViennaRNA-2.6.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b83489df39d5162afa18e7f487cb110d8aa8ae936d909b42e3be398e1c41b758",
                "md5": "51a793bfad1cebd64eebbc8ed85c62d2",
                "sha256": "f245f1956bd479774bc486ea285928d7f099a9f1184660d70bbfb6d541b8e705"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "51a793bfad1cebd64eebbc8ed85c62d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11124259,
            "upload_time": "2023-07-12T19:33:04",
            "upload_time_iso_8601": "2023-07-12T19:33:04.880601Z",
            "url": "https://files.pythonhosted.org/packages/b8/34/89df39d5162afa18e7f487cb110d8aa8ae936d909b42e3be398e1c41b758/ViennaRNA-2.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb0fc33a98d884ada4b9c7478bed87eb0c66de9da9ecc45babf7604e652d7e36",
                "md5": "10a43f4e13d9e84b29b7d831f23a5693",
                "sha256": "aa5b4674537564170fd79cb9050f2e7554fd002358a959495a3461d3b870e05f"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10a43f4e13d9e84b29b7d831f23a5693",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11900163,
            "upload_time": "2023-07-12T19:33:10",
            "upload_time_iso_8601": "2023-07-12T19:33:10.443413Z",
            "url": "https://files.pythonhosted.org/packages/bb/0f/c33a98d884ada4b9c7478bed87eb0c66de9da9ecc45babf7604e652d7e36/ViennaRNA-2.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6577f28f32fa5b43507cd5d4b871fa8d5a43645db2acaf94a028c31b7dd1d8b",
                "md5": "5cbeaa2696e39bdb899bdd6f672cc616",
                "sha256": "60fe38c1695c4c9446d8893ea1b0a31eda3d9be7861f689a82cc96f25431fbcb"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5cbeaa2696e39bdb899bdd6f672cc616",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11661245,
            "upload_time": "2023-07-12T19:33:13",
            "upload_time_iso_8601": "2023-07-12T19:33:13.001972Z",
            "url": "https://files.pythonhosted.org/packages/e6/57/7f28f32fa5b43507cd5d4b871fa8d5a43645db2acaf94a028c31b7dd1d8b/ViennaRNA-2.6.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fa7fe40da076361a3c71467bcdbba0fc42bab89b4561869c966ffa2539dc942",
                "md5": "cc13f0f6818c78062d4f930a2bc96447",
                "sha256": "e12deeb9676644c8fc08ceaae172947474638b2b4924c0a96ccbcaeea08c4ea9"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc13f0f6818c78062d4f930a2bc96447",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 12402546,
            "upload_time": "2023-07-12T19:33:16",
            "upload_time_iso_8601": "2023-07-12T19:33:16.174508Z",
            "url": "https://files.pythonhosted.org/packages/3f/a7/fe40da076361a3c71467bcdbba0fc42bab89b4561869c966ffa2539dc942/ViennaRNA-2.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b37344904c687790f2d9e151caf4dc6f1a97eb1beb5da1d089a79784abefa4a2",
                "md5": "691c533c69d09ff34027c209985984ef",
                "sha256": "c990f4915c84bc4d5642227db6f6895e14b9e16c261457aac870ee952250d4d6"
            },
            "downloads": -1,
            "filename": "ViennaRNA-2.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "691c533c69d09ff34027c209985984ef",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 4838881,
            "upload_time": "2023-07-12T19:33:18",
            "upload_time_iso_8601": "2023-07-12T19:33:18.772645Z",
            "url": "https://files.pythonhosted.org/packages/b3/73/44904c687790f2d9e151caf4dc6f1a97eb1beb5da1d089a79784abefa4a2/ViennaRNA-2.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-12 19:33:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ViennaRNA",
    "github_project": "ViennaRNA",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "viennarna"
}
        
Elapsed time: 0.08777s