Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
OpenFold
Commits
e0c7d445
"lib/bindings/vscode:/vscode.git/clone" did not exist on "a32cdad62208c2fb44f7572006461c9a27d30984"
Commit
e0c7d445
authored
Nov 30, 2021
by
Gustaf Ahdritz
Browse files
Fix datatypes in PDB parsing
parent
699f23fd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
openfold/data/data_pipeline.py
openfold/data/data_pipeline.py
+2
-2
No files found.
openfold/data/data_pipeline.py
View file @
e0c7d445
...
...
@@ -147,8 +147,8 @@ def make_protein_features(
all_atom_positions
=
protein_object
.
atom_positions
all_atom_mask
=
protein_object
.
atom_mask
pdb_feats
[
"all_atom_positions"
]
=
all_atom_positions
pdb_feats
[
"all_atom_mask"
]
=
all_atom_mask
pdb_feats
[
"all_atom_positions"
]
=
all_atom_positions
.
astype
(
np
.
float32
)
pdb_feats
[
"all_atom_mask"
]
=
all_atom_mask
.
astype
(
np
.
float32
)
pdb_feats
[
"resolution"
]
=
np
.
array
([
0.
]).
astype
(
np
.
float32
)
pdb_feats
[
"is_distillation"
]
=
np
.
array
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment