evmutation2 0.0.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.
- evmutation2-0.0.1/.idea/.gitignore +5 -0
- evmutation2-0.0.1/.idea/evmutation2.iml +14 -0
- evmutation2-0.0.1/.idea/inspectionProfiles/Project_Default.xml +6 -0
- evmutation2-0.0.1/.idea/inspectionProfiles/profiles_settings.xml +6 -0
- evmutation2-0.0.1/.idea/misc.xml +7 -0
- evmutation2-0.0.1/.idea/modules.xml +8 -0
- evmutation2-0.0.1/.idea/vcs.xml +7 -0
- evmutation2-0.0.1/.idea/workspace.xml +128 -0
- evmutation2-0.0.1/LICENSE.txt +9 -0
- evmutation2-0.0.1/PKG-INFO +120 -0
- evmutation2-0.0.1/README.md +87 -0
- evmutation2-0.0.1/pyproject.toml +61 -0
- evmutation2-0.0.1/src/evmutation2/__about__.py +4 -0
- evmutation2-0.0.1/src/evmutation2/__init__.py +3 -0
- evmutation2-0.0.1/src/evmutation2/alphafold3_pytorch/__init__.py +0 -0
- evmutation2-0.0.1/src/evmutation2/alphafold3_pytorch/alphafold3.py +1712 -0
- evmutation2-0.0.1/src/evmutation2/alphafold3_pytorch/attention.py +547 -0
- evmutation2-0.0.1/src/evmutation2/alphafold3_pytorch/model_utils.py +1006 -0
- evmutation2-0.0.1/src/evmutation2/alphafold3_pytorch/tensor_typing.py +112 -0
- evmutation2-0.0.1/src/evmutation2/alphafold3_pytorch/utils.py +87 -0
- evmutation2-0.0.1/src/evmutation2/data.py +635 -0
- evmutation2-0.0.1/src/evmutation2/ema.py +456 -0
- evmutation2-0.0.1/src/evmutation2/features.py +1070 -0
- evmutation2-0.0.1/src/evmutation2/main.py +29 -0
- evmutation2-0.0.1/src/evmutation2/model.py +2854 -0
- evmutation2-0.0.1/src/evmutation2/parsers.py +331 -0
- evmutation2-0.0.1/src/evmutation2/rigid_utils.py +1391 -0
- evmutation2-0.0.1/src/evmutation2/scripts/__init__.py +0 -0
- evmutation2-0.0.1/src/evmutation2/scripts/create_alignment_db_from_zip.py +282 -0
- evmutation2-0.0.1/src/evmutation2/scripts/create_alignment_db_sharded.py +269 -0
- evmutation2-0.0.1/src/evmutation2/scripts/create_file_db.py +143 -0
- evmutation2-0.0.1/src/evmutation2/scripts/merge_index.py +56 -0
- evmutation2-0.0.1/src/evmutation2/structures.py +819 -0
- evmutation2-0.0.1/src/evmutation2/utils.py +89 -0
- evmutation2-0.0.1/tests/__init__.py +3 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
|
6
|
+
</content>
|
|
7
|
+
<orderEntry type="jdk" jdkName="modal" jdkType="Python SDK" />
|
|
8
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
9
|
+
</component>
|
|
10
|
+
<component name="PyDocumentationSettings">
|
|
11
|
+
<option name="format" value="NUMPY" />
|
|
12
|
+
<option name="myDocStringFormat" value="NumPy" />
|
|
13
|
+
</component>
|
|
14
|
+
</module>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="Black">
|
|
4
|
+
<option name="sdkName" value="Hatch (evmutation2) [Python 3.13.0]" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="modal" project-jdk-type="Python SDK" />
|
|
7
|
+
</project>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/evmutation2.iml" filepath="$PROJECT_DIR$/.idea/evmutation2.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="7b416629-324f-4138-84cc-2bd077d768ed" name="Changes" comment="remove logging" />
|
|
8
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
9
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
11
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="FileTemplateManagerImpl">
|
|
14
|
+
<option name="RECENT_TEMPLATES">
|
|
15
|
+
<list>
|
|
16
|
+
<option value="Python Script" />
|
|
17
|
+
</list>
|
|
18
|
+
</option>
|
|
19
|
+
</component>
|
|
20
|
+
<component name="Git.Settings">
|
|
21
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
22
|
+
</component>
|
|
23
|
+
<component name="GitHubPullRequestSearchHistory">{
|
|
24
|
+
"lastFilter": {
|
|
25
|
+
"state": "OPEN",
|
|
26
|
+
"assignee": "thomashopf"
|
|
27
|
+
}
|
|
28
|
+
}</component>
|
|
29
|
+
<component name="GithubPullRequestsUISettings">{
|
|
30
|
+
"selectedUrlAndAccountId": {
|
|
31
|
+
"url": "https://github.com/thomashopf/evmutation2.git",
|
|
32
|
+
"accountId": "b2e7ec9e-77ea-4418-a131-8fa62e1b7495"
|
|
33
|
+
}
|
|
34
|
+
}</component>
|
|
35
|
+
<component name="ProjectColorInfo">{
|
|
36
|
+
"associatedIndex": 0
|
|
37
|
+
}</component>
|
|
38
|
+
<component name="ProjectId" id="38vi6ah1IJEquJwb6zXPX8TVi1M" />
|
|
39
|
+
<component name="ProjectViewState">
|
|
40
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
41
|
+
<option name="showLibraryContents" value="true" />
|
|
42
|
+
</component>
|
|
43
|
+
<component name="PropertiesComponent">{
|
|
44
|
+
"keyToString": {
|
|
45
|
+
"ModuleVcsDetector.initialDetectionPerformed": "true",
|
|
46
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
47
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
48
|
+
"git-widget-placeholder": "main",
|
|
49
|
+
"last_opened_file_path": "/Users/thomashopf/Documents/repositories/marks_lab/evmutation2",
|
|
50
|
+
"settings.editor.selected.configurable": "com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable"
|
|
51
|
+
}
|
|
52
|
+
}</component>
|
|
53
|
+
<component name="SharedIndexes">
|
|
54
|
+
<attachedChunks>
|
|
55
|
+
<set>
|
|
56
|
+
<option value="bundled-python-sdk-a101402ee41c-968fe969f28a-com.jetbrains.pycharm.pro.sharedIndexes.bundled-PY-252.28238.29" />
|
|
57
|
+
</set>
|
|
58
|
+
</attachedChunks>
|
|
59
|
+
</component>
|
|
60
|
+
<component name="TaskManager">
|
|
61
|
+
<task active="true" id="Default" summary="Default task">
|
|
62
|
+
<changelist id="7b416629-324f-4138-84cc-2bd077d768ed" name="Changes" comment="" />
|
|
63
|
+
<created>1769686270097</created>
|
|
64
|
+
<option name="number" value="Default" />
|
|
65
|
+
<option name="presentableId" value="Default" />
|
|
66
|
+
<updated>1769686270097</updated>
|
|
67
|
+
</task>
|
|
68
|
+
<task id="LOCAL-00001" summary="initial commit">
|
|
69
|
+
<option name="closed" value="true" />
|
|
70
|
+
<created>1769686297678</created>
|
|
71
|
+
<option name="number" value="00001" />
|
|
72
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
73
|
+
<option name="project" value="LOCAL" />
|
|
74
|
+
<updated>1769686297678</updated>
|
|
75
|
+
</task>
|
|
76
|
+
<task id="LOCAL-00002" summary="add model from initial repo">
|
|
77
|
+
<option name="closed" value="true" />
|
|
78
|
+
<created>1769689001897</created>
|
|
79
|
+
<option name="number" value="00002" />
|
|
80
|
+
<option name="presentableId" value="LOCAL-00002" />
|
|
81
|
+
<option name="project" value="LOCAL" />
|
|
82
|
+
<updated>1769689001897</updated>
|
|
83
|
+
</task>
|
|
84
|
+
<task id="LOCAL-00003" summary="add model from initial repo">
|
|
85
|
+
<option name="closed" value="true" />
|
|
86
|
+
<created>1769689228107</created>
|
|
87
|
+
<option name="number" value="00003" />
|
|
88
|
+
<option name="presentableId" value="LOCAL-00003" />
|
|
89
|
+
<option name="project" value="LOCAL" />
|
|
90
|
+
<updated>1769689228107</updated>
|
|
91
|
+
</task>
|
|
92
|
+
<task id="LOCAL-00004" summary="add nemo license info">
|
|
93
|
+
<option name="closed" value="true" />
|
|
94
|
+
<created>1769689857445</created>
|
|
95
|
+
<option name="number" value="00004" />
|
|
96
|
+
<option name="presentableId" value="LOCAL-00004" />
|
|
97
|
+
<option name="project" value="LOCAL" />
|
|
98
|
+
<updated>1769689857445</updated>
|
|
99
|
+
</task>
|
|
100
|
+
<task id="LOCAL-00005" summary="remove loggin">
|
|
101
|
+
<option name="closed" value="true" />
|
|
102
|
+
<created>1769700937370</created>
|
|
103
|
+
<option name="number" value="00005" />
|
|
104
|
+
<option name="presentableId" value="LOCAL-00005" />
|
|
105
|
+
<option name="project" value="LOCAL" />
|
|
106
|
+
<updated>1769700937370</updated>
|
|
107
|
+
</task>
|
|
108
|
+
<option name="localTasksCounter" value="6" />
|
|
109
|
+
<servers />
|
|
110
|
+
</component>
|
|
111
|
+
<component name="VcsManagerConfiguration">
|
|
112
|
+
<MESSAGE value="initial commit" />
|
|
113
|
+
<MESSAGE value="add model from initial repo" />
|
|
114
|
+
<MESSAGE value="add nemo license info" />
|
|
115
|
+
<MESSAGE value="remove loggin" />
|
|
116
|
+
<option name="LAST_COMMIT_MESSAGE" value="remove loggin" />
|
|
117
|
+
</component>
|
|
118
|
+
<component name="XDebuggerManager">
|
|
119
|
+
<breakpoint-manager>
|
|
120
|
+
<breakpoints>
|
|
121
|
+
<line-breakpoint enabled="true" suspend="THREAD" type="python-line">
|
|
122
|
+
<url>file://$PROJECT_DIR$/src/evmutation2/scripts/merge_index.py</url>
|
|
123
|
+
<option name="timeStamp" value="1" />
|
|
124
|
+
</line-breakpoint>
|
|
125
|
+
</breakpoints>
|
|
126
|
+
</breakpoint-manager>
|
|
127
|
+
</component>
|
|
128
|
+
</project>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026-present Thomas Hopf <thomas.hopf@gmail.com>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evmutation2
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Project-URL: Documentation, https://github.com/thomashopf/evmutation2#readme
|
|
5
|
+
Project-URL: Issues, https://github.com/thomashopf/evmutation2/issues
|
|
6
|
+
Project-URL: Source, https://github.com/thomashopf/evmutation2
|
|
7
|
+
Author-email: Thomas Hopf <thomas.hopf@gmail.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE.txt
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
14
|
+
Requires-Python: >=3.12
|
|
15
|
+
Requires-Dist: beartype
|
|
16
|
+
Requires-Dist: biopython>=1.84
|
|
17
|
+
Requires-Dist: click
|
|
18
|
+
Requires-Dist: einops
|
|
19
|
+
Requires-Dist: einx
|
|
20
|
+
Requires-Dist: environs
|
|
21
|
+
Requires-Dist: jaxtyping
|
|
22
|
+
Requires-Dist: jsonargparse[signatures]
|
|
23
|
+
Requires-Dist: lightning
|
|
24
|
+
Requires-Dist: loguru
|
|
25
|
+
Requires-Dist: msgpack
|
|
26
|
+
Requires-Dist: numpy
|
|
27
|
+
Requires-Dist: pandas
|
|
28
|
+
Requires-Dist: pyarrow
|
|
29
|
+
Requires-Dist: requests
|
|
30
|
+
Requires-Dist: torch
|
|
31
|
+
Requires-Dist: torchdata
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# EVmutation2
|
|
35
|
+
|
|
36
|
+
[](https://pypi.org/project/evmutation2)
|
|
37
|
+
[](https://pypi.org/project/evmutation2)
|
|
38
|
+
|
|
39
|
+
-----
|
|
40
|
+
|
|
41
|
+
## Table of Contents
|
|
42
|
+
|
|
43
|
+
- [Installation](#installation)
|
|
44
|
+
- [License](#license)
|
|
45
|
+
|
|
46
|
+
## Installation
|
|
47
|
+
|
|
48
|
+
```console
|
|
49
|
+
pip install evmutation2
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
`evmutation2` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
|
|
55
|
+
|
|
56
|
+
## External Code
|
|
57
|
+
|
|
58
|
+
### alphafold3-pytorch
|
|
59
|
+
|
|
60
|
+
We gratefully acknowledge lucidrain's AlphaFold3 reimplementation (https://github.com/lucidrains/alphafold3-pytorch)
|
|
61
|
+
which we use in modified form for the encoder part of our model:
|
|
62
|
+
|
|
63
|
+
> MIT License
|
|
64
|
+
>
|
|
65
|
+
> Copyright (c) 2024 Phil Wang
|
|
66
|
+
>
|
|
67
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
68
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
69
|
+
> in the Software without restriction, including without limitation the rights
|
|
70
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
71
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
72
|
+
> furnished to do so, subject to the following conditions:
|
|
73
|
+
>
|
|
74
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
75
|
+
> copies or substantial portions of the Software.
|
|
76
|
+
>
|
|
77
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
78
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
79
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
80
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
81
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
82
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
83
|
+
> SOFTWARE.
|
|
84
|
+
|
|
85
|
+
### OpenFold
|
|
86
|
+
|
|
87
|
+
We also gratefully acknowledge code from OpenFold included in parts of this codebase where noted:
|
|
88
|
+
|
|
89
|
+
> Copyright 2021 AlQuraishi Laboratory
|
|
90
|
+
> Copyright 2021 DeepMind Technologies Limited
|
|
91
|
+
>
|
|
92
|
+
> Licensed under the Apache License, Version 2.0 (the "License");
|
|
93
|
+
> you may not use this file except in compliance with the License.
|
|
94
|
+
> You may obtain a copy of the License at
|
|
95
|
+
>
|
|
96
|
+
> http://www.apache.org/licenses/LICENSE-2.0
|
|
97
|
+
>
|
|
98
|
+
> Unless required by applicable law or agreed to in writing, software
|
|
99
|
+
> distributed under the License is distributed on an "AS IS" BASIS,
|
|
100
|
+
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
101
|
+
> See the License for the specific language governing permissions and
|
|
102
|
+
> limitations under the License.
|
|
103
|
+
|
|
104
|
+
### BioNemo
|
|
105
|
+
|
|
106
|
+
We also gratefully acknowledge code from BioNemo:
|
|
107
|
+
|
|
108
|
+
> Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
109
|
+
>
|
|
110
|
+
> Licensed under the Apache License, Version 2.0 (the "License");
|
|
111
|
+
> you may not use this file except in compliance with the License.
|
|
112
|
+
> You may obtain a copy of the License at
|
|
113
|
+
>
|
|
114
|
+
> http://www.apache.org/licenses/LICENSE-2.0
|
|
115
|
+
>
|
|
116
|
+
> Unless required by applicable law or agreed to in writing, software
|
|
117
|
+
> distributed under the License is distributed on an "AS IS" BASIS,
|
|
118
|
+
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
119
|
+
> See the License for the specific language governing permissions and
|
|
120
|
+
> limitations under the License.
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# EVmutation2
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/evmutation2)
|
|
4
|
+
[](https://pypi.org/project/evmutation2)
|
|
5
|
+
|
|
6
|
+
-----
|
|
7
|
+
|
|
8
|
+
## Table of Contents
|
|
9
|
+
|
|
10
|
+
- [Installation](#installation)
|
|
11
|
+
- [License](#license)
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```console
|
|
16
|
+
pip install evmutation2
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
`evmutation2` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
|
|
22
|
+
|
|
23
|
+
## External Code
|
|
24
|
+
|
|
25
|
+
### alphafold3-pytorch
|
|
26
|
+
|
|
27
|
+
We gratefully acknowledge lucidrain's AlphaFold3 reimplementation (https://github.com/lucidrains/alphafold3-pytorch)
|
|
28
|
+
which we use in modified form for the encoder part of our model:
|
|
29
|
+
|
|
30
|
+
> MIT License
|
|
31
|
+
>
|
|
32
|
+
> Copyright (c) 2024 Phil Wang
|
|
33
|
+
>
|
|
34
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
35
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
36
|
+
> in the Software without restriction, including without limitation the rights
|
|
37
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
38
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
39
|
+
> furnished to do so, subject to the following conditions:
|
|
40
|
+
>
|
|
41
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
42
|
+
> copies or substantial portions of the Software.
|
|
43
|
+
>
|
|
44
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
45
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
46
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
47
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
48
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
49
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
50
|
+
> SOFTWARE.
|
|
51
|
+
|
|
52
|
+
### OpenFold
|
|
53
|
+
|
|
54
|
+
We also gratefully acknowledge code from OpenFold included in parts of this codebase where noted:
|
|
55
|
+
|
|
56
|
+
> Copyright 2021 AlQuraishi Laboratory
|
|
57
|
+
> Copyright 2021 DeepMind Technologies Limited
|
|
58
|
+
>
|
|
59
|
+
> Licensed under the Apache License, Version 2.0 (the "License");
|
|
60
|
+
> you may not use this file except in compliance with the License.
|
|
61
|
+
> You may obtain a copy of the License at
|
|
62
|
+
>
|
|
63
|
+
> http://www.apache.org/licenses/LICENSE-2.0
|
|
64
|
+
>
|
|
65
|
+
> Unless required by applicable law or agreed to in writing, software
|
|
66
|
+
> distributed under the License is distributed on an "AS IS" BASIS,
|
|
67
|
+
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
68
|
+
> See the License for the specific language governing permissions and
|
|
69
|
+
> limitations under the License.
|
|
70
|
+
|
|
71
|
+
### BioNemo
|
|
72
|
+
|
|
73
|
+
We also gratefully acknowledge code from BioNemo:
|
|
74
|
+
|
|
75
|
+
> Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
76
|
+
>
|
|
77
|
+
> Licensed under the Apache License, Version 2.0 (the "License");
|
|
78
|
+
> you may not use this file except in compliance with the License.
|
|
79
|
+
> You may obtain a copy of the License at
|
|
80
|
+
>
|
|
81
|
+
> http://www.apache.org/licenses/LICENSE-2.0
|
|
82
|
+
>
|
|
83
|
+
> Unless required by applicable law or agreed to in writing, software
|
|
84
|
+
> distributed under the License is distributed on an "AS IS" BASIS,
|
|
85
|
+
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
86
|
+
> See the License for the specific language governing permissions and
|
|
87
|
+
> limitations under the License.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "evmutation2"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = ''
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
keywords = []
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Thomas Hopf", email = "thomas.hopf@gmail.com" },
|
|
15
|
+
]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Programming Language :: Python",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
21
|
+
]
|
|
22
|
+
dependencies = [
|
|
23
|
+
"torch", "numpy", "einx", "einops", "lightning", "click",
|
|
24
|
+
"biopython>=1.84", "msgpack", "pandas", "requests", "loguru",
|
|
25
|
+
"jsonargparse[signatures]", "beartype", "environs", "jaxtyping",
|
|
26
|
+
"torchdata", "pyarrow",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Documentation = "https://github.com/thomashopf/evmutation2#readme"
|
|
31
|
+
Issues = "https://github.com/thomashopf/evmutation2/issues"
|
|
32
|
+
Source = "https://github.com/thomashopf/evmutation2"
|
|
33
|
+
|
|
34
|
+
[tool.hatch.version]
|
|
35
|
+
path = "src/evmutation2/__about__.py"
|
|
36
|
+
|
|
37
|
+
[tool.hatch.envs.types]
|
|
38
|
+
extra-dependencies = [
|
|
39
|
+
"mypy>=1.0.0",
|
|
40
|
+
]
|
|
41
|
+
[tool.hatch.envs.types.scripts]
|
|
42
|
+
check = "mypy --install-types --non-interactive {args:src/evmutation2 tests}"
|
|
43
|
+
|
|
44
|
+
[tool.coverage.run]
|
|
45
|
+
source_pkgs = ["evmutation2", "tests"]
|
|
46
|
+
branch = true
|
|
47
|
+
parallel = true
|
|
48
|
+
omit = [
|
|
49
|
+
"src/evmutation2/__about__.py",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[tool.coverage.paths]
|
|
53
|
+
evmutation2 = ["src/evmutation2", "*/evmutation2/src/evmutation2"]
|
|
54
|
+
tests = ["tests", "*/evmutation2/tests"]
|
|
55
|
+
|
|
56
|
+
[tool.coverage.report]
|
|
57
|
+
exclude_lines = [
|
|
58
|
+
"no cov",
|
|
59
|
+
"if __name__ == .__main__.:",
|
|
60
|
+
"if TYPE_CHECKING:",
|
|
61
|
+
]
|
|
File without changes
|