@@ -226,17 +226,18 @@ else if(scope == ONLY_EDGE_WIDTH) {
226
226
}
227
227
else if (scope == ONLY_CHARTS ) {
228
228
setNodeChartDefaults (vs , chartType );
229
- setNodeShapes (vs , options , chartType );
230
- setNodeSize (vs , options , chartType );
229
+ // setNodeShapes(vs, options, chartType);
230
+ // setNodeSize(vs, options, chartType);
231
231
setNodeChart (vs , chart );
232
232
}
233
233
else if (scope == ONLY_DATASETS ) {
234
+ // commented out some parts of the style because of https://github.com/BaderLab/EnrichmentMapApp/issues/503
234
235
setEdgePaint (vs , options );
235
236
setNodeChartDefaults (vs , chartType );
236
- setNodeShapes (vs , options , chartType );
237
- setNodeSize (vs , options , chartType );
237
+ // setNodeShapes(vs, options, chartType);
238
+ // setNodeSize(vs, options, chartType);
238
239
setNodeChart (vs , chart );
239
- setNodeColors (vs , options );
240
+ // setNodeColors(vs, options);
240
241
}
241
242
else if (scope == PUBLICATION_READY ) {
242
243
if (options .isPublicationReady ()) {
@@ -601,7 +602,7 @@ private void setNodeSize(VisualStyle vs, EMStyleOptions options, ChartType chart
601
602
602
603
// These values used to be 10 and 474 and were changed in EM 3.3.1
603
604
// See GitHub issue https://github.com/BaderLab/EnrichmentMapApp/issues/422
604
- int val0 = 2 , val1 = 500 ;
605
+ final int val0 = 2 , val1 = 500 ;
605
606
606
607
VisualMappingFunction <?, Double > oldMapping = vs .getVisualMappingFunction (NODE_SIZE );
607
608
0 commit comments