Skip to content

Commit 5f00fd1

Browse files
committed
reorder param docs to match signature
1 parent 7e64db9 commit 5f00fd1

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

bioblend/galaxy/workflows/__init__.py

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -363,20 +363,6 @@ def invoke_workflow(
363363
:param parameters: A mapping of non-datasets tool parameters (see below)
364364
A synonym to the "params" dict above. Both cannot be provided.
365365
366-
:type preferred_object_store_id: str
367-
:param preferred_object_store_id: The object store id where you want all
368-
outputs of this workflow run be stored.
369-
370-
:type preferred_intermediate_object_store_id: str
371-
:param preferred_intermediate_object_store_id: The object store id where
372-
you want the intermediate outputs of this workflow run to be stored.
373-
Cannot be set if ``preferred_object_store_id`` is set.
374-
375-
:type preferred_outputs_object_store_id: str
376-
:param preferred_outputs_object_store_id: The object store id where
377-
you want the priamry outputs of this workflow run to be stored.
378-
Cannot be set if ``preferred_object_store_id`` is set.
379-
380366
:type history_id: str
381367
:param history_id: The encoded history ID where to store the workflow
382368
output. Alternatively, ``history_name`` may be specified to create a
@@ -426,15 +412,29 @@ def invoke_workflow(
426412
:param use_cached_job: Whether to use cached jobs for the workflow
427413
invocation.
428414
429-
:type resource_params: dict
430-
:param resource_params: A dictionary containing the resource parameters
431-
to be used for this workflow run.
432-
433415
:type instance: bool
434416
:param instance: treat ``workflow_id`` as a Workflow ID if True,
435417
otherwise treat it as a StoredWorkflow ID (the default). This
436418
parameter works only on Galaxy 21.05 or later.
437419
420+
:type resource_params: dict
421+
:param resource_params: A dictionary containing the resource parameters
422+
to be used for this workflow run.
423+
424+
:type preferred_object_store_id: str
425+
:param preferred_object_store_id: The object store id where you want all
426+
outputs of this workflow run be stored.
427+
428+
:type preferred_intermediate_object_store_id: str
429+
:param preferred_intermediate_object_store_id: The object store id where
430+
you want the intermediate outputs of this workflow run to be stored.
431+
Cannot be set if ``preferred_object_store_id`` is set.
432+
433+
:type preferred_outputs_object_store_id: str
434+
:param preferred_outputs_object_store_id: The object store id where
435+
you want the priamry outputs of this workflow run to be stored.
436+
Cannot be set if ``preferred_object_store_id`` is set.
437+
438438
:rtype: dict
439439
:return: A dict containing the workflow invocation describing the
440440
scheduling of the workflow. For example::

0 commit comments

Comments
 (0)