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
87740d2f
Commit
87740d2f
authored
Oct 08, 2021
by
Sachin Kadyan
Browse files
Moved all execution wrappers into a separate package directory.
parent
857aa321
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
5 deletions
+4
-5
openfold/features/tools/__init__.py
openfold/features/tools/__init__.py
+0
-0
openfold/features/tools/hhblits.py
openfold/features/tools/hhblits.py
+1
-1
openfold/features/tools/hhsearch.py
openfold/features/tools/hhsearch.py
+1
-1
openfold/features/tools/jackhmmer.py
openfold/features/tools/jackhmmer.py
+1
-1
openfold/features/tools/kalign.py
openfold/features/tools/kalign.py
+1
-2
openfold/features/tools/utils.py
openfold/features/tools/utils.py
+0
-0
No files found.
openfold/features/tools/__init__.py
0 → 100644
View file @
87740d2f
openfold/features/hhblits.py
→
openfold/features/
tools/
hhblits.py
View file @
87740d2f
...
@@ -8,7 +8,7 @@ from typing import Any, Mapping, Optional, Sequence
...
@@ -8,7 +8,7 @@ from typing import Any, Mapping, Optional, Sequence
from
absl
import
logging
from
absl
import
logging
# Internal import (7716).
# Internal import (7716).
from
features
import
utils
from
features
.tools
import
utils
_HHBLITS_DEFAULT_P
=
20
_HHBLITS_DEFAULT_P
=
20
_HHBLITS_DEFAULT_Z
=
500
_HHBLITS_DEFAULT_Z
=
500
...
...
openfold/features/hhsearch.py
→
openfold/features/
tools/
hhsearch.py
View file @
87740d2f
...
@@ -9,7 +9,7 @@ from absl import logging
...
@@ -9,7 +9,7 @@ from absl import logging
# Internal import (7716).
# Internal import (7716).
from
features
import
utils
from
features
.tools
import
utils
class
HHSearch
:
class
HHSearch
:
...
...
openfold/features/jackhmmer.py
→
openfold/features/
tools/
jackhmmer.py
View file @
87740d2f
...
@@ -12,7 +12,7 @@ from absl import logging
...
@@ -12,7 +12,7 @@ from absl import logging
# Internal import (7716).
# Internal import (7716).
from
features
import
utils
from
features
.tools
import
utils
class
Jackhmmer
:
class
Jackhmmer
:
...
...
openfold/features/kalign.py
→
openfold/features/
tools/
kalign.py
View file @
87740d2f
...
@@ -6,8 +6,7 @@ from typing import Sequence
...
@@ -6,8 +6,7 @@ from typing import Sequence
from
absl
import
logging
from
absl
import
logging
from
features.tools
import
utils
from
features
import
utils
def
_to_a3m
(
sequences
:
Sequence
[
str
])
->
str
:
def
_to_a3m
(
sequences
:
Sequence
[
str
])
->
str
:
...
...
openfold/features/utils.py
→
openfold/features/
tools/
utils.py
View file @
87740d2f
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