We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d13be53 commit 0f27ddaCopy full SHA for 0f27dda
qiita_pet/handlers/software.py
@@ -158,12 +158,10 @@ def _default_parameters_parsing(node):
158
159
wparams = w.parameters
160
161
- # adding nodes without edges
162
- # as a first step if not_used_nodes is not empty we'll confirm that
163
- # nodes/edges are empty; in theory we should never hit this
+ # This case happens when a workflow has 2 commands from the initial
+ # artifact and one of them has more processing after
164
if not_used_nodes and (nodes or edges) and standalone_input is None:
165
- raise ValueError(
166
- 'Error, please check your workflow configuration')
+ standalone_input = edges[0][0]
167
168
# note that this block is similar but not identical to adding connected
169
# nodes
0 commit comments