Skip to content

Commit

Permalink
Merge pull request #1402 from apetkau/hotfix/irida-newer-galaxy
Browse files Browse the repository at this point in the history
Hotfix/irida newer galaxy
  • Loading branch information
ericenns authored Nov 3, 2022
2 parents c87efff + 8d4d72e commit 8af8892
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* [UI]: Fixed bug preventing the removal of locked samples within a project. See [PR 1396](https://github.com/phac-nml/irida/pull/1396)
* [Developer/UI]: Fixed bug preventing managers from sharing project samples. See [PR 1398](https://github.com/phac-nml/irida/pull/1398)
* [UI]: Fixed bug where a sample added to the cart from the sample detail viewer still had a `Add to Cart` button if the viewer was closed and relaunched. See [PR 1397](https://github.com/phac-nml/irida/pull/1397)
* [Galaxy]: Fixed missing "deferred" state found in the Galaxy API but not in the IRIDA API for getting status of Galaxy histories. See [PR 1402](https://github.com/phac-nml/irida/pull/1402).

## [22.09.1] - 2022/10/21
* [UI]: Fixed when sharing or exporting sample on the project sample page, and other minor bugs. See [PR 1382](https://github.com/phac-nml/irida/pull/1382)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
/**
* Defines the state of a workflow.
* Based off of states defined within Galaxy.
* @see <a href="https://bitbucket.org/galaxy/galaxy-dist/src/097bbb3b7d3246faaa5188a1fc2a79b01630025c/lib/galaxy/model/__init__.py#cl-1316">Galaxy Dataset Model</a>
* @see <a href="https://bitbucket.org/galaxy/galaxy-dist/src/097bbb3b7d3246faaa5188a1fc2a79b01630025c/lib/galaxy/web/base/controller.py#cl-429">Galaxy API</a>
* @see <a href="https://github.com/galaxyproject/galaxy/blob/21375c6b821b85863a6c95f4ed1ebd6a217495f1/lib/galaxy/model/__init__.py#L3410-L3427">Galaxy Dataset Model</a>
* @see <a href="https://github.com/galaxyproject/galaxy/blob/21375c6b821b85863a6c95f4ed1ebd6a217495f1/lib/galaxy/webapps/galaxy/api/histories.py#L181-L192">Galaxy API show_history</a>
* @see <a href="https://github.com/jmchilton/blend4j/blob/c5e3f157d402950a843d4e395e1daf889945d587/src/main/java/com/github/jmchilton/blend4j/galaxy/beans/HistoryDetails.java">HistoryDetails in blend4j</a>
*
*/
Expand All @@ -30,6 +30,7 @@ public enum GalaxyWorkflowState {
PAUSED("paused"),
SETTING_METADATA("setting_metadata"),
FAILED_METADATA("failed_metadata"),
DEFERRED("deferred"),
RESUBMITTED("resubmitted");

private static Map<String, GalaxyWorkflowState> stateMap = new HashMap<>();
Expand Down Expand Up @@ -66,4 +67,4 @@ public static GalaxyWorkflowState stringToState(String stateString) {
public String toString() {
return stateString;
}
}
}

0 comments on commit 8af8892

Please sign in to comment.