@@ -100,6 +100,7 @@ public AnalysisStoredResult analyse(UserData userData, Boolean toHuman, Boolean
100
100
}
101
101
102
102
public AnalysisStoredResult compareSpecies (Long from , Long to ){
103
+ boolean includeInteractors = false ;
103
104
SpeciesNode speciesFrom = SpeciesNodeFactory .getSpeciesNode (from , "" );
104
105
SpeciesNode speciesTo = SpeciesNodeFactory .getSpeciesNode (to , "" );
105
106
@@ -119,8 +120,8 @@ public AnalysisStoredResult compareSpecies(Long from, Long to){
119
120
try {
120
121
UserData ud = speciesComparison .getSyntheticUserData (speciesTo );
121
122
String token = Tokenizer .getOrCreateToken (fakeMD5 , human , false );
122
- AnalysisSummary summary = new AnalysisSummary (token , null , null , null , Type .SPECIES_COMPARISON , to );
123
- return analyse (summary , ud , speciesFrom , null , reportParams );
123
+ AnalysisSummary summary = new AnalysisSummary (token , null , includeInteractors , null , Type .SPECIES_COMPARISON , to );
124
+ return analyse (summary , ud , speciesFrom , false , reportParams );
124
125
} catch (SpeciesNotFoundException e ) {
125
126
throw new ResourceNotFoundException ();
126
127
}
0 commit comments