You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provides codon usage tables as dictionaries, for Python 3+.
8
+
Provides codon usage tables as dictionaries, for Python.
9
9
10
-
Tables for the following organisms are provided with the library (any other
11
-
table can be downloaded using a TaxID):
10
+
Tables for the following organisms are provided with the package
11
+
(other tables can be downloaded using a TaxID):
12
12
13
13
- *B. subtilis*
14
14
- *C. elegans*
@@ -20,15 +20,16 @@ table can be downloaded using a TaxID):
20
20
- *M. musculus domesticus*
21
21
- *S. cerevisiae*
22
22
23
-
All the tables are from `kazusa.or.jp <http://www.kazusa.or.jp/codon/readme_codon.html>`_
24
-
and here is the original paper to cite:
23
+
All tables are from `kazusa.or.jp <http://www.kazusa.or.jp/codon/readme_codon.html>`_
24
+
(codon usages were computed using NCBI sequence data). The original publication:
25
25
26
26
.. code::
27
27
28
28
Codon usage tabulated from the international DNA sequence databases:
29
29
status for the year 2000.
30
30
Nakamura, Y., Gojobori, T. and Ikemura, T. (2000) Nucl. Acids Res. 28, 292.
31
31
32
+
32
33
Usage
33
34
-----
34
35
@@ -58,10 +59,30 @@ Usage
58
59
59
60
- In ``get_codons_table`` you can also provide a "shorthand" notation ``b_subtilis``, which will be automatically extended to ``b_subtilis_1423`` as it appears so in the built-in table (use this feature at your own risks!)
60
61
62
+
63
+
The package can also use codon usage data from a CSV file in the form:
64
+
65
+
```
66
+
amino_acid,codon,relative_frequency
67
+
*,UAA,0.64
68
+
*,UAG,0.07
69
+
*,UGA,0.29
70
+
A,GCA,0.21
71
+
A,GCC,0.27
72
+
K,AAA,0.76
73
+
K,AAG,0.24
74
+
etc.
75
+
```
76
+
77
+
61
78
Contribute
62
79
----------
63
80
64
-
This project was started at the Edinburgh Genome Foundry by Zulko and is released on `Github <https://github.com/Edinburgh-Genome-Foundry/codon-usage-tables>`_ under a Public Domain licence (and no warranty whatsoever, please cross-check the codon usage with other sources if you are not sure). Feel free to add other tables if you think of more commonly used species.
81
+
This project was started at the Edinburgh Genome Foundry by Zulko and is released on
Python Codon Tables is part of the `EGF Codons <https://edinburgh-genome-foundry.github.io/>`_ synthetic biology software suite for DNA design, manufacturing and validation.
0 commit comments