Skip to content

Commit

Permalink
fixes #2540
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Dec 7, 2020
1 parent 9e38284 commit 5db4e4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ Features
- Add option to suppress calculation of non-canonical splice site [2509](https://github.com/GMOD/Apollo/issues/2509).
- Added the ability to sync the gene and transcript name with the click of a button [2519](https://github.com/GMOD/Apollo/issues/2519).
- Added organism and species to menus [2537](https://github.com/GMOD/Apollo/pull/2537).
- Added UUID lookup and link [2539](https://github.com/GMOD/Apollo/pull/2539/)
- Added UUID lookup and link [2539](https://github.com/GMOD/Apollo/pull/2539/).

Bug Fixes

- BLAT search should send annotation creation results to the proper reference sequence [2514](https://github.com/GMOD/Apollo/issues/2514).
- Properly handle Shine_Dalgarno sequences when added as part of gene model [2515](https://github.com/GMOD/Apollo/issues/2515).
- Now able to resize terminators by dragging [2521](https://github.com/GMOD/Apollo/issues/2521).
- Added missing GO annotations [2535](https://github.com/GMOD/Apollo/pull/2535)
- Added missing GO annotations [2535](https://github.com/GMOD/Apollo/pull/2535).
- findAllOrganism webserver failed when user is not an admin and no session is present [2540](https://github.com/GMOD/Apollo/issues/2540).

Infrastructure Changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,7 @@ class OrganismController {
if (permissionService.hasGlobalPermissions(requestObject, GlobalPermissionEnum.ADMIN)) {
organismList = showObsolete ? Organism.all : Organism.findAllByObsolete(false)
} else {
organismList = permissionService.getOrganismsForCurrentUser(requestObject).filter() { o -> !o.obsolete }
organismList = permissionService.getOrganismsForCurrentUser(requestObject).findAll() { o -> !o.obsolete }
}
}

Expand Down

0 comments on commit 5db4e4d

Please sign in to comment.