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
822fda7d
"vscode:/vscode.git/clone" did not exist on "00891eb549fa509593f2d549b4da154a30a52c59"
Commit
822fda7d
authored
Oct 08, 2021
by
Sachin Kadyan
Browse files
Moved all external tool executor classes (which use np) to a different directory.
parent
9337ed13
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
6 additions
and
8 deletions
+6
-8
openfold/features/data_pipeline.py
openfold/features/data_pipeline.py
+1
-1
openfold/features/np/__init__.py
openfold/features/np/__init__.py
+0
-0
openfold/features/np/hhblits.py
openfold/features/np/hhblits.py
+2
-2
openfold/features/np/hhsearch.py
openfold/features/np/hhsearch.py
+1
-2
openfold/features/np/jackhmmer.py
openfold/features/np/jackhmmer.py
+1
-2
openfold/features/np/kalign.py
openfold/features/np/kalign.py
+1
-1
openfold/features/np/utils.py
openfold/features/np/utils.py
+0
-0
No files found.
openfold/features/data_pipeline.py
View file @
822fda7d
...
@@ -4,7 +4,7 @@ import numpy as np
...
@@ -4,7 +4,7 @@ import numpy as np
from
typing
import
Mapping
,
Optional
,
Sequence
from
typing
import
Mapping
,
Optional
,
Sequence
from
openfold.features
import
templates
,
parsers
from
openfold.features
import
templates
,
parsers
from
openfold.features.
tools
import
jackhmmer
,
hhblits
,
hhsearch
from
openfold.features.
np
import
jackhmmer
,
hhblits
,
hhsearch
from
openfold.np
import
residue_constants
from
openfold.np
import
residue_constants
FeatureDict
=
Mapping
[
str
,
np
.
ndarray
]
FeatureDict
=
Mapping
[
str
,
np
.
ndarray
]
...
...
openfold/features/
tools
/__init__.py
→
openfold/features/
np
/__init__.py
View file @
822fda7d
File moved
openfold/features/
tools
/hhblits.py
→
openfold/features/
np
/hhblits.py
View file @
822fda7d
...
@@ -7,8 +7,8 @@ from typing import Any, Mapping, Optional, Sequence
...
@@ -7,8 +7,8 @@ from typing import Any, Mapping, Optional, Sequence
from
absl
import
logging
from
absl
import
logging
# Internal import (7716).
from
openfold.features.
tools
import
utils
from
openfold.features.
np
import
utils
_HHBLITS_DEFAULT_P
=
20
_HHBLITS_DEFAULT_P
=
20
_HHBLITS_DEFAULT_Z
=
500
_HHBLITS_DEFAULT_Z
=
500
...
...
openfold/features/
tools
/hhsearch.py
→
openfold/features/
np
/hhsearch.py
View file @
822fda7d
...
@@ -8,8 +8,7 @@ from typing import Sequence
...
@@ -8,8 +8,7 @@ from typing import Sequence
from
absl
import
logging
from
absl
import
logging
# Internal import (7716).
from
openfold.features.np
import
utils
from
openfold.features.tools
import
utils
class
HHSearch
:
class
HHSearch
:
...
...
openfold/features/
tools
/jackhmmer.py
→
openfold/features/
np
/jackhmmer.py
View file @
822fda7d
...
@@ -11,8 +11,7 @@ from urllib import request
...
@@ -11,8 +11,7 @@ from urllib import request
from
absl
import
logging
from
absl
import
logging
# Internal import (7716).
from
openfold.features.np
import
utils
from
openfold.features.tools
import
utils
class
Jackhmmer
:
class
Jackhmmer
:
...
...
openfold/features/
tools
/kalign.py
→
openfold/features/
np
/kalign.py
View file @
822fda7d
...
@@ -6,7 +6,7 @@ from typing import Sequence
...
@@ -6,7 +6,7 @@ from typing import Sequence
from
absl
import
logging
from
absl
import
logging
from
openfold.features.
tools
import
utils
from
openfold.features.
np
import
utils
def
_to_a3m
(
sequences
:
Sequence
[
str
])
->
str
:
def
_to_a3m
(
sequences
:
Sequence
[
str
])
->
str
:
...
...
openfold/features/
tools
/utils.py
→
openfold/features/
np
/utils.py
View file @
822fda7d
File moved
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