RawrUniversal / xerial

Automatically exported from code.google.com/p/xerial
0 stars 1 forks source link

Extend the Silk format to allow intermediate nodes between tab-separated data #31

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Please describe a summary of the new feature (in a paragraph):

It would be nice if Silk format supports intermediate data between
tab-separated data description. For example, 

-user(id, name)|
1 leo
2 yui
 -note: my son
3 apple

This data description corresponds to the following JSON:

{"user": [
 {"id":1, "name":"leo"},
 {"id":2, "name":"yui", "note":"my son"},
 {"id":3, "name":"apple"}
]}

Please provide any additional information below:

Original issue reported on code.google.com by taroleo on 14 Sep 2009 at 6:33

GoogleCodeExporter commented 8 years ago

Original comment by taroleo on 26 Nov 2009 at 1:25