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
FastFold
Commits
9ab281fe
Unverified
Commit
9ab281fe
authored
Sep 15, 2022
by
Fazzie-Maqianli
Committed by
GitHub
Sep 15, 2022
Browse files
fix data workflow name bug (#68)
parent
43e9bd0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
fastfold/workflow/template/fastfold_data_workflow.py
fastfold/workflow/template/fastfold_data_workflow.py
+3
-3
No files found.
fastfold/workflow/template/fastfold_data_workflow.py
View file @
9ab281fe
...
@@ -161,15 +161,15 @@ class FastFoldDataWorkFlow:
...
@@ -161,15 +161,15 @@ class FastFoldDataWorkFlow:
# Run HHBlits on BFD
# Run HHBlits on BFD
bfd_out_path
=
os
.
path
.
join
(
alignment_dir
,
"bfd_uniclust_hits.a3m"
)
bfd_out_path
=
os
.
path
.
join
(
alignment_dir
,
"bfd_uniclust_hits.a3m"
)
# generate workflow for STEP4
# generate workflow for STEP4
b
d
f_node
=
self
.
hhblits_bfd_factory
.
gen_node
(
fasta_path
,
bfd_out_path
)
bf
d
_node
=
self
.
hhblits_bfd_factory
.
gen_node
(
fasta_path
,
bfd_out_path
)
else
:
else
:
# Run Jackhmmer on small_bfd
# Run Jackhmmer on small_bfd
bfd_out_path
=
os
.
path
.
join
(
alignment_dir
,
"bfd_uniclust_hits.a3m"
)
bfd_out_path
=
os
.
path
.
join
(
alignment_dir
,
"bfd_uniclust_hits.a3m"
)
# generate workflow for STEP4_2
# generate workflow for STEP4_2
b
d
f_node
=
self
.
jackhmmer_small_bfd_factory
.
gen_node
(
fasta_path
,
bfd_out_path
)
bf
d
_node
=
self
.
jackhmmer_small_bfd_factory
.
gen_node
(
fasta_path
,
bfd_out_path
)
# run workflow
# run workflow
batch_run
(
workflow_id
=
workflow_id
,
dags
=
[
hhs_node
,
mgnify_node
,
b
d
f_node
])
batch_run
(
workflow_id
=
workflow_id
,
dags
=
[
hhs_node
,
mgnify_node
,
bf
d
_node
])
return
return
\ No newline at end of file
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