You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, a "Infinity" values within attribute lists of doubles or integers lead to an error:
"Could not parse the input JSON for updating table because: Non-standard token 'Infinity': enable JsonParser.Feature.ALLOW_NON_NUMERIC_NUMBERS to allow\n at [Source: org.glassfish.jersey.message.internal.EntityInputStream@78b71950; line: 13, column: 24]"
R encodes infinity as Inf. The conversion to JSON appears to be working as it translate these to Infinity. But I suspect the conversion to Java is failing. Java has Double.POSITIVE_INFINITY, but I'm not sure Cytoscape handles this well. I'm not sure in general how we want to handle infinity in Cytoscape.
In the meantime, this means folks coming from Python, R and other scripting languages have to consciously avoid infinity when working with CyREST. Not ideal...
Here's an example that I ran via Swagger to reproduce the error. It assumes you have a network with these GO term nodes in it already...
Currently, a "Infinity" values within attribute lists of doubles or integers lead to an error:
R encodes infinity as
Inf
. The conversion to JSON appears to be working as it translate these toInfinity
. But I suspect the conversion to Java is failing. Java hasDouble.POSITIVE_INFINITY
, but I'm not sure Cytoscape handles this well. I'm not sure in general how we want to handle infinity in Cytoscape.In the meantime, this means folks coming from Python, R and other scripting languages have to consciously avoid infinity when working with CyREST. Not ideal...
Here's an example that I ran via Swagger to reproduce the error. It assumes you have a network with these GO term nodes in it already...
The text was updated successfully, but these errors were encountered: