From 6d072f85d8132323ad7297b111ec14b5f743d6af Mon Sep 17 00:00:00 2001 From: Colin Brislawn Date: Thu, 19 May 2016 11:31:19 -0700 Subject: [PATCH] add JSON conversion to README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 8f59602..d8f67aa 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,12 @@ Second, add your sample metadata to your .biom file. Where your input file (-i) ```Python biom add-metadata -i otu_table_mc2_w_tax.biom -o otu_table_mc2_w_tax_and_metadata.biom -m sample_metadata_mapping_file.txt ``` + +Newer versions of qiime use the HDF5 biom format, while Phinch currently supports the JSON biom format only. You may need to convert your .biom file to the JSON format using this command: +```Python +biom convert -i otu_table.biom -o otu_table_json.biom --table-type="OTU table" --to-json +``` + ## Run the repo locally Phinch is written in CoffeeScript (http://coffeescript.org/), a programming language that compiles into JavaScript. To install Phinch locally, you will need to install CoffeeScript and compile the code, as follows: ```