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
JSON Lines would help users parsing the Exomiser JSON output as each gene result would be written a single line, enabling easier searching and return of results.
This sounds like it would help a lot. Some of my analysis scripts take
forever to run or even fail as they are trying to read the whole JSON
output into a single object.
JSON Lines would help users parsing the Exomiser JSON output as each gene result would be written a single line, enabling easier searching and return of results.
https://jsonlines.org/
This can be achieved using jq:
or better for really large files you can using streaming:
But would likely be more useful as native output:
https://cowtowncoder.medium.com/line-delimited-json-with-jackson-69c9e4cb6c00
The text was updated successfully, but these errors were encountered: