Spaces:
Runtime error
Runtime error
GlandVergil
commited on
Upload 8 files
Browse files- .gitattributes +1 -0
- .gitignore +16 -0
- END +7 -0
- LICENSE +30 -0
- appverifUI.dll +0 -0
- pyrosetta-2023.14+release.7132bdc754a-cp310-cp310-linux_x86_64.whl +3 -0
- setup.py +10 -0
- untitled.py +0 -0
- vfcompat.dll +0 -0
.gitattributes
CHANGED
@@ -38,3 +38,4 @@ RFdiffusion/img/diffusion_protein_gradient_2.jpg filter=lfs diff=lfs merge=lfs -
|
|
38 |
RFdiffusion/pyrosetta-2023.14+release.7132bdc754a-cp310-cp310-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
|
39 |
env/SE3Transformer/images/se3-transformer.png filter=lfs diff=lfs merge=lfs -text
|
40 |
img/diffusion_protein_gradient_2.jpg filter=lfs diff=lfs merge=lfs -text
|
|
|
|
38 |
RFdiffusion/pyrosetta-2023.14+release.7132bdc754a-cp310-cp310-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
|
39 |
env/SE3Transformer/images/se3-transformer.png filter=lfs diff=lfs merge=lfs -text
|
40 |
img/diffusion_protein_gradient_2.jpg filter=lfs diff=lfs merge=lfs -text
|
41 |
+
pyrosetta-2023.14+release.7132bdc754a-cp310-cp310-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.py[cod]
|
2 |
+
rfdiffusion.egg-info
|
3 |
+
|
4 |
+
models/
|
5 |
+
schedules/
|
6 |
+
|
7 |
+
examples/ppi_scaffolds
|
8 |
+
|
9 |
+
tests/.results.json
|
10 |
+
tests/input_pdbs
|
11 |
+
tests/outputs
|
12 |
+
tests/ppi_scaffolds
|
13 |
+
tests/reference_outputs/
|
14 |
+
tests/target_folds
|
15 |
+
tests/tim_barrel_scaffold
|
16 |
+
tests/tests_*
|
END
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"retCode":"100",
|
3 |
+
"retData":null,
|
4 |
+
"retMsg":"操作成功",
|
5 |
+
"retTime":"2022-11-05 22:20:09",
|
6 |
+
"success":true
|
7 |
+
}
|
LICENSE
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BSD License
|
2 |
+
|
3 |
+
Copyright (c) 2023 University of Washington. Developed at the Institute for
|
4 |
+
Protein Design by Joseph Watson, David Juergens, Nathaniel Bennett, Brian Trippe
|
5 |
+
and Jason Yim
|
6 |
+
|
7 |
+
Redistribution and use in source and binary forms, with or without
|
8 |
+
modification, are permitted provided that the following conditions are met:
|
9 |
+
|
10 |
+
Redistributions of source code must retain the above copyright notice, this
|
11 |
+
list of conditions and the following disclaimer.
|
12 |
+
|
13 |
+
Redistributions in binary form must reproduce the above copyright notice, this
|
14 |
+
list of conditions and the following disclaimer in the documentation and/or
|
15 |
+
other materials provided with the distribution.
|
16 |
+
|
17 |
+
Neither the name of the University of Washington nor the names of its
|
18 |
+
contributors may be used to endorse or promote products derived from this
|
19 |
+
software without specific prior written permission.
|
20 |
+
|
21 |
+
THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF WASHINGTON AND CONTRIBUTORS “AS
|
22 |
+
IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
23 |
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
24 |
+
DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF WASHINGTON OR CONTRIBUTORS BE
|
25 |
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
26 |
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
27 |
+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
28 |
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
29 |
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
30 |
+
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
appverifUI.dll
ADDED
Binary file (112 kB). View file
|
|
pyrosetta-2023.14+release.7132bdc754a-cp310-cp310-linux_x86_64.whl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9f4c30259aae0c53a6e19469a14de861bce5dcb9819c2f329543307264230424
|
3 |
+
size 1643811383
|
setup.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from setuptools import setup, find_packages
|
2 |
+
|
3 |
+
setup(name='rfdiffusion',
|
4 |
+
version='1.1.0',
|
5 |
+
description='RFdiffusion is an open source method for protein structure generation.',
|
6 |
+
author='Rosetta Commons',
|
7 |
+
url='https://github.com/RosettaCommons/RFdiffusion',
|
8 |
+
scripts=["scripts/run_inference.py"],
|
9 |
+
packages=find_packages(),
|
10 |
+
install_requires=['torch', 'se3-transformer'])
|
untitled.py
ADDED
File without changes
|
vfcompat.dll
ADDED
Binary file (66.2 kB). View file
|
|