opr


Nameopr JSON
Version 0.6 PyPI version JSON
download
home_pagehttps://github.com/openscilab/opr
SummaryOPR: Optimized Primer
upload_time2025-11-02 13:44:52
maintainerNone
docs_urlNone
authorOPR Development Team
requires_python>=3.7
licenseMIT
keywords primer biology bioinformatics genome dna pcr
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            
<div align="center">
    <img src="https://github.com/openscilab/opr/raw/main/otherfiles/logo.png" width="250">
    <h1>OPR: Optimized Primer</h1>
    <br/>
    <a href="https://codecov.io/gh/openscilab/opr"><img src="https://codecov.io/gh/openscilab/opr/branch/dev/graph/badge.svg" alt="Codecov"></a>
    <a href="https://badge.fury.io/py/opr"><img src="https://badge.fury.io/py/opr.svg" alt="PyPI version"></a>
    <a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3"></a>
    <a href="https://github.com/openscilab/opr"><img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/openscilab/opr"></a>
    <a href="https://discord.gg/8mBspwXqcA"><img src="https://img.shields.io/discord/1064533716615049236.svg" alt="Discord Channel"></a>
</div>

----------


## Overview
<p align="justify">
<b>OPR</b> is an open-source Python package designed to simplify and streamline primer design and analysis for biologists and bioinformaticians. <b>OPR</b> enables users to design, validate, and optimize primers with ease, catering to a wide range of applications such as PCR, qPCR, and sequencing. With a focus on user-friendliness and efficiency, <b>OPR</b> aims to bridge the gap between biological research and computational tools, making primer-related workflows faster and more reliable.
</p>
<table>
    <tr>
        <td align="center">PyPI Counter</td>
        <td align="center">
            <a href="https://pepy.tech/projects/opr">
                <img src="https://static.pepy.tech/badge/opr">
            </a>
        </td>
    </tr>
    <tr>
        <td align="center">Github Stars</td>
        <td align="center">
            <a href="https://github.com/openscilab/opr">
                <img src="https://img.shields.io/github/stars/openscilab/opr.svg?style=social&label=Stars">
            </a>
        </td>
    </tr>
</table>
<table>
    <tr> 
        <td align="center">Branch</td>
        <td align="center">main</td>
        <td align="center">dev</td>
    </tr>
    <tr>
        <td align="center">CI</td>
        <td align="center">
            <img src="https://github.com/openscilab/opr/actions/workflows/test.yml/badge.svg?branch=main">
        </td>
        <td align="center">
            <img src="https://github.com/openscilab/opr/actions/workflows/test.yml/badge.svg?branch=dev">
            </td>
    </tr>
</table>
<table>
    <tr> 
        <td align="center">Code Quality</td>
        <td align="center"><a href="https://app.codacy.com/gh/openscilab/opr/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade"><img src="https://app.codacy.com/project/badge/Grade/0a819f6eb6ae483695ad4934eff42df9"></a></td>
        <td align="center"><a href="https://www.codefactor.io/repository/github/openscilab/opr"><img src="https://www.codefactor.io/repository/github/openscilab/opr/badge" alt="CodeFactor"></a></td>
    </tr>
</table>


## Installation

### PyPI
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install opr==0.6`
### Source code
- Download [Version 0.6](https://github.com/openscilab/opr/archive/v0.6.zip) or [Latest Source](https://github.com/openscilab/opr/archive/dev.zip)
- Run `pip install .`

## Usage

### Load
```pycon
>>> from opr import Primer, MeltingTemperature
>>> primer1 = Primer(sequence="CTGGAGGACGGAAGAGGAAGTAA", salt=50)
>>> primer1.sequence
'CTGGAGGACGGAAGAGGAAGTAA'
```

### Properties

#### Molecular weight
```pycon
>>> primer1.molecular_weight
7235.79
```
#### GC content
```pycon
>>> primer1.gc_content
0.5217391304347826
```
#### GC clamp
```pycon
>>> primer1.gc_clamp
1
```
#### Single run length
```pycon
>>> primer1.single_runs
{'A': 2, 'T': 1, 'C': 1, 'G': 2}
```
#### Double run length
```pycon
>>> primer1.double_runs
{'TA': 1, 'TC': 0, 'TG': 1, 'AT': 0, 'AC': 1, 'AG': 2, 'CT': 1, 'CA': 0, 'CG': 1, 'GT': 1, 'GA': 1, 'GC': 0}
```
#### Repeats
```pycon
>>> primer1.repeats(sequence="GG", consecutive=False)
4
```
```pycon
>>> primer1.repeats(sequence="GG", consecutive=True)
1
```
#### Melting temperature
##### Basic
```pycon
>>> primer1.melting_temperature()
57.056521739130446
>>> primer1.melting_temperature(MeltingTemperature.BASIC)
57.056521739130446
```
##### Salt-adjusted
```pycon
>>> primer1.melting_temperature(MeltingTemperature.SALT_ADJUSTED)
64.64203250676053
```
##### Nearest neighbor
```pycon
>>> primer1.melting_temperature(MeltingTemperature.NEAREST_NEIGHBOR)
66.42693710590595
```
#### Thermodynamic Constants
##### Enthalpy change (ΔH)
```pycon
>>> primer1.delta_h
-174.99999999999997
```
##### Entropy change (ΔS)
```pycon
>>> primer1.delta_s
-0.44210000000000005
```
#### Extinction Coefficient at 260 nm (E260)
```pycon
>>> primer1.E260
248.40000000000006
```
#### Molecular Formula
```pycon
>>> primer1.molecular_formula
'C228 H279 N105 O129 P22'
```
### Operations

#### Reverse
```pycon
>>> primer1_reversed = primer1.reverse()
>>> primer1_reversed.sequence
'AATGAAGGAGAAGGCAGGAGGTC'
```
#### Complement
```pycon
>>> primer1_complemented = primer1.complement()
>>> primer1_complemented.sequence
'GACCTCCTGCCTTCTCCTTCATT'
```

#### To RNA
```pycon
>>> oprimer_rna = oprimer.to_rna()
>>> oprimer_rna
'CUGGAGGACGGAAGAGGAAGUAA'
```

#### To protein
```pycon
>>> oprimer_protein = oprimer.to_protein(frame=3)
>>> oprimer_protein
'GGRKRK*'
>>> oprimer_protein_aa3 = oprimer.to_protein(frame=3, multi_letter=True)
>>> oprimer_protein_aa3
'Gly-Gly-Arg-Lys-Arg-Lys-Stop'
```

ℹ️ When the `frame=3` it starts from the third nucleotide. The list of codons is then [`GGA`(G), `GGA`(G), `CGG`(R), `AAG`(K), `AGG`(R), `AAG`(K), `TAA`(STOP)]

ℹ️ Stop signal is marked as `*` in OPR

## Issues & bug reports

Just fill an issue and describe it. We'll check it ASAP! or send an email to [opr@openscilab.com](mailto:opr@openscilab.com "opr@openscilab.com"). 

- Please complete the issue template
 
You can also join our discord server

<a href="https://discord.gg/8mBspwXqcA">
  <img src="https://img.shields.io/discord/1064533716615049236.svg?style=for-the-badge" alt="Discord Channel">
</a>

## References

<blockquote>1- <a href="http://biotools.nubic.northwestern.edu/OligoCalc.html">Oligo Calc: Oligonucleotide Properties Calculator</a></blockquote>

<blockquote>2- Marmur, Julius, and Paul Doty. "Determination of the base composition of deoxyribonucleic acid from its thermal denaturation temperature." <i>Journal of molecular biology</i> 5.1 (1962): 109-118.</blockquote>

<blockquote>3- Wallace, R. Bruce, et al. "Hybridization of synthetic oligodeoxyribonucleotides to Φ X 174 DNA: the effect of single base pair mismatch." <i>Nucleic acids research</i> 6.11 (1979): 3543-3558.</blockquote>

<blockquote>4- Panjkovich, Alejandro, and Francisco Melo. "Comparison of different melting temperature calculation methods for short DNA sequences." <i>Bioinformatics 21.6</i> (2005): 711-722.</blockquote>

<blockquote>5- <a href="https://atdbio.com/tools/oligo-calculator">ATDBio - Oligo Calculator</a></blockquote>


## Show your support


### Star this repo

Give a ⭐️ if this project helped you!

### Donate to our project
If you do like our project and we hope that you do, can you please support us? Our project is not and is never going to be working for profit. We need the money just so we can continue doing what we do ;-) .			

<a href="https://openscilab.com/#donation" target="_blank"><img src="https://github.com/openscilab/opr/raw/main/otherfiles/donation.png" width="270" alt="OPR Donation"></a>
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.6] - 2025-11-02
### Added
- `molecular_formula` property
### Changed
- `README.md` updated
- Test system modified
- `Python 3.14` added to `test.yml`
## [0.5] - 2025-06-27
### Added
- `delta_h` property 
- `delta_s` property
- Thermodynamic constants (ΔH, ΔS) calculation
- Nearest neighbor melting temperature calculation
- `to_protein` method
- `protein_seq_calc` function
### Changed
- Python typing features added to all modules
- Test system modified
- `Python 3.6` support dropped
- `README.md` updated
## [0.4] - 2025-03-18
### Added
- Salt-adjusted melting temperature calculation
- `__contains__` overload
- `_computed` internal cache flag attribute
- `is_computed` method
- `to_rna` method
- `E260` property
### Changed
- Cache structure in `Primer` class updated
- Error tests updated
- Cache Test system modified
- `Primer` class `__eq__` method bug fixed
- `README.md` updated
## [0.3] - 2025-02-06
### Added
- `__iter__` overload
- `double_runs` property
- `repeats` method
- `name` property
### Changed
- `single_runs` property updated
- Test system modified
### Removed
- `single_run_length` function
## [0.2] - 2025-01-09
### Added
- `__eq__` overload
- `__str__` overload
- `gc_clamp` property
- `single_runs` property
### Changed
- Test system modified
- `SECURITY.md` updated
- `CONTRIBUTING.md` updated
- `README.md` updated
### Removed
- `property` deleter & setter
## [0.1] - 2024-11-27
### Added
- `MeltingTemperature` enum
- Basic melting temperature calculation
- `addition` and `multipication` operators overload
- `len` magic overload
- `Primer` class
- Molecular weight calculation
- GC content calculation
- Sequence validation
- Unit tests
- `complement` method
- `reverse` method

[Unreleased]: https://github.com/openscilab/opr/compare/v0.6...dev
[0.6]: https://github.com/openscilab/opr/compare/v0.5...v0.6
[0.5]: https://github.com/openscilab/opr/compare/v0.4...v0.5
[0.4]: https://github.com/openscilab/opr/compare/v0.3...v0.4
[0.3]: https://github.com/openscilab/opr/compare/v0.2...v0.3
[0.2]: https://github.com/openscilab/opr/compare/v0.1...v0.2
[0.1]: https://github.com/openscilab/opr/compare/0baa8dd...v0.1

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/openscilab/opr",
    "name": "opr",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "primer biology bioinformatics genome dna pcr",
    "author": "OPR Development Team",
    "author_email": "opr@openscilab.com",
    "download_url": "https://files.pythonhosted.org/packages/61/71/8c032fede88f623541f337b3e9389b38293f7962d077a6c852616f89bd5d/opr-0.6.tar.gz",
    "platform": null,
    "description": "\n<div align=\"center\">\n    <img src=\"https://github.com/openscilab/opr/raw/main/otherfiles/logo.png\" width=\"250\">\n    <h1>OPR: Optimized Primer</h1>\n    <br/>\n    <a href=\"https://codecov.io/gh/openscilab/opr\"><img src=\"https://codecov.io/gh/openscilab/opr/branch/dev/graph/badge.svg\" alt=\"Codecov\"></a>\n    <a href=\"https://badge.fury.io/py/opr\"><img src=\"https://badge.fury.io/py/opr.svg\" alt=\"PyPI version\"></a>\n    <a href=\"https://www.python.org/\"><img src=\"https://img.shields.io/badge/built%20with-Python3-green.svg\" alt=\"built with Python3\"></a>\n    <a href=\"https://github.com/openscilab/opr\"><img alt=\"GitHub repo size\" src=\"https://img.shields.io/github/repo-size/openscilab/opr\"></a>\n    <a href=\"https://discord.gg/8mBspwXqcA\"><img src=\"https://img.shields.io/discord/1064533716615049236.svg\" alt=\"Discord Channel\"></a>\n</div>\n\n----------\n\n\n## Overview\n<p align=\"justify\">\n<b>OPR</b> is an open-source Python package designed to simplify and streamline primer design and analysis for biologists and bioinformaticians. <b>OPR</b> enables users to design, validate, and optimize primers with ease, catering to a wide range of applications such as PCR, qPCR, and sequencing. With a focus on user-friendliness and efficiency, <b>OPR</b> aims to bridge the gap between biological research and computational tools, making primer-related workflows faster and more reliable.\n</p>\n<table>\n    <tr>\n        <td align=\"center\">PyPI Counter</td>\n        <td align=\"center\">\n            <a href=\"https://pepy.tech/projects/opr\">\n                <img src=\"https://static.pepy.tech/badge/opr\">\n            </a>\n        </td>\n    </tr>\n    <tr>\n        <td align=\"center\">Github Stars</td>\n        <td align=\"center\">\n            <a href=\"https://github.com/openscilab/opr\">\n                <img src=\"https://img.shields.io/github/stars/openscilab/opr.svg?style=social&label=Stars\">\n            </a>\n        </td>\n    </tr>\n</table>\n<table>\n    <tr> \n        <td align=\"center\">Branch</td>\n        <td align=\"center\">main</td>\n        <td align=\"center\">dev</td>\n    </tr>\n    <tr>\n        <td align=\"center\">CI</td>\n        <td align=\"center\">\n            <img src=\"https://github.com/openscilab/opr/actions/workflows/test.yml/badge.svg?branch=main\">\n        </td>\n        <td align=\"center\">\n            <img src=\"https://github.com/openscilab/opr/actions/workflows/test.yml/badge.svg?branch=dev\">\n            </td>\n    </tr>\n</table>\n<table>\n    <tr> \n        <td align=\"center\">Code Quality</td>\n        <td align=\"center\"><a href=\"https://app.codacy.com/gh/openscilab/opr/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade\"><img src=\"https://app.codacy.com/project/badge/Grade/0a819f6eb6ae483695ad4934eff42df9\"></a></td>\n        <td align=\"center\"><a href=\"https://www.codefactor.io/repository/github/openscilab/opr\"><img src=\"https://www.codefactor.io/repository/github/openscilab/opr/badge\" alt=\"CodeFactor\"></a></td>\n    </tr>\n</table>\n\n\n## Installation\n\n### PyPI\n- Check [Python Packaging User Guide](https://packaging.python.org/installing/)\n- Run `pip install opr==0.6`\n### Source code\n- Download [Version 0.6](https://github.com/openscilab/opr/archive/v0.6.zip) or [Latest Source](https://github.com/openscilab/opr/archive/dev.zip)\n- Run `pip install .`\n\n## Usage\n\n### Load\n```pycon\n>>> from opr import Primer, MeltingTemperature\n>>> primer1 = Primer(sequence=\"CTGGAGGACGGAAGAGGAAGTAA\", salt=50)\n>>> primer1.sequence\n'CTGGAGGACGGAAGAGGAAGTAA'\n```\n\n### Properties\n\n#### Molecular weight\n```pycon\n>>> primer1.molecular_weight\n7235.79\n```\n#### GC content\n```pycon\n>>> primer1.gc_content\n0.5217391304347826\n```\n#### GC clamp\n```pycon\n>>> primer1.gc_clamp\n1\n```\n#### Single run length\n```pycon\n>>> primer1.single_runs\n{'A': 2, 'T': 1, 'C': 1, 'G': 2}\n```\n#### Double run length\n```pycon\n>>> primer1.double_runs\n{'TA': 1, 'TC': 0, 'TG': 1, 'AT': 0, 'AC': 1, 'AG': 2, 'CT': 1, 'CA': 0, 'CG': 1, 'GT': 1, 'GA': 1, 'GC': 0}\n```\n#### Repeats\n```pycon\n>>> primer1.repeats(sequence=\"GG\", consecutive=False)\n4\n```\n```pycon\n>>> primer1.repeats(sequence=\"GG\", consecutive=True)\n1\n```\n#### Melting temperature\n##### Basic\n```pycon\n>>> primer1.melting_temperature()\n57.056521739130446\n>>> primer1.melting_temperature(MeltingTemperature.BASIC)\n57.056521739130446\n```\n##### Salt-adjusted\n```pycon\n>>> primer1.melting_temperature(MeltingTemperature.SALT_ADJUSTED)\n64.64203250676053\n```\n##### Nearest neighbor\n```pycon\n>>> primer1.melting_temperature(MeltingTemperature.NEAREST_NEIGHBOR)\n66.42693710590595\n```\n#### Thermodynamic Constants\n##### Enthalpy change (\u0394H)\n```pycon\n>>> primer1.delta_h\n-174.99999999999997\n```\n##### Entropy change (\u0394S)\n```pycon\n>>> primer1.delta_s\n-0.44210000000000005\n```\n#### Extinction Coefficient at 260 nm (E260)\n```pycon\n>>> primer1.E260\n248.40000000000006\n```\n#### Molecular Formula\n```pycon\n>>> primer1.molecular_formula\n'C228 H279 N105 O129 P22'\n```\n### Operations\n\n#### Reverse\n```pycon\n>>> primer1_reversed = primer1.reverse()\n>>> primer1_reversed.sequence\n'AATGAAGGAGAAGGCAGGAGGTC'\n```\n#### Complement\n```pycon\n>>> primer1_complemented = primer1.complement()\n>>> primer1_complemented.sequence\n'GACCTCCTGCCTTCTCCTTCATT'\n```\n\n#### To RNA\n```pycon\n>>> oprimer_rna = oprimer.to_rna()\n>>> oprimer_rna\n'CUGGAGGACGGAAGAGGAAGUAA'\n```\n\n#### To protein\n```pycon\n>>> oprimer_protein = oprimer.to_protein(frame=3)\n>>> oprimer_protein\n'GGRKRK*'\n>>> oprimer_protein_aa3 = oprimer.to_protein(frame=3, multi_letter=True)\n>>> oprimer_protein_aa3\n'Gly-Gly-Arg-Lys-Arg-Lys-Stop'\n```\n\n\u2139\ufe0f When the `frame=3` it starts from the third nucleotide. The list of codons is then [`GGA`(G), `GGA`(G), `CGG`(R), `AAG`(K), `AGG`(R), `AAG`(K), `TAA`(STOP)]\n\n\u2139\ufe0f Stop signal is marked as `*` in OPR\n\n## Issues & bug reports\n\nJust fill an issue and describe it. We'll check it ASAP! or send an email to [opr@openscilab.com](mailto:opr@openscilab.com \"opr@openscilab.com\"). \n\n- Please complete the issue template\n \nYou can also join our discord server\n\n<a href=\"https://discord.gg/8mBspwXqcA\">\n  <img src=\"https://img.shields.io/discord/1064533716615049236.svg?style=for-the-badge\" alt=\"Discord Channel\">\n</a>\n\n## References\n\n<blockquote>1- <a href=\"http://biotools.nubic.northwestern.edu/OligoCalc.html\">Oligo Calc: Oligonucleotide Properties Calculator</a></blockquote>\n\n<blockquote>2- Marmur, Julius, and Paul Doty. \"Determination of the base composition of deoxyribonucleic acid from its thermal denaturation temperature.\" <i>Journal of molecular biology</i> 5.1 (1962): 109-118.</blockquote>\n\n<blockquote>3- Wallace, R. Bruce, et al. \"Hybridization of synthetic oligodeoxyribonucleotides to \u03a6 X 174 DNA: the effect of single base pair mismatch.\" <i>Nucleic acids research</i> 6.11 (1979): 3543-3558.</blockquote>\n\n<blockquote>4- Panjkovich, Alejandro, and Francisco Melo. \"Comparison of different melting temperature calculation methods for short DNA sequences.\" <i>Bioinformatics 21.6</i> (2005): 711-722.</blockquote>\n\n<blockquote>5- <a href=\"https://atdbio.com/tools/oligo-calculator\">ATDBio - Oligo Calculator</a></blockquote>\n\n\n## Show your support\n\n\n### Star this repo\n\nGive a \u2b50\ufe0f if this project helped you!\n\n### Donate to our project\nIf you do like our project and we hope that you do, can you please support us? Our project is not and is never going to be working for profit. We need the money just so we can continue doing what we do ;-) .\t\t\t\n\n<a href=\"https://openscilab.com/#donation\" target=\"_blank\"><img src=\"https://github.com/openscilab/opr/raw/main/otherfiles/donation.png\" width=\"270\" alt=\"OPR Donation\"></a>\n# Changelog\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)\nand this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).\n\n## [Unreleased]\n## [0.6] - 2025-11-02\n### Added\n- `molecular_formula` property\n### Changed\n- `README.md` updated\n- Test system modified\n- `Python 3.14` added to `test.yml`\n## [0.5] - 2025-06-27\n### Added\n- `delta_h` property \n- `delta_s` property\n- Thermodynamic constants (\u0394H, \u0394S) calculation\n- Nearest neighbor melting temperature calculation\n- `to_protein` method\n- `protein_seq_calc` function\n### Changed\n- Python typing features added to all modules\n- Test system modified\n- `Python 3.6` support dropped\n- `README.md` updated\n## [0.4] - 2025-03-18\n### Added\n- Salt-adjusted melting temperature calculation\n- `__contains__` overload\n- `_computed` internal cache flag attribute\n- `is_computed` method\n- `to_rna` method\n- `E260` property\n### Changed\n- Cache structure in `Primer` class updated\n- Error tests updated\n- Cache Test system modified\n- `Primer` class `__eq__` method bug fixed\n- `README.md` updated\n## [0.3] - 2025-02-06\n### Added\n- `__iter__` overload\n- `double_runs` property\n- `repeats` method\n- `name` property\n### Changed\n- `single_runs` property updated\n- Test system modified\n### Removed\n- `single_run_length` function\n## [0.2] - 2025-01-09\n### Added\n- `__eq__` overload\n- `__str__` overload\n- `gc_clamp` property\n- `single_runs` property\n### Changed\n- Test system modified\n- `SECURITY.md` updated\n- `CONTRIBUTING.md` updated\n- `README.md` updated\n### Removed\n- `property` deleter & setter\n## [0.1] - 2024-11-27\n### Added\n- `MeltingTemperature` enum\n- Basic melting temperature calculation\n- `addition` and `multipication` operators overload\n- `len` magic overload\n- `Primer` class\n- Molecular weight calculation\n- GC content calculation\n- Sequence validation\n- Unit tests\n- `complement` method\n- `reverse` method\n\n[Unreleased]: https://github.com/openscilab/opr/compare/v0.6...dev\n[0.6]: https://github.com/openscilab/opr/compare/v0.5...v0.6\n[0.5]: https://github.com/openscilab/opr/compare/v0.4...v0.5\n[0.4]: https://github.com/openscilab/opr/compare/v0.3...v0.4\n[0.3]: https://github.com/openscilab/opr/compare/v0.2...v0.3\n[0.2]: https://github.com/openscilab/opr/compare/v0.1...v0.2\n[0.1]: https://github.com/openscilab/opr/compare/0baa8dd...v0.1\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "OPR: Optimized Primer",
    "version": "0.6",
    "project_urls": {
        "Download": "https://github.com/openscilab/opr/tarball/v0.6",
        "Homepage": "https://github.com/openscilab/opr",
        "Source": "https://github.com/openscilab/opr"
    },
    "split_keywords": [
        "primer",
        "biology",
        "bioinformatics",
        "genome",
        "dna",
        "pcr"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c6e437daa7fad4348d93aaa81dcc80c8d70a5d173eeaa51791abf261d2ff97e",
                "md5": "9437887c938facc620db7f83f59d364f",
                "sha256": "d3983f2986a8a6e33abb4544ebce2ef312231c7aea9e9d6c4c4e779c9e3a624c"
            },
            "downloads": -1,
            "filename": "opr-0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9437887c938facc620db7f83f59d364f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 13976,
            "upload_time": "2025-11-02T13:44:53",
            "upload_time_iso_8601": "2025-11-02T13:44:53.666668Z",
            "url": "https://files.pythonhosted.org/packages/3c/6e/437daa7fad4348d93aaa81dcc80c8d70a5d173eeaa51791abf261d2ff97e/opr-0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61718c032fede88f623541f337b3e9389b38293f7962d077a6c852616f89bd5d",
                "md5": "43cd7a4a128dfb35904d6d2694438fa0",
                "sha256": "46159e6734e6e02be1b20281e01e37b1c42bf0ac99d228903a965e2f44c2693d"
            },
            "downloads": -1,
            "filename": "opr-0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "43cd7a4a128dfb35904d6d2694438fa0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 19604,
            "upload_time": "2025-11-02T13:44:52",
            "upload_time_iso_8601": "2025-11-02T13:44:52.525643Z",
            "url": "https://files.pythonhosted.org/packages/61/71/8c032fede88f623541f337b3e9389b38293f7962d077a6c852616f89bd5d/opr-0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-02 13:44:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "openscilab",
    "github_project": "opr",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "opr"
}
        
Elapsed time: 2.35236s