pydna 5.5.3__py3-none-any.whl → 5.5.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pydna/__init__.py +1 -1
- pydna/assembly2.py +415 -159
- pydna/dseqrecord.py +50 -2
- pydna/opencloning_models.py +553 -0
- pydna/types.py +5 -2
- {pydna-5.5.3.dist-info → pydna-5.5.4.dist-info}/METADATA +8 -40
- {pydna-5.5.3.dist-info → pydna-5.5.4.dist-info}/RECORD +9 -8
- {pydna-5.5.3.dist-info → pydna-5.5.4.dist-info}/WHEEL +1 -1
- {pydna-5.5.3.dist-info → pydna-5.5.4.dist-info/licenses}/LICENSE.txt +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pydna
|
|
3
|
-
Version: 5.5.
|
|
3
|
+
Version: 5.5.4
|
|
4
4
|
Summary: Representing double stranded DNA and functions for simulating cloning and homologous recombination between DNA molecules.
|
|
5
5
|
License: BSD
|
|
6
|
+
License-File: LICENSE.txt
|
|
6
7
|
Author: Björn F. Johansson
|
|
7
8
|
Author-email: bjornjobb@gmail.com
|
|
8
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.10,<4.0
|
|
9
10
|
Classifier: Development Status :: 4 - Beta
|
|
10
11
|
Classifier: Environment :: Console
|
|
11
12
|
Classifier: Intended Audience :: Education
|
|
@@ -13,7 +14,6 @@ Classifier: Intended Audience :: Developers
|
|
|
13
14
|
Classifier: Intended Audience :: Science/Research
|
|
14
15
|
Classifier: License :: OSI Approved :: BSD License
|
|
15
16
|
Classifier: Operating System :: OS Independent
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -24,12 +24,13 @@ Provides-Extra: download
|
|
|
24
24
|
Provides-Extra: express
|
|
25
25
|
Provides-Extra: gel
|
|
26
26
|
Requires-Dist: appdirs (>=1.4.4)
|
|
27
|
-
Requires-Dist: biopython (
|
|
27
|
+
Requires-Dist: biopython (==1.85)
|
|
28
28
|
Requires-Dist: cai2 (>=1.0.5) ; extra == "express"
|
|
29
29
|
Requires-Dist: matplotlib (>=3.4.3) ; extra == "gel"
|
|
30
30
|
Requires-Dist: networkx (>=2.8.8)
|
|
31
31
|
Requires-Dist: numpy (>1.26) ; python_version < "3.12"
|
|
32
32
|
Requires-Dist: numpy (>=2.3.0) ; python_version >= "3.12"
|
|
33
|
+
Requires-Dist: opencloning-linkml (==0.4.5)
|
|
33
34
|
Requires-Dist: pillow (>=8.4.0) ; extra == "gel"
|
|
34
35
|
Requires-Dist: prettytable (>=3.5.0)
|
|
35
36
|
Requires-Dist: pydivsufsort (>=0.0.14)
|
|
@@ -484,27 +485,6 @@ poetry shell
|
|
|
484
485
|
poetry run pre-commit install
|
|
485
486
|
```
|
|
486
487
|
|
|
487
|
-
#### Alternative method (using `pip`) 🐍
|
|
488
|
-
|
|
489
|
-
Use this for a small contribution or if you don't manage to set up the dev environment.
|
|
490
|
-
|
|
491
|
-
```bash
|
|
492
|
-
# Create a new virtual environment
|
|
493
|
-
python -m venv .venv
|
|
494
|
-
|
|
495
|
-
# Activate the virtual environment
|
|
496
|
-
source .venv/bin/activate
|
|
497
|
-
|
|
498
|
-
# Install all dependencies (library deps + dev and test requirements)
|
|
499
|
-
pip install -r requirements.txt
|
|
500
|
-
|
|
501
|
-
# Install the project as editable dependency
|
|
502
|
-
pip install -e .
|
|
503
|
-
|
|
504
|
-
# Install the pre-commit hooks
|
|
505
|
-
pre-commit install
|
|
506
|
-
```
|
|
507
|
-
|
|
508
488
|
#### Contributing code 💻
|
|
509
489
|
|
|
510
490
|
1. Make your changes.
|
|
@@ -541,22 +521,10 @@ supported python versions.
|
|
|
541
521
|
|
|
542
522
|
### Building the documentation locally 📚
|
|
543
523
|
|
|
544
|
-
Documentation is built using [Sphinx](http://www.sphinx-doc.org/) from [docstrings](https://www.python.org/dev/peps/pep-0257/)
|
|
545
|
-
using a GitHub [action](https://github.com/pydna-group/pydna/actions/workflows/publish-docs.yml).
|
|
524
|
+
Documentation is built using [Sphinx](http://www.sphinx-doc.org/) from [docstrings](https://www.python.org/dev/peps/pep-0257/) using a GitHub [action](https://github.com/pydna-group/pydna/actions/workflows/publish-docs.yml) and also built in readthedocs.
|
|
546
525
|
The [numpy](https://www.numpy.org) [docstring format](https://numpy.org/doc/stable/dev/howto-docs.html#docstring-intro) is used.
|
|
547
526
|
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
```bash
|
|
551
|
-
# Install docs dependency group
|
|
552
|
-
poetry install --with docs
|
|
553
|
-
|
|
554
|
-
# Start the sphinx server to see docs live by default at http://127.0.0.1:8000/
|
|
555
|
-
sphinx-autobuild --watch src/ docs docs/_build/html
|
|
556
|
-
|
|
557
|
-
```
|
|
558
|
-
|
|
559
|
-
More info about how to contribute to the documentation can be found [here](docs/README.md)
|
|
527
|
+
To work locally with the documentation, check the [documentation README](docs/README.md) for instructions.
|
|
560
528
|
|
|
561
529
|
## Release process 🚀
|
|
562
530
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
pydna/__init__.py,sha256=
|
|
1
|
+
pydna/__init__.py,sha256=Fb-8yiWHmQwChAGIXW38c0iWfPw4Cm3tQLHTiBOU9pc,12867
|
|
2
2
|
pydna/_pretty.py,sha256=foRAxdL3Jiupuz7l38THBQZ7tu-5vQvLm1cKdDa7n6A,923
|
|
3
3
|
pydna/_thermodynamic_data.py,sha256=9_w-97DpkbsWbJGHVijscMvUS_SFt7GxzrxspMRPZSg,10903
|
|
4
4
|
pydna/all.py,sha256=xwkbR5Hn52xVfgLAXaEfIgtNwaBiGDbJFTQfa3Zi6HQ,1781
|
|
5
5
|
pydna/amplicon.py,sha256=X4rCSanhlx1sPN0eAtcdAWg4Lw0WKrGQhv-cgZKtM3s,5343
|
|
6
6
|
pydna/amplify.py,sha256=XRwmSMQ2d8Y379zcl56yU6rt1xWbSulWWHLqp-HRDc0,19260
|
|
7
7
|
pydna/assembly.py,sha256=LM3-s3YysFvvkl1oooxoBjYLt0iMc3E1YLoqE05i8bs,19936
|
|
8
|
-
pydna/assembly2.py,sha256=
|
|
8
|
+
pydna/assembly2.py,sha256=A_agqF57amqquwaYuEJmzhU8qn6XjGiNh1vHeDNcpC4,106017
|
|
9
9
|
pydna/codon.py,sha256=Nxa_03n2wxXKACkzi55bUN1t5xUU_DBRRwh_ZLIb9_o,2568
|
|
10
10
|
pydna/common_sub_strings.py,sha256=A-gJeA2cEyxKKGQSFoC0BKvcXUGJZcnTUU7x2xlAovc,11574
|
|
11
11
|
pydna/conftest.py,sha256=T5-WmHWLZH3U3ifxnbxd_oOiIFibIrkYpwNacCHlvsY,999
|
|
@@ -15,7 +15,7 @@ pydna/crispr.py,sha256=iwu0Cjskzdb2r-In9633QIxQYKGmSNVOEM_dLK6lC54,3619
|
|
|
15
15
|
pydna/design.py,sha256=BAoPb4M47yMkF1p4gGmbomZPFyTl0WuXkv8sLSY_Tg0,29067
|
|
16
16
|
pydna/download.py,sha256=7tT8LAEy2Vg05spGfbCea_sol6pUOOBVbxOtyk2mnlQ,1085
|
|
17
17
|
pydna/dseq.py,sha256=2N_dXX36niJItQzN61PoVweee0xxP04_amJ3cSExAtU,54232
|
|
18
|
-
pydna/dseqrecord.py,sha256=
|
|
18
|
+
pydna/dseqrecord.py,sha256=MMc6nWUqFfc8KmnDWKDeb2bze8qv9X2rSbZXSS-AXrU,49885
|
|
19
19
|
pydna/fakeseq.py,sha256=uxyu1PXF-sVasEqhmyhMcsbpTy84uUtubDiZuxHNb9c,1174
|
|
20
20
|
pydna/fusionpcr.py,sha256=tfIfGGkNoZjg_dodcEx9wTc12aLRnC7J3g-Vg3Jg1uA,2821
|
|
21
21
|
pydna/gateway.py,sha256=iwNHrDIOqKl6_3Rdz7z7c8n_kcLQZuuu72oxNIjyyL8,8686
|
|
@@ -27,6 +27,7 @@ pydna/genbankrecord.py,sha256=u9RNBifT0j8rrA2bSdWajodtwm42P52_VlXsxKeOvq0,5566
|
|
|
27
27
|
pydna/goldengate.py,sha256=LvUWAzhG9OhN1wil7osJIkjfqwBLh355a18wCZO1TvI,1778
|
|
28
28
|
pydna/ladders.py,sha256=fKfWwezxQpX4qon9YCMIwchMBkGVOu8-C02xXk90J-E,3310
|
|
29
29
|
pydna/ligate.py,sha256=ap8xgS4aL9cH4w38e-kpw1Ixa7DtpYF_ipezrVXiHG0,1965
|
|
30
|
+
pydna/opencloning_models.py,sha256=DOvoaG4eQSslguZQDWBsfYhKX1xxy4fYHQUqrdfMhmA,19535
|
|
30
31
|
pydna/parsers.py,sha256=FW2RhZrxWX9wUYJcmt0qi1n7DZP0RfsNaXHhG0eVTWg,7319
|
|
31
32
|
pydna/primer.py,sha256=k9Z_fHfBcY_rGnOtfys806rQBDtvyKwKl2ceSx3_w9A,2272
|
|
32
33
|
pydna/readers.py,sha256=tKoonGlIB9ACeOMnzjhbCya1ooqhFMQIO_G36azN81E,1575
|
|
@@ -36,10 +37,10 @@ pydna/sequence_picker.py,sha256=Pco9IrUwNSiS0wQ5hp5FMfE9kIN9XOwXasKLF9OA6DM,1402
|
|
|
36
37
|
pydna/sequence_regex.py,sha256=DYuAJkWm_GqEGMpd0pE-Mad_B6POUP8gwjSCFR8RfXw,1259
|
|
37
38
|
pydna/threading_timer_decorator_exit.py,sha256=D91kqjKSavWDnXyc1Fo-CwPYtbmR2DjTXnBYSRXKmSA,2793
|
|
38
39
|
pydna/tm.py,sha256=0r4Aqjt_qanfqR8GNvqNh8us7AKM6JvaQKqHYsswAz4,11143
|
|
39
|
-
pydna/types.py,sha256=
|
|
40
|
+
pydna/types.py,sha256=Y9HxQ0wd-1AGuBzCSIU9JwZhGSrAIZBAFYjmEdOyL3M,1490
|
|
40
41
|
pydna/user_cloning.py,sha256=VSpYX1tdbcD_PzEt69Jz6Lud-yAkYMVXnzVd4v2usnE,692
|
|
41
42
|
pydna/utils.py,sha256=BwBOcr2HyLAPAVdpXEEDiwJ5MeWW096EOekvfyXxbDM,25227
|
|
42
|
-
pydna-5.5.
|
|
43
|
-
pydna-5.5.
|
|
44
|
-
pydna-5.5.
|
|
45
|
-
pydna-5.5.
|
|
43
|
+
pydna-5.5.4.dist-info/METADATA,sha256=01RQRwIOoehyk7LNVpLSmQGgFynAyTZ97Di4juPnm0w,24379
|
|
44
|
+
pydna-5.5.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
45
|
+
pydna-5.5.4.dist-info/licenses/LICENSE.txt,sha256=u8QfcsnNXZM0UCexerK_MvyA2lPWgeGyUtSYXvLG6Oc,6119
|
|
46
|
+
pydna-5.5.4.dist-info/RECORD,,
|
|
File without changes
|