qDNA 0.1.1__tar.gz

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.
Files changed (79) hide show
  1. qDNA-0.1.1/CITATION.bib +8 -0
  2. qDNA-0.1.1/LICENSE.txt +27 -0
  3. qDNA-0.1.1/MANIFEST.in +7 -0
  4. qDNA-0.1.1/PKG-INFO +226 -0
  5. qDNA-0.1.1/README.md +208 -0
  6. qDNA-0.1.1/VERSION +1 -0
  7. qDNA-0.1.1/configs/__init__.py +0 -0
  8. qDNA-0.1.1/configs/config.yaml +45 -0
  9. qDNA-0.1.1/data/__init__.py +0 -0
  10. qDNA-0.1.1/data/raw/__init__.py +0 -0
  11. qDNA-0.1.1/data/raw/tb_params/Hawke2010_electron_ELM.json +1 -0
  12. qDNA-0.1.1/data/raw/tb_params/Hawke2010_electron_LM.json +1 -0
  13. qDNA-0.1.1/data/raw/tb_params/Hawke2010_electron_WM.json +1 -0
  14. qDNA-0.1.1/data/raw/tb_params/Hawke2010_hole_ELM.json +1 -0
  15. qDNA-0.1.1/data/raw/tb_params/Hawke2010_hole_FWM.json +1 -0
  16. qDNA-0.1.1/data/raw/tb_params/Hawke2010_hole_LM.json +1 -0
  17. qDNA-0.1.1/data/raw/tb_params/Hawke2010_hole_WM.json +1 -0
  18. qDNA-0.1.1/data/raw/tb_params/Mantela2021_electron_WM.json +1 -0
  19. qDNA-0.1.1/data/raw/tb_params/Mantela2021_hole_WM.json +1 -0
  20. qDNA-0.1.1/data/raw/tb_params/Simserides2014_electron_WM.json +1 -0
  21. qDNA-0.1.1/data/raw/tb_params/Simserides2014_hole_WM.json +1 -0
  22. qDNA-0.1.1/data/raw/tb_params/Simserides2024_electron_ELM.json +1 -0
  23. qDNA-0.1.1/data/raw/tb_params/Simserides2024_electron_FELM.json +1 -0
  24. qDNA-0.1.1/data/raw/tb_params/Simserides2024_hole_ELM.json +1 -0
  25. qDNA-0.1.1/data/raw/tb_params/Simserides2024_hole_FELM.json +1 -0
  26. qDNA-0.1.1/data/raw/tb_params/__init__.py +0 -0
  27. qDNA-0.1.1/environment.yml +20 -0
  28. qDNA-0.1.1/gui/__init__.py +16 -0
  29. qDNA-0.1.1/gui/config_frame.py +29 -0
  30. qDNA-0.1.1/gui/custom_window.py +102 -0
  31. qDNA-0.1.1/gui/diss_frame.py +134 -0
  32. qDNA-0.1.1/gui/dynamics_frame.py +66 -0
  33. qDNA-0.1.1/gui/ham_frame.py +79 -0
  34. qDNA-0.1.1/gui/initial_frame.py +44 -0
  35. qDNA-0.1.1/gui/options_frame.py +61 -0
  36. qDNA-0.1.1/gui/plot_options_frame.py +202 -0
  37. qDNA-0.1.1/gui/plotting_window.py +111 -0
  38. qDNA-0.1.1/gui/qdna_app.py +160 -0
  39. qDNA-0.1.1/gui/scrollable_console_frame.py +32 -0
  40. qDNA-0.1.1/gui/user_interface_utils.py +8 -0
  41. qDNA-0.1.1/qDNA/__init__.py +8 -0
  42. qDNA-0.1.1/qDNA/dna_seq.py +208 -0
  43. qDNA-0.1.1/qDNA/dynamics/__init__.py +2 -0
  44. qDNA-0.1.1/qDNA/dynamics/reduced_dm.py +76 -0
  45. qDNA-0.1.1/qDNA/dynamics/solver.py +387 -0
  46. qDNA-0.1.1/qDNA/environment/__init__.py +3 -0
  47. qDNA-0.1.1/qDNA/environment/lindblad.py +627 -0
  48. qDNA-0.1.1/qDNA/environment/lindblad_rates.py +159 -0
  49. qDNA-0.1.1/qDNA/environment/observables.py +189 -0
  50. qDNA-0.1.1/qDNA/evaluation/__init__.py +3 -0
  51. qDNA-0.1.1/qDNA/evaluation/dipole.py +121 -0
  52. qDNA-0.1.1/qDNA/evaluation/eq_states.py +75 -0
  53. qDNA-0.1.1/qDNA/evaluation/lifetime.py +92 -0
  54. qDNA-0.1.1/qDNA/model/__init__.py +8 -0
  55. qDNA-0.1.1/qDNA/model/tb_basis.py +339 -0
  56. qDNA-0.1.1/qDNA/model/tb_config.py +269 -0
  57. qDNA-0.1.1/qDNA/model/tb_ham.py +638 -0
  58. qDNA-0.1.1/qDNA/model/tb_model.py +190 -0
  59. qDNA-0.1.1/qDNA/model/tb_params.py +159 -0
  60. qDNA-0.1.1/qDNA/plotting/__init__.py +24 -0
  61. qDNA-0.1.1/qDNA/plotting/plot_dna_base_frequency.py +66 -0
  62. qDNA-0.1.1/qDNA/plotting/plot_eigenspectrum.py +80 -0
  63. qDNA-0.1.1/qDNA/plotting/plot_fourier.py +200 -0
  64. qDNA-0.1.1/qDNA/plotting/plot_pop.py +171 -0
  65. qDNA-0.1.1/qDNA/utils/__init__.py +3 -0
  66. qDNA-0.1.1/qDNA/utils/dm_analysis.py +92 -0
  67. qDNA-0.1.1/qDNA/utils/ham_analysis.py +149 -0
  68. qDNA-0.1.1/qDNA/utils/unit_converter.py +94 -0
  69. qDNA-0.1.1/qDNA.egg-info/PKG-INFO +226 -0
  70. qDNA-0.1.1/qDNA.egg-info/SOURCES.txt +77 -0
  71. qDNA-0.1.1/qDNA.egg-info/dependency_links.txt +1 -0
  72. qDNA-0.1.1/qDNA.egg-info/requires.txt +1 -0
  73. qDNA-0.1.1/qDNA.egg-info/top_level.txt +5 -0
  74. qDNA-0.1.1/setup.cfg +4 -0
  75. qDNA-0.1.1/setup.py +23 -0
  76. qDNA-0.1.1/tools/__init__.py +3 -0
  77. qDNA-0.1.1/tools/check_input.py +71 -0
  78. qDNA-0.1.1/tools/helpers.py +55 -0
  79. qDNA-0.1.1/tools/save_load.py +126 -0
@@ -0,0 +1,8 @@
1
+ @misc{QuantumDNA,
2
+ author = {Dennis Herb},
3
+ title = {QuantumDNA},
4
+ year = {2024},
5
+ url = {https://github.com/dehe1011/QuantumDNA},
6
+ doi = {10.5281/zenodo.12734027},
7
+ note = {\texttt{github.com/dehe1011/QuantumDNA}}
8
+ }
qDNA-0.1.1/LICENSE.txt ADDED
@@ -0,0 +1,27 @@
1
+ Copyright (c) 2024 Dennis Herb
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification,
5
+ are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ 3. Neither the name of the copyright holder nor the names of its contributors
15
+ may be used to endorse or promote products derived from this software without
16
+ specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
qDNA-0.1.1/MANIFEST.in ADDED
@@ -0,0 +1,7 @@
1
+ include README.md
2
+ include LICENSE.txt
3
+ include VERSION
4
+ include environment.yml
5
+ include CITATION.bib
6
+ include configs/*.yaml
7
+ include data/raw/tb_params/*.json
qDNA-0.1.1/PKG-INFO ADDED
@@ -0,0 +1,226 @@
1
+ Metadata-Version: 2.1
2
+ Name: qDNA
3
+ Version: 0.1.1
4
+ Summary: A package to calculate lifetimes, average charge separation and dipole moments of excited states along DNA within the formalism of open quantum systems.
5
+ Home-page: https://github.com/dehe1011/QuantumDNA
6
+ Author: Dennis Herb
7
+ Author-email: dennis.herb@uni-ulm.de
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: BSD License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.6
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE.txt
16
+
17
+ <p align="center">
18
+ <img src="docs/figures/qDNA_logo.png"
19
+ height="130">
20
+ </p>
21
+ <p align="center">
22
+ <a href="https://opensource.org/licenses/BSD-3-Clause">
23
+ <img src="https://img.shields.io/badge/license-New%20BSD-blue.svg"
24
+ alt="License"></a>
25
+ <a href="https://doi.org/10.5281/zenodo.12734026">
26
+ <img src="https://zenodo.org/badge/DOI/10.5281/zenodo.12734026.svg"
27
+ alt="DOI"></a>
28
+ <a href="https://quantumdna.readthedocs.io/en/latest/?badge=latest">
29
+ <img src="https://readthedocs.org/projects/quantumdna/badge/?version=latest"
30
+ alt="Documentation Status"></a>
31
+ <a href="https://github.com/dehe1011/QuantumDNA/releases">
32
+ <img src="https://img.shields.io/badge/version-0.1.1-blue"
33
+ alt="Release"></a>
34
+ <a href='https://coveralls.io/github/dehe1011/QuantumDNA?branch=main'>
35
+ <img src='https://coveralls.io/repos/github/dehe1011/QuantumDNA/badge.svg?branch=main'
36
+ alt='Coverage Status' /></a>
37
+ </p>
38
+
39
+ ---
40
+
41
+ # QuantumDNA
42
+
43
+ **Author: [Dennis Herb](https://github.com/dehe1011)**
44
+
45
+ This Python package can be cited as:
46
+
47
+ > *QuantumDNA (github.com/dehe1011/QuantumDNA)*, D. Herb, 2024, DOI: [10.5281/zenodo.12734027](https://doi.org/10.5281/zenodo.12734027)
48
+
49
+ ## What's new
50
+
51
+ **July 2024**
52
+
53
+ * Added a graphical user interface (GUI) to the package such that it is easier accessible for users that are less familiar with computer science. The user interface is based on the [customtkinter](https://customtkinter.tomschimansky.com/) package by Tom Schimansky.
54
+ * Added a Jupyter Notebook ```QuantumDNA/docs/tutorials/3_Paper.ipynb``` that reproduces all figures contained in our paper (and the supplementary) [D. Herb, M. Rossini and J. Ankerhold, *Physical Review E 109*, 064413 (2024).](https://doi.org/10.1103/PhysRevE.109.064413)
55
+ * Added a [documentation](https://quantumdna.readthedocs.io/en/latest/) available on Read the Docs
56
+
57
+
58
+ ## Introduction
59
+
60
+ Welcome to QuantumDNA, a powerful and flexible tool designed to calculate lifetimes, average charge separation, and dipole moments of excited states along DNA. Leveraging the formalism of open quantum systems and based on tight-binding Hamiltonians, QuantumDNA is equipped to handle various tight-binding models. Users can incorporate custom tight-binding parameters from ab-initio calculations or experimental data, as well as define their own models, making the tool highly adaptable. QuantumDNA is regularly updated to ensure it remains at the cutting edge and includes a user-friendly interface to be accessible even to researchers less familiar with computer science. Results from several research papers can be reproduced with QuantumDNA.
61
+
62
+ ### Key Features
63
+
64
+ * Versatile Calculations: Calculate lifetimes, charge separation, and dipole moments.
65
+ * Customizable Models: Add and use custom tight-binding parameters and models.
66
+ * User-Friendly Interface: Designed for ease of use by all researchers.
67
+ * Regular Updates: Stay current with the latest advancements and improvements.
68
+ * Parallelization: Supports parallel computing for the calculation of excited state properties for large ensembles of DNA sequences, optimizing performance within the computationally intensive context of open quantum systems.
69
+
70
+ ### Example Program
71
+
72
+ To test QuantumDNA, you can run the following simple example where the exciton lifetime and the average charge separation of a double-stranded GCG DNA sequence are calculated. You can try different sequences, tight-binding models, and keyword arguments to investigate how these factors affect the exciton lifetime and average charge separation. For example you might find that in general more uniform sequences show higher values. Do you know the reason for this observation?
73
+
74
+ ```python
75
+
76
+ from qDNA import calc_lifetime, calc_dipole
77
+
78
+ # input
79
+ upper_strand = 'GCG'
80
+ tb_model_name = 'ELM'
81
+ kwargs = dict(unit='rad/ps', relax_rate=3, source='Hawke2010')
82
+
83
+ # calculation
84
+ lifetime = calc_lifetime(upper_strand, tb_model_name, **kwargs)
85
+ dipole = calc_dipole(upper_strand, tb_model_name, **kwargs)
86
+
87
+ # output
88
+ print(f"Exciton lifetime {lifetime} fs")
89
+ print(f"Average charge separation {dipole} A")
90
+
91
+ ```
92
+
93
+
94
+ ## Getting started
95
+
96
+ **NOTE**: These set-up instructions have only been tested on Windows and may not work on macOS.
97
+
98
+ **Pre-requisites**
99
+
100
+ * Conda ([Download Anaconda](https://www.anaconda.com/download) or [Download Miniconda](https://docs.anaconda.com/miniconda/))
101
+ * Git ([Download](https://gitforwindows.org/))
102
+ * Python ([Download](https://www.python.org/downloads/))
103
+
104
+ ### Installation
105
+
106
+ Open the Anconda Powershell Prompt. Copy and execute the following ```commands```.
107
+
108
+ 1. Clone the Github repository:\
109
+ ```git clone https://github.com/dehe1011/QuantumDNA.git```\
110
+ ```cd QuantumDNA ```
111
+
112
+ 2. Create and active a virtual environment:\
113
+ ``` powershell -ExecutionPolicy Bypass -File tools/scripts/activate.ps1 ```
114
+
115
+ If all tests worked you have successfully installed the package and the user interface opens automatically. You can access all the implemented functionalities. Enjoy :)
116
+
117
+ ### Usage
118
+
119
+ After you have already installed the package, you can either access the code via the user interface or in a Jupyter Notebook. Open the Anconda Powershell Prompt again and use the following ``` commands ```:
120
+
121
+ 1. Open the user interface:
122
+
123
+ (i) Navigate to the package directory:
124
+ ``` Set-Location -Path "C:\Users\<YourUsername>\QuantumDNA ``` \
125
+ (ii) Run the activation script:
126
+ ``` powershell -ExecutionPolicy Bypass -File tools/scripts/activate.ps1 ```
127
+
128
+ 2. Open a new Jupyter notebook:
129
+
130
+ (i) ``` jupyter notebook ``` \
131
+ (ii) Select the kernel to "Python (qDNA)"
132
+
133
+ To remove the virtual environment use ``` conda remove --name qDNA --all ```. Don't forget to delete the folder "QuantumDNA" that contains the cloned GitHub repository.
134
+
135
+
136
+ ## Documentation
137
+
138
+ The documentation for the [latest release](https://quantumdna.readthedocs.io/en/latest/) is available for reading on Read The Docs. The [package website](https://dehe1011.github.io/QuantumDNA/) contains general information about the project and planned future developments.
139
+
140
+ ### Tutorials
141
+
142
+ The code contains some tutorials and demostrations to better understand and explore the functionalities.
143
+
144
+ In the ```QuantumDNA/docs/tutorials``` folder you can find the notebook **3_Paper.ipynb** that contains and reproduces all the figures contained in [D. Herb, M. Rossini and J. Ankerhold, Ultrafast excitonic dynamics in DNA: Bridging correlated quantum dynamics and sequence dependence.](https://arxiv.org/abs/2402.16892)
145
+
146
+ In the ```QuantumDNA/docs/tutorials``` folder, there exist the following tutorials:
147
+
148
+ * **0_TB_Model.ipynb**: tutorials on predefined and custom tight-binding models.
149
+ * **1_Plotting_Routines.ipynb**: tutorial on the predefined plotting routines.
150
+ * **2_Open_System.ipynb**: tutorial on different ways to treat DNA relaxation the DNA environment.
151
+ * **Exploration_Notebook.ipynb**: if you are interested how single functions behave, this is the place where you can test the functionality isolated from the rest of the code.
152
+
153
+
154
+ ### Graphical user interface
155
+
156
+ The usage of the graphical user interface is demonstrated in the following images. Many functionalities of the code can be accessed in a very user friendly manner from the menu window:
157
+
158
+ ![](docs/figures/user_interface_figures/menu_1.png)
159
+ > _Screenshot of the menu of the user interface._
160
+
161
+ ![](docs/figures/user_interface_figures/plot_1.png)
162
+ > _Plot obtained after pressing the submit button on the menu (see image above)._
163
+
164
+ ![](docs/figures/user_interface_figures/menu3.png)
165
+ > _Screenshot of the menu of the user interface with calculations of the exciton lifetime and average charge separation displayed in the frame on the bottom right._
166
+
167
+ ### Shortcuts
168
+
169
+ To increase the readability of the code I collected some of the shortcuts that are used requently:
170
+
171
+ * ham: hamiltonian
172
+ * dm: density matrix
173
+ * tb: tight-binding
174
+ * eigv: eigenvalue/ eigenenergy
175
+ * eigs: eigenstates/ eigenvectors
176
+ * dim: dimension
177
+ * fig: figure
178
+ * op: operator
179
+ * loc: local
180
+ * glob: global
181
+ * deph: dephasing
182
+ * therm: thermalizing
183
+ * seq: sequence
184
+ * calc: calculate
185
+
186
+
187
+ ## References
188
+
189
+ Papers from our group:
190
+
191
+ * [R. Siebert, O. Ammerpohl, M. Rossini et al. A quantum physics layer of epigenetics: a hypothesis deduced from charge transfer and chirality-induced spin selectivity of DNA. *Clin Epigenet 15*, 145 (2023).](https://doi.org/10.1186/s13148-023-01560-3)
192
+ * [D. Herb, M. Rossini and J. Ankerhold, Ultrafast excitonic dynamics in DNA: Bridging correlated quantum dynamics and sequence dependence. *Physical Review E 109*, 064413 (2024).](https://doi.org/10.1103/PhysRevE.109.064413)
193
+
194
+ Tight-binding parameters:
195
+
196
+ * [L.G.D. Hawke, G. Kalosakas and C. Simserides, Electronic parameters for charge transfer along DNA. *The European Physical Journal E 32*, 291 (2010)](https://doi.org/10.1140/EPJE/I2010-10650-Y)
197
+ * [C. Simserides, A systematic study of electron or hole transfer along DNA dimers, trimers and polymers. *Chemical Physics 440*, 31 (2014)](https://doi.org/10.1016/j.chemphys.2014.05.024)
198
+ * [M. Mantela, C. Simserides and R. Di Felice, LCAO electronic structure of nucleic acid bases and other heterocycles and transfer integrals in B-DNA, including structural variability. *Materials 14*, 4930 (2021)](https://doi.org/10.3390/ma14174930)
199
+
200
+ Tight-binding models:
201
+
202
+ * [K. Lambropoulos and C. Simserides, Tight-binding modeling of nucleic acid sequences: Interplay between various types of order or disorder and charge transport. *Symmetry 11*, 968 (2019)](https://doi.org/10.3390/sym11080968)
203
+
204
+ Excitons and electron-hole Coulomb interaction:
205
+
206
+ * [C. Crespo-Hernandez, B. Cohen and B. Kohler, Base stacking controls excited-state dynamics in A·T DNA. *Nature 436*, 1141 (2005)](https://doi.org/10.1038/nature03933)
207
+ * [E.R. Bittner, Lattice theory of ultrafast excitonic and charge-transfer dynamics in DNA. *Journal of Chemical Physics 125*, 094909 (2006)](https://doi.org/10.1063/1.2335452)
208
+ * [E.M. Conwell, P.M. McLaughlin and S.M. Bloch, Charge-Transfer Excitons in DNA. *The Journal of Physical Chemistry B 112*, 2268 (2008)](https://doi.org/10.1021/jp077344x)
209
+ * [S. Tornow, R. Bulla, F.B. Anders and G. Zwicknagl, Multiple-charge transfer and trapping in DNA dimers. *Physical Review B 82*, 195106 (2010)](https://doi.org/10.1103/PhysRevB.82.195106)
210
+
211
+ Biological relevance of DNA charge transfer:
212
+
213
+ * [J.C. Genereux and J.K. Barton, Mechanisms for DNA charge transport. *Chemical Reviews 110*, 1642 (2010)](https://doi.org/10.1021/cr900228f)
214
+ * [A.R. Arnold, M.A. Grodick and J.K. Barton, DNA Charge Transport: from Chemical Principles to the Cell. *Cell Chemical Biology 23*, 183 (2016)](https://doi.org/10.1016/j.chembiol.2015.11.010)
215
+
216
+ Simulation of open quantum systems:
217
+
218
+ * [J.R. Johansson, P.D. Nation and Franco Nori, QuTiP: An open-source Python framework for the dynamics of open quantum systems. *Computer Physics Communications 183*, 1760 (2012)](https://doi.org/10.1016/j.cpc.2012.02.021)
219
+ * [quantum_HEOM (github.com/jwa7/quantum_HEOM), J.W. Abbott, 2022](https://doi.org/10.5281/zenodo.7230160)
220
+
221
+
222
+ ## Support
223
+
224
+ For support, please contact the author at dennis.herb@uni-ulm.de or visit our community forum.
225
+
226
+
qDNA-0.1.1/README.md ADDED
@@ -0,0 +1,208 @@
1
+ <p align="center">
2
+ <img src="docs/figures/qDNA_logo.png"
3
+ height="130">
4
+ </p>
5
+ <p align="center">
6
+ <a href="https://opensource.org/licenses/BSD-3-Clause">
7
+ <img src="https://img.shields.io/badge/license-New%20BSD-blue.svg"
8
+ alt="License"></a>
9
+ <a href="https://doi.org/10.5281/zenodo.12734026">
10
+ <img src="https://zenodo.org/badge/DOI/10.5281/zenodo.12734026.svg"
11
+ alt="DOI"></a>
12
+ <a href="https://quantumdna.readthedocs.io/en/latest/?badge=latest">
13
+ <img src="https://readthedocs.org/projects/quantumdna/badge/?version=latest"
14
+ alt="Documentation Status"></a>
15
+ <a href="https://github.com/dehe1011/QuantumDNA/releases">
16
+ <img src="https://img.shields.io/badge/version-0.1.1-blue"
17
+ alt="Release"></a>
18
+ <a href='https://coveralls.io/github/dehe1011/QuantumDNA?branch=main'>
19
+ <img src='https://coveralls.io/repos/github/dehe1011/QuantumDNA/badge.svg?branch=main'
20
+ alt='Coverage Status' /></a>
21
+ </p>
22
+
23
+ ---
24
+
25
+ # QuantumDNA
26
+
27
+ **Author: [Dennis Herb](https://github.com/dehe1011)**
28
+
29
+ This Python package can be cited as:
30
+
31
+ > *QuantumDNA (github.com/dehe1011/QuantumDNA)*, D. Herb, 2024, DOI: [10.5281/zenodo.12734027](https://doi.org/10.5281/zenodo.12734027)
32
+
33
+ ## What's new
34
+
35
+ **July 2024**
36
+
37
+ * Added a graphical user interface (GUI) to the package such that it is easier accessible for users that are less familiar with computer science. The user interface is based on the [customtkinter](https://customtkinter.tomschimansky.com/) package by Tom Schimansky.
38
+ * Added a Jupyter Notebook ```QuantumDNA/docs/tutorials/3_Paper.ipynb``` that reproduces all figures contained in our paper (and the supplementary) [D. Herb, M. Rossini and J. Ankerhold, *Physical Review E 109*, 064413 (2024).](https://doi.org/10.1103/PhysRevE.109.064413)
39
+ * Added a [documentation](https://quantumdna.readthedocs.io/en/latest/) available on Read the Docs
40
+
41
+
42
+ ## Introduction
43
+
44
+ Welcome to QuantumDNA, a powerful and flexible tool designed to calculate lifetimes, average charge separation, and dipole moments of excited states along DNA. Leveraging the formalism of open quantum systems and based on tight-binding Hamiltonians, QuantumDNA is equipped to handle various tight-binding models. Users can incorporate custom tight-binding parameters from ab-initio calculations or experimental data, as well as define their own models, making the tool highly adaptable. QuantumDNA is regularly updated to ensure it remains at the cutting edge and includes a user-friendly interface to be accessible even to researchers less familiar with computer science. Results from several research papers can be reproduced with QuantumDNA.
45
+
46
+ ### Key Features
47
+
48
+ * Versatile Calculations: Calculate lifetimes, charge separation, and dipole moments.
49
+ * Customizable Models: Add and use custom tight-binding parameters and models.
50
+ * User-Friendly Interface: Designed for ease of use by all researchers.
51
+ * Regular Updates: Stay current with the latest advancements and improvements.
52
+ * Parallelization: Supports parallel computing for the calculation of excited state properties for large ensembles of DNA sequences, optimizing performance within the computationally intensive context of open quantum systems.
53
+
54
+ ### Example Program
55
+
56
+ To test QuantumDNA, you can run the following simple example where the exciton lifetime and the average charge separation of a double-stranded GCG DNA sequence are calculated. You can try different sequences, tight-binding models, and keyword arguments to investigate how these factors affect the exciton lifetime and average charge separation. For example you might find that in general more uniform sequences show higher values. Do you know the reason for this observation?
57
+
58
+ ```python
59
+
60
+ from qDNA import calc_lifetime, calc_dipole
61
+
62
+ # input
63
+ upper_strand = 'GCG'
64
+ tb_model_name = 'ELM'
65
+ kwargs = dict(unit='rad/ps', relax_rate=3, source='Hawke2010')
66
+
67
+ # calculation
68
+ lifetime = calc_lifetime(upper_strand, tb_model_name, **kwargs)
69
+ dipole = calc_dipole(upper_strand, tb_model_name, **kwargs)
70
+
71
+ # output
72
+ print(f"Exciton lifetime {lifetime} fs")
73
+ print(f"Average charge separation {dipole} A")
74
+
75
+ ```
76
+
77
+
78
+ ## Getting started
79
+
80
+ **NOTE**: These set-up instructions have only been tested on Windows and may not work on macOS.
81
+
82
+ **Pre-requisites**
83
+
84
+ * Conda ([Download Anaconda](https://www.anaconda.com/download) or [Download Miniconda](https://docs.anaconda.com/miniconda/))
85
+ * Git ([Download](https://gitforwindows.org/))
86
+ * Python ([Download](https://www.python.org/downloads/))
87
+
88
+ ### Installation
89
+
90
+ Open the Anconda Powershell Prompt. Copy and execute the following ```commands```.
91
+
92
+ 1. Clone the Github repository:\
93
+ ```git clone https://github.com/dehe1011/QuantumDNA.git```\
94
+ ```cd QuantumDNA ```
95
+
96
+ 2. Create and active a virtual environment:\
97
+ ``` powershell -ExecutionPolicy Bypass -File tools/scripts/activate.ps1 ```
98
+
99
+ If all tests worked you have successfully installed the package and the user interface opens automatically. You can access all the implemented functionalities. Enjoy :)
100
+
101
+ ### Usage
102
+
103
+ After you have already installed the package, you can either access the code via the user interface or in a Jupyter Notebook. Open the Anconda Powershell Prompt again and use the following ``` commands ```:
104
+
105
+ 1. Open the user interface:
106
+
107
+ (i) Navigate to the package directory:
108
+ ``` Set-Location -Path "C:\Users\<YourUsername>\QuantumDNA ``` \
109
+ (ii) Run the activation script:
110
+ ``` powershell -ExecutionPolicy Bypass -File tools/scripts/activate.ps1 ```
111
+
112
+ 2. Open a new Jupyter notebook:
113
+
114
+ (i) ``` jupyter notebook ``` \
115
+ (ii) Select the kernel to "Python (qDNA)"
116
+
117
+ To remove the virtual environment use ``` conda remove --name qDNA --all ```. Don't forget to delete the folder "QuantumDNA" that contains the cloned GitHub repository.
118
+
119
+
120
+ ## Documentation
121
+
122
+ The documentation for the [latest release](https://quantumdna.readthedocs.io/en/latest/) is available for reading on Read The Docs. The [package website](https://dehe1011.github.io/QuantumDNA/) contains general information about the project and planned future developments.
123
+
124
+ ### Tutorials
125
+
126
+ The code contains some tutorials and demostrations to better understand and explore the functionalities.
127
+
128
+ In the ```QuantumDNA/docs/tutorials``` folder you can find the notebook **3_Paper.ipynb** that contains and reproduces all the figures contained in [D. Herb, M. Rossini and J. Ankerhold, Ultrafast excitonic dynamics in DNA: Bridging correlated quantum dynamics and sequence dependence.](https://arxiv.org/abs/2402.16892)
129
+
130
+ In the ```QuantumDNA/docs/tutorials``` folder, there exist the following tutorials:
131
+
132
+ * **0_TB_Model.ipynb**: tutorials on predefined and custom tight-binding models.
133
+ * **1_Plotting_Routines.ipynb**: tutorial on the predefined plotting routines.
134
+ * **2_Open_System.ipynb**: tutorial on different ways to treat DNA relaxation the DNA environment.
135
+ * **Exploration_Notebook.ipynb**: if you are interested how single functions behave, this is the place where you can test the functionality isolated from the rest of the code.
136
+
137
+
138
+ ### Graphical user interface
139
+
140
+ The usage of the graphical user interface is demonstrated in the following images. Many functionalities of the code can be accessed in a very user friendly manner from the menu window:
141
+
142
+ ![](docs/figures/user_interface_figures/menu_1.png)
143
+ > _Screenshot of the menu of the user interface._
144
+
145
+ ![](docs/figures/user_interface_figures/plot_1.png)
146
+ > _Plot obtained after pressing the submit button on the menu (see image above)._
147
+
148
+ ![](docs/figures/user_interface_figures/menu3.png)
149
+ > _Screenshot of the menu of the user interface with calculations of the exciton lifetime and average charge separation displayed in the frame on the bottom right._
150
+
151
+ ### Shortcuts
152
+
153
+ To increase the readability of the code I collected some of the shortcuts that are used requently:
154
+
155
+ * ham: hamiltonian
156
+ * dm: density matrix
157
+ * tb: tight-binding
158
+ * eigv: eigenvalue/ eigenenergy
159
+ * eigs: eigenstates/ eigenvectors
160
+ * dim: dimension
161
+ * fig: figure
162
+ * op: operator
163
+ * loc: local
164
+ * glob: global
165
+ * deph: dephasing
166
+ * therm: thermalizing
167
+ * seq: sequence
168
+ * calc: calculate
169
+
170
+
171
+ ## References
172
+
173
+ Papers from our group:
174
+
175
+ * [R. Siebert, O. Ammerpohl, M. Rossini et al. A quantum physics layer of epigenetics: a hypothesis deduced from charge transfer and chirality-induced spin selectivity of DNA. *Clin Epigenet 15*, 145 (2023).](https://doi.org/10.1186/s13148-023-01560-3)
176
+ * [D. Herb, M. Rossini and J. Ankerhold, Ultrafast excitonic dynamics in DNA: Bridging correlated quantum dynamics and sequence dependence. *Physical Review E 109*, 064413 (2024).](https://doi.org/10.1103/PhysRevE.109.064413)
177
+
178
+ Tight-binding parameters:
179
+
180
+ * [L.G.D. Hawke, G. Kalosakas and C. Simserides, Electronic parameters for charge transfer along DNA. *The European Physical Journal E 32*, 291 (2010)](https://doi.org/10.1140/EPJE/I2010-10650-Y)
181
+ * [C. Simserides, A systematic study of electron or hole transfer along DNA dimers, trimers and polymers. *Chemical Physics 440*, 31 (2014)](https://doi.org/10.1016/j.chemphys.2014.05.024)
182
+ * [M. Mantela, C. Simserides and R. Di Felice, LCAO electronic structure of nucleic acid bases and other heterocycles and transfer integrals in B-DNA, including structural variability. *Materials 14*, 4930 (2021)](https://doi.org/10.3390/ma14174930)
183
+
184
+ Tight-binding models:
185
+
186
+ * [K. Lambropoulos and C. Simserides, Tight-binding modeling of nucleic acid sequences: Interplay between various types of order or disorder and charge transport. *Symmetry 11*, 968 (2019)](https://doi.org/10.3390/sym11080968)
187
+
188
+ Excitons and electron-hole Coulomb interaction:
189
+
190
+ * [C. Crespo-Hernandez, B. Cohen and B. Kohler, Base stacking controls excited-state dynamics in A·T DNA. *Nature 436*, 1141 (2005)](https://doi.org/10.1038/nature03933)
191
+ * [E.R. Bittner, Lattice theory of ultrafast excitonic and charge-transfer dynamics in DNA. *Journal of Chemical Physics 125*, 094909 (2006)](https://doi.org/10.1063/1.2335452)
192
+ * [E.M. Conwell, P.M. McLaughlin and S.M. Bloch, Charge-Transfer Excitons in DNA. *The Journal of Physical Chemistry B 112*, 2268 (2008)](https://doi.org/10.1021/jp077344x)
193
+ * [S. Tornow, R. Bulla, F.B. Anders and G. Zwicknagl, Multiple-charge transfer and trapping in DNA dimers. *Physical Review B 82*, 195106 (2010)](https://doi.org/10.1103/PhysRevB.82.195106)
194
+
195
+ Biological relevance of DNA charge transfer:
196
+
197
+ * [J.C. Genereux and J.K. Barton, Mechanisms for DNA charge transport. *Chemical Reviews 110*, 1642 (2010)](https://doi.org/10.1021/cr900228f)
198
+ * [A.R. Arnold, M.A. Grodick and J.K. Barton, DNA Charge Transport: from Chemical Principles to the Cell. *Cell Chemical Biology 23*, 183 (2016)](https://doi.org/10.1016/j.chembiol.2015.11.010)
199
+
200
+ Simulation of open quantum systems:
201
+
202
+ * [J.R. Johansson, P.D. Nation and Franco Nori, QuTiP: An open-source Python framework for the dynamics of open quantum systems. *Computer Physics Communications 183*, 1760 (2012)](https://doi.org/10.1016/j.cpc.2012.02.021)
203
+ * [quantum_HEOM (github.com/jwa7/quantum_HEOM), J.W. Abbott, 2022](https://doi.org/10.5281/zenodo.7230160)
204
+
205
+
206
+ ## Support
207
+
208
+ For support, please contact the author at dennis.herb@uni-ulm.de or visit our community forum.
qDNA-0.1.1/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
File without changes
@@ -0,0 +1,45 @@
1
+ # This file contains all the default values used for the simulations
2
+ project_name: "QuantumDNA"
3
+
4
+ verbose: False
5
+ DNA_BASES: ["A", "T", "G", "C", "c"]
6
+
7
+ SOURCES: ['Hawke2010', 'Simserides2014', 'Mantela2021', 'Simserides2024']
8
+ DESCRIPTIONS: ["1P", "2P"]
9
+ PARTICLES: ["electron", "hole", "exciton"]
10
+ UNITS: ['meV', 'eV', '100meV', 'rad/ps', 'rad/fs', '1/cm', 'K', 'J', '1/fs', '1/ps']
11
+ T_UNITS: ['fs', 'ps']
12
+ SPECTRAL_DENSITIES: ['debye', 'ohmic']
13
+ TB_MODELS: ['WM', 'LM', 'ELM', 'FWM', 'FLM', 'FELM', 'FC']
14
+
15
+ ham_kwargs_default:
16
+ source: 'Hawke2010'
17
+ description: '2P'
18
+ particles: ['electron','hole','exciton']
19
+ unit: 'rad/ps'
20
+ interaction_param: 0. # in rad/ps
21
+ relaxation: True
22
+ nn_cutoff: True
23
+
24
+ diss_kwargs_default:
25
+ loc_deph_rate: 0. # rad/fs
26
+ glob_deph_rate: 0. # rad/fs
27
+ uniform_relaxation: True
28
+ relax_rate: 0. # rad/fs
29
+ relax_rates: {'A': 0, 'T': 0, 'G': 0, 'C': 0, 'B': 0}
30
+ loc_therm: False
31
+ glob_therm: False
32
+ deph_rate: 7. # in rad/ps
33
+ cutoff_freq: 20. # in rad/ps
34
+ reorg_energy: 1. # in rad/ps
35
+ temperature: 300. # in K
36
+ spectral_density: 'debye'
37
+ exponent: 1.
38
+
39
+ me_kwargs_default:
40
+ t_steps: 500.
41
+ t_end: 3. # ps
42
+ t_unit: 'ps'
43
+ init_e_state: '(0, 0)'
44
+ init_h_state: '(0, 0)'
45
+ solver_method: 'adams'
File without changes
File without changes
@@ -0,0 +1 @@
1
+ [{"E_A": -44, "E_T": -49, "E_G": -45, "E_C": -43, "t_AA": 0.16, "t_AT": 0.07, "t_AG": 0.01, "t_AC": -0.03, "t_TA": -0.07, "t_TT": -0.3, "t_TG": -0.17, "t_TC": 0.22, "t_GA": 0.3, "t_GT": -0.32, "t_GG": 0.2, "t_GC": 0.43, "t_CA": -0.12, "t_CT": 0.63, "t_CG": 0.15, "t_CC": -0.47, "h_AT": -0.09, "h_GC": 0.16, "h_TA": -0.09, "h_CG": 0.16, "r+_AA": 0.06, "r+_AT": 0.02, "r+_AG": 0.03, "r+_AC": -0.02, "r+_TA": 0.02, "r+_TT": 0.02, "r+_TG": 0.03, "r+_TC": -0.02, "r+_GA": 0.03, "r+_GT": 0.03, "r+_GG": -0.02, "r+_GC": -0.03, "r+_CA": -0.02, "r+_CT": -0.02, "r+_CG": -0.03, "r+_CC": 0.02, "r-_AA": 0.29, "r-_AT": 0.03, "r-_AG": -0.06, "r-_AC": -0.03, "r-_TA": 0.03, "r-_TT": 0.002, "r-_TG": 0.02, "r-_TC": -0.002, "r-_GA": -0.06, "r-_GT": 0.02, "r-_GG": -0.05, "r-_GC": -0.04, "r-_CA": -0.03, "r-_CT": -0.002, "r-_CG": -0.04, "r-_CC": 0.003}, {"source": "Hawke2010", "particle": "electron", "tb_model_name": "ELM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -44, "E_T": -49, "E_G": -45, "E_C": -43, "t_AA": 0.16, "t_AT": 0.07, "t_AG": 0.01, "t_AC": -0.03, "t_TA": -0.07, "t_TT": -0.3, "t_TG": -0.17, "t_TC": 0.22, "t_GA": 0.3, "t_GT": -0.32, "t_GG": 0.2, "t_GC": 0.43, "t_CA": -0.12, "t_CT": 0.63, "t_CG": 0.15, "t_CC": -0.47, "h_AT": -0.09, "h_GC": 0.16, "h_TA": -0.09, "h_CG": 0.16}, {"source": "Hawke2010", "particle": "electron", "tb_model_name": "LM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -49, "E_T": -49, "E_G": -45, "E_C": -45, "t_AA": -0.29, "t_AT": 0.005, "t_AG": 0.03, "t_AC": 0.32, "t_TA": 0.02, "t_TT": -0.29, "t_TG": 0.17, "t_TC": -0.01, "t_GA": -0.01, "t_GT": 0.32, "t_GG": 0.2, "t_GC": -0.1, "t_CA": 0.17, "t_CT": 0.03, "t_CG": -0.08, "t_CC": 0.2}, {"source": "Hawke2010", "particle": "electron", "tb_model_name": "WM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -83, "E_T": -90, "E_G": -80, "E_C": -88, "t_AA": -0.08, "t_AT": 0.68, "t_AG": -0.05, "t_AC": 0.68, "t_TA": 0.26, "t_TT": -1.17, "t_TG": 0.28, "t_TC": -0.86, "t_GA": -0.79, "t_GT": 0.73, "t_GG": -0.62, "t_GC": 0.8, "t_CA": 0.05, "t_CT": -1.07, "t_CG": -0.01, "t_CC": -0.66, "h_AT": -0.12, "h_GC": -0.12, "h_TA": -0.12, "h_CG": -0.12, "r+_AA": 0.02, "r+_AT": 0.09, "r+_AG": 0.04, "r+_AC": 0.05, "r+_TA": 0.09, "r+_TT": 0.04, "r+_TG": 0.05, "r+_TC": 0.02, "r+_GA": 0.04, "r+_GT": 0.05, "r+_GG": 0.03, "r+_GC": 0.04, "r+_CA": 0.05, "r+_CT": 0.02, "r+_CG": 0.04, "r+_CC": 0.01, "r-_AA": 0.48, "r-_AT": -0.03, "r-_AG": -0.03, "r-_AC": -0.05, "r-_TA": -0.03, "r-_TT": 0.005, "r-_TG": 0.05, "r-_TC": 0.005, "r-_GA": -0.03, "r-_GT": 0.05, "r-_GG": -0.44, "r-_GC": 0.04, "r-_CA": 0.05, "r-_CT": 0.005, "r-_CG": 0.04, "r-_CC": 0.01}, {"source": "Hawke2010", "particle": "hole", "tb_model_name": "ELM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -83, "E_T": -83, "E_G": -80, "E_C": -80, "t_AA": -0.08, "t_AT": 0.2, "t_AG": -0.05, "t_AC": 0.02, "t_TA": 0.47, "t_TT": -0.08, "t_TG": -0.04, "t_TC": -0.79, "t_GA": -0.79, "t_GT": 0.02, "t_GG": -0.62, "t_GC": 0.01, "t_CA": -0.04, "t_CT": -0.05, "t_CG": -0.44, "t_CC": -0.62, "t_BB": 0.1, "h_AB": 0.1, "h_TB": 0.1, "h_GB": 0.1, "h_CB": 0.1, "h_BA": 0.1, "h_BT": 0.1, "h_BG": 0.1, "h_BC": 0.1}, {"source": "Hawke2010", "particle": "hole", "tb_model_name": "WM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -83, "E_T": -90, "E_G": -80, "E_C": -88, "t_AA": -0.08, "t_AT": 0.68, "t_AG": -0.05, "t_AC": 0.68, "t_TA": 0.26, "t_TT": -1.17, "t_TG": 0.28, "t_TC": -0.86, "t_GA": -0.79, "t_GT": 0.73, "t_GG": -0.62, "t_GC": 0.8, "t_CA": 0.05, "t_CT": -1.07, "t_CG": -0.01, "t_CC": -0.66, "h_AT": -0.12, "h_GC": -0.12, "h_TA": -0.12, "h_CG": -0.12}, {"source": "Hawke2010", "particle": "hole", "tb_model_name": "LM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -83, "E_T": -83, "E_G": -80, "E_C": -80, "t_AA": -0.08, "t_AT": 0.2, "t_AG": -0.05, "t_AC": 0.02, "t_TA": 0.47, "t_TT": -0.08, "t_TG": -0.04, "t_TC": -0.79, "t_GA": -0.79, "t_GT": 0.02, "t_GG": -0.62, "t_GC": 0.01, "t_CA": -0.04, "t_CT": -0.05, "t_CG": -0.44, "t_CC": -0.62}, {"source": "Hawke2010", "particle": "hole", "tb_model_name": "WM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -43.1, "E_T": -43.1, "E_G": -41.4, "E_C": -41.4, "t_AA": 0.22, "t_AT": 0.01, "t_AG": 0.11, "t_AC": 0.01, "t_TA": 0.02, "t_TT": 0.22, "t_TG": 0.09, "t_TC": 0.06, "t_GA": 0.06, "t_GT": 0.01, "t_GG": 0.02, "t_GC": 0.19, "t_CA": 0.09, "t_CT": 0.11, "t_CG": 0.09, "t_CC": 0.02}, {"source": "Mantela2021", "particle": "electron", "tb_model_name": "WM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -84.9, "E_T": -84.9, "E_G": -83, "E_C": -83, "t_AA": 0.38, "t_AT": 0.5, "t_AG": 0.37, "t_AC": 0.16, "t_TA": 0.37, "t_TT": 0.38, "t_TG": 0.28, "t_TC": 1.42, "t_GA": 1.42, "t_GT": 0.16, "t_GG": 1.16, "t_GC": 0.1, "t_CA": 0.28, "t_CT": 0.37, "t_CG": 0.75, "t_CC": 116}, {"source": "Mantela2021", "particle": "hole", "tb_model_name": "WM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -49, "E_T": -49, "E_G": -45, "E_C": -45, "t_AA": -0.29, "t_AT": 0.005, "t_AG": 0.03, "t_AC": 0.32, "t_TA": 0.02, "t_TT": -0.29, "t_TG": 0.17, "t_TC": -0.01, "t_GA": -0.01, "t_GT": 0.32, "t_GG": 0.2, "t_GC": -0.1, "t_CA": 0.17, "t_CT": 0.03, "t_CG": -0.08, "t_CC": 0.2}, {"source": "Simserides2014", "particle": "electron", "tb_model_name": "WM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -83, "E_T": -83, "E_G": -80, "E_C": -80, "t_AA": -0.2, "t_AT": 0.35, "t_AG": -0.3, "t_AC": 0.1, "t_TA": 0.5, "t_TT": -0.2, "t_TG": -0.1, "t_TC": -1.1, "t_GA": -1.1, "t_GT": 0.1, "t_GG": -1.0, "t_GC": 0.1, "t_CA": -0.1, "t_CT": -0.3, "t_CG": -0.5, "t_CC": -1.0}, {"source": "Simserides2014", "particle": "hole", "tb_model_name": "WM", "unit": "100meV", "notes": "energy unit: 100 meV"}]
@@ -0,0 +1 @@
1
+ [{"E_A": -0.130, "E_T": -0.350, "E_G": -0.520, "E_C": -0.290, "E_c": -0.290, "t_GG": 0.206, "t_CC": 0.099, "t_AA": 0.074, "t_TT": 0.035, "t_GC": 0.007, "t_CG": 0.031, "t_AT": 0.071, "t_TA": 0.011, "t_CT": 0.071, "t_AG": 0.017, "t_TC": 0.077, "t_GA": 0.008, "t_CA": 0.020, "t_TG": 0.004, "t_AC": 0.021, "t_GT": 0.022, "t_cc": 0.056, "t_Cc": 0.067, "t_cC": 0.091, "t_cG": 0.031, "t_Gc": 0.002, "h_GC": 0.073, "h_Gc": 0.069, "h_AT": 0.002, "r-_GG": 0.021, "r-_CC": 0.090, "r-_AA": 0.081, "r-_TT": 0.009, "r-_GC": 0.097, "r-_CG": 0.097, "r-_AT": 0.005, "r-_TA": 0.005, "r-_CT": 0.010, "r-_AG": 0.051, "r-_TC": 0.010, "r-_GA": 0.051, "r-_CA": 0.023, "r-_TG": 0.017, "r-_AC": 0.023, "r-_GT": 0.017, "r-_cc": 0.097, "r-_Cc": 0.094, "r-_cC": 0.094, "r-_cG": 0.084, "r-_Gc": 0.084, "r+_GG": 0.212, "r+_CC": 0.181, "r+_AA": 0.037, "r+_TT": 0.009, "r+_GC": 0.019, "r+_CG": 0.019, "r+_AT": 0.008, "r+_TA": 0.008, "r+_CT": 0.023, "r+_AG": 0.043, "r+_TC": 0.023, "r+_GA": 0.043, "r+_CA": 0.041, "r+_TG": 0.031, "r+_AC": 0.041, "r+_GT": 0.031, "r+_cc": 0.192, "r+_Cc": 0.186, "r+_cC": 0.186, "r+_cG": 0.030, "r+_Gc": 0.030}, {"source": "Simserides2024", "particle": "electron", "tb_model_name": "ELM", "unit": "eV", "notes": "includes 5'-methylated cytosine denoted as 'c' "}]
@@ -0,0 +1 @@
1
+ [{"E_A": -0.130, "E_T": -0.350, "E_G": -0.520, "E_C": -0.290, "E_c": -0.290, "E_B": -5.000, "t_GG": 0.206, "t_CC": 0.099, "t_AA": 0.074, "t_TT": 0.035, "t_GC": 0.007, "t_CG": 0.031, "t_AT": 0.071, "t_TA": 0.011, "t_CT": 0.071, "t_AG": 0.017, "t_TC": 0.077, "t_GA": 0.008, "t_CA": 0.020, "t_TG": 0.004, "t_AC": 0.021, "t_GT": 0.022, "t_cc": 0.056, "t_Cc": 0.067, "t_cC": 0.091, "t_cG": 0.031, "t_Gc": 0.002, "t_BB": 0.700, "h_GC": 0.073, "h_Gc": 0.069, "h_AT": 0.002, "h_cB": 0.066, "h_GB": 0.092, "h_CB": 0.047, "h_AB": 0.260, "h_TB": 0.079, "r-_GG": 0.021, "r-_CC": 0.090, "r-_AA": 0.081, "r-_TT": 0.009, "r-_GC": 0.097, "r-_CG": 0.097, "r-_AT": 0.005, "r-_TA": 0.005, "r-_CT": 0.010, "r-_AG": 0.051, "r-_TC": 0.010, "r-_GA": 0.051, "r-_CA": 0.023, "r-_TG": 0.017, "r-_AC": 0.023, "r-_GT": 0.017, "r-_cc": 0.097, "r-_Cc": 0.094, "r-_cC": 0.094, "r-_cG": 0.084, "r-_Gc": 0.084, "r+_GG": 0.212, "r+_CC": 0.181, "r+_AA": 0.037, "r+_TT": 0.009, "r+_GC": 0.019, "r+_CG": 0.019, "r+_AT": 0.008, "r+_TA": 0.008, "r+_CT": 0.023, "r+_AG": 0.043, "r+_TC": 0.023, "r+_GA": 0.043, "r+_CA": 0.041, "r+_TG": 0.031, "r+_AC": 0.041, "r+_GT": 0.031, "r+_cc": 0.192, "r+_Cc": 0.186, "r+_cC": 0.186, "r+_cG": 0.030, "r+_Gc": 0.030}, {"source": "Simserides2024", "particle": "electron", "tb_model_name": "FELM", "unit": "eV", "notes": "includes 5'-methylated cytosine denoted as 'c' and sugar-phosphate backbone denoted as 'B' "}]
@@ -0,0 +1 @@
1
+ [{"E_A": -7.610, "E_T": -8.240, "E_G": -7.130, "E_C": -7.900, "E_c": -7.630, "t_GG": 0.126, "t_CC": 0.064, "t_AA": 0.028, "t_TT": 0.120, "t_GC": 0.151, "t_CG": 0.025, "t_AT": 0.073, "t_TA": 0.081, "t_CT": 0.048, "t_AG": 0.059, "t_TC": 0.092, "t_GA": 0.131, "t_CA": 0.030, "t_TG": 0.079, "t_AC": 0.074, "t_GT": 0.132, "t_cc": 0.105, "t_Cc": 0.098, "t_cC": 0.067, "t_cG": 0.029, "t_Gc": 0.208, "h_GC": 0.026, "h_Gc": 0.028, "h_AT": 0.034, "r-_GG": 0.030, "r-_CC": 0.004, "r-_AA": 0.082, "r-_TT": 0.002, "r-_GC": 0.027, "r-_CG": 0.027, "r-_AT": 0.008, "r-_TA": 0.008, "r-_CT": 0.002, "r-_AG": 0.014, "r-_TC": 0.002, "r-_GA": 0.014, "r-_CA": 0.018, "r-_TG": 0.018, "r-_AC": 0.018, "r-_GT": 0.018, "r-_cc": 0.004, "r-_Cc": 0.004, "r-_cC": 0.004, "r-_cG": 0.027, "r-_Gc": 0.027, "r+_GG": 0.028, "r+_CC": 0.000, "r+_AA": 0.043, "r+_TT": 0.002, "r+_GC": 0.001, "r+_CG": 0.001, "r+_AT": 0.013, "r+_TA": 0.013, "r+_CT": 0.000, "r+_AG": 0.018, "r+_TC": 0.000, "r+_GA": 0.018, "r+_CA": 0.000, "r+_TG": 0.007, "r+_AC": 0.000, "r+_GT": 0.007, "r+_cc": 0.000, "r+_Cc": 0.000, "r+_cC": 0.000, "r+_cG": 0.002, "r+_Gc": 0.002}, {"source": "Simserides2024", "particle": "hole", "tb_model_name": "ELM", "unit": "eV", "notes": "includes 5'-methylated cytosine denoted as 'c' "}]
@@ -0,0 +1 @@
1
+ [{"E_A": -7.610, "E_T": -8.240, "E_G": -7.130, "E_C": -7.900, "E_c": -7.630, "E_B": -9.400, "t_GG": 0.126, "t_CC": 0.064, "t_AA": 0.028, "t_TT": 0.120, "t_GC": 0.151, "t_CG": 0.025, "t_AT": 0.073, "t_TA": 0.081, "t_CT": 0.048, "t_AG": 0.059, "t_TC": 0.092, "t_GA": 0.131, "t_CA": 0.030, "t_TG": 0.079, "t_AC": 0.074, "t_GT": 0.132, "t_cc": 0.105, "t_Cc": 0.098, "t_cC": 0.067, "t_cG": 0.029, "t_Gc": 0.208, "t_BB": 0.026, "h_GC": 0.026, "h_Gc": 0.028, "h_AT": 0.034, "h_cB": 0.178, "h_GB": 0.016, "h_CB": 0.173, "h_AB": 0.024, "h_TB": 0.179, "r-_GG": 0.030, "r-_CC": 0.004, "r-_AA": 0.082, "r-_TT": 0.002, "r-_GC": 0.027, "r-_CG": 0.027, "r-_AT": 0.008, "r-_TA": 0.008, "r-_CT": 0.002, "r-_AG": 0.014, "r-_TC": 0.002, "r-_GA": 0.014, "r-_CA": 0.018, "r-_TG": 0.018, "r-_AC": 0.018, "r-_GT": 0.018, "r-_cc": 0.004, "r-_Cc": 0.004, "r-_cC": 0.004, "r-_cG": 0.027, "r-_Gc": 0.027, "r+_GG": 0.028, "r+_CC": 0.000, "r+_AA": 0.043, "r+_TT": 0.002, "r+_GC": 0.001, "r+_CG": 0.001, "r+_AT": 0.013, "r+_TA": 0.013, "r+_CT": 0.000, "r+_AG": 0.018, "r+_TC": 0.000, "r+_GA": 0.018, "r+_CA": 0.000, "r+_TG": 0.007, "r+_AC": 0.000, "r+_GT": 0.007, "r+_cc": 0.000, "r+_Cc": 0.000, "r+_cC": 0.000, "r+_cG": 0.002, "r+_Gc": 0.002}, {"source": "Simserides2024", "particle": "hole", "tb_model_name": "ELM", "unit": "eV", "notes": "includes 5'-methylated cytosine denoted as 'c' and the sugar-phosphate backbone denoted as 'B' "}]
File without changes