-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix add_default_workflow #3446
fix add_default_workflow #3446
Conversation
FWIW, this was tested in qiita via a terminal and it works as expected. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ty for your patience! I have one concern.
@@ -871,7 +881,7 @@ def _get_predecessors(workflow, node): | |||
'artifact transformation'] | |||
merging_schemes = { | |||
qdb.archive.Archive.get_merging_scheme_from_job(j): { | |||
x: y.id for x, y in j.outputs.items()} | |||
x: str(y.id) for x, y in j.outputs.items()} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The conversion to string for y.id is also not obvious here. Perhaps a comment as to why it's necessary would be appropriate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved.
No description provided.