forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement {src: "url"} on the new request API...
- Loading branch information
Showing
21 changed files
with
580 additions
and
100 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@startuml | ||
'!include plantuml_options.txt | ||
queue TaskQueue as queue | ||
participant "queue_jobs Task" as task | ||
participant "JobSubmitter.queue_jobs" as queue_jobs | ||
participant "JobSubmitter.dereference" as dereference | ||
participant "materialize Task" as materialize_task | ||
participant "Tool.handle_input_async" as handle_input | ||
participant "expand_meta_parameters_async" as expand | ||
participant "ToolAction.execute" as tool_action | ||
|
||
queue -> task : <Launch Task> | ||
task -> queue_jobs : QueueJobs pydantic model | ||
queue_jobs -> dereference : RequestInternalToolState | ||
dereference -> queue_jobs : RequestInternalDereferencedToolState | ||
queue_jobs -> materialize_task : HDA (with state deferred) | ||
materialize_task -> queue_jobs : return when state is okay | ||
queue_jobs -> handle_input : RequestInternalDereferencedToolState | ||
handle_input -> expand : RequestInternalDereferencedToolState | ||
expand -> handle_input : JobInternalToolState[] | ||
loop over expanded job tool states | ||
handle_input -> tool_action : | ||
tool_action -> handle_input : A Galaxy Job | ||
end | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.