Skip to content

Commit

Permalink
able to delete annotations with provenance anda gene products
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Mar 11, 2020
1 parent b947061 commit 84e1f74
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class RequestHandlingService {
def featurePropertyService
def featureEventService
def goAnnotationService
def geneProductService
def provenanceService
def jsonWebUtilityService
def brokerMessagingTemplate

Expand Down Expand Up @@ -2058,6 +2060,8 @@ class RequestHandlingService {
JSONArray featuresArray = inputObject.getJSONArray(FeatureStringEnum.FEATURES.value)

goAnnotationService.deleteAnnotations(featuresArray)
geneProductService.deleteAnnotations(featuresArray)
provenanceService.deleteAnnotations(featuresArray)

Map<String, List<Feature>> modifiedFeaturesUniqueNames = new HashMap<String, List<Feature>>();
boolean isUpdateOperation = false
Expand Down

0 comments on commit 84e1f74

Please sign in to comment.