Last active
January 5, 2017 15:26
-
-
Save iimog/226b05d5067c0b5640100d40c47bc320 to your computer and use it in GitHub Desktop.
Minimal biom file to demonstrate [a bug](https://github.com/PitchInteractiveInc/Phinch/issues/69) in Phinch.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "No Table ID", | |
"format": "Biological Observation Matrix 2.1.0", | |
"format_url": "http://biom-format.org", | |
"matrix_type": "sparse", | |
"generated_by": "BIOM-Format 2.1", | |
"date": "2016-05-03T08:13:41.848780", | |
"type": "OTU table", | |
"matrix_element_type": "float", | |
"shape": [3, 3], | |
"data": [[0,0,100],[1,1,100],[2,2,100]], | |
"rows": [ | |
{"id": "OTU_1", "metadata": {"taxonomy": ["k__animalia"]}}, | |
{"id": "OTU_2", "metadata": {"taxonomy": ["k__fungi"]}}, | |
{"id": "OTU_3", "metadata": {"taxonomy": ["k__plantae"]}} | |
], | |
"columns": [ | |
{"id": "Sample_1", "metadata": {"phinchID": "animalia"}}, | |
{"id": "Sample_2", "metadata": {"phinchID": "fungi"}}, | |
{"id": "Sample_3", "metadata": {"phinchID": "plantae"}} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment