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
bc35ef17
"git@developer.sourcefind.cn:OpenDAS/openfold.git" did not exist on "6c5cd945bd9dec3282ab8f472c3eefeab0f8efb3"
Commit
bc35ef17
authored
Aug 03, 2023
by
Geoffrey Yu
Browse files
fixed the confilcts in reading alignment files
parent
43bab151
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
openfold/data/data_pipeline.py
openfold/data/data_pipeline.py
+1
-2
No files found.
openfold/data/data_pipeline.py
View file @
bc35ef17
...
@@ -831,9 +831,8 @@ class DataPipeline:
...
@@ -831,9 +831,8 @@ class DataPipeline:
with
open
(
path
,
"r"
)
as
fp
:
with
open
(
path
,
"r"
)
as
fp
:
hits
=
parsers
.
parse_hhr
(
fp
.
read
())
hits
=
parsers
.
parse_hhr
(
fp
.
read
())
all_hits
[
f
]
=
hits
all_hits
[
f
]
=
hits
fp
.
close
()
elif
(
ext
==
'.sto'
)
and
(
f
.
startswith
(
"
pdb
"
)):
elif
(
ext
==
'.sto'
)
and
(
f
.
startswith
(
"
hmm
"
)):
with
open
(
path
,
"r"
)
as
fp
:
with
open
(
path
,
"r"
)
as
fp
:
hits
=
parsers
.
parse_hmmsearch_sto
(
fp
.
read
(),
input_sequence
)
hits
=
parsers
.
parse_hmmsearch_sto
(
fp
.
read
(),
input_sequence
)
all_hits
[
f
]
=
hits
all_hits
[
f
]
=
hits
...
...
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