@@ -534,19 +534,17 @@ public String findDesignByGenerationId(@PathwayAnalysisGenerationId final Long i
534
534
return entity .getDesign ();
535
535
}
536
536
537
- @ Override
538
- public void assignTag (Integer id , int tagId ) {
539
- PathwayAnalysisEntity entity = getById (id );
540
- checkOwnerOrAdminOrGranted (entity );
541
- assignTag (entity , tagId );
542
- }
543
-
544
- @ Override
545
- public void unassignTag (Integer id , int tagId ) {
546
- PathwayAnalysisEntity entity = getById (id );
547
- checkOwnerOrAdminOrGranted (entity );
548
- unassignTag (entity , tagId );
549
- }
537
+ @ Override
538
+ public void assignTag (Integer id , int tagId ) {
539
+ PathwayAnalysisEntity entity = getById (id );
540
+ assignTag (entity , tagId );
541
+ }
542
+
543
+ @ Override
544
+ public void unassignTag (Integer id , int tagId ) {
545
+ PathwayAnalysisEntity entity = getById (id );
546
+ unassignTag (entity , tagId );
547
+ }
550
548
551
549
@ Override
552
550
public List <VersionDTO > getVersions (long id ) {
@@ -657,7 +655,7 @@ private PathwayAnalysisResult queryGenerationResults(Source source, Long generat
657
655
new String []{GENERATION_ID },
658
656
new Object []{generationId }
659
657
);
660
- Map <Integer , Map <String , Integer >> pathwayResults =
658
+ Map <Integer , Map <String , Integer >> pathwayResults =
661
659
getSourceJdbcTemplate (source ).query (pathwayResultsPsr .getSql (), pathwayResultsPsr .getOrderedParams (), pathwayExtractor );
662
660
663
661
cohortStats .stream ().forEach ((cp ) -> {
0 commit comments