├── .gitignore ├── LICENSE.txt ├── README.md ├── bioc_json.py ├── json ├── abbr.json ├── collection.json ├── everything-sentence.json └── everything.json ├── test_bioc_json.sh └── xml ├── abbr.xml ├── collection.xml ├── everything-sentence.xml └── everything.xml /.gitignore: -------------------------------------------------------------------------------- 1 | README.html 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/README.md -------------------------------------------------------------------------------- /bioc_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/bioc_json.py -------------------------------------------------------------------------------- /json/abbr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/json/abbr.json -------------------------------------------------------------------------------- /json/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/json/collection.json -------------------------------------------------------------------------------- /json/everything-sentence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/json/everything-sentence.json -------------------------------------------------------------------------------- /json/everything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/json/everything.json -------------------------------------------------------------------------------- /test_bioc_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/test_bioc_json.sh -------------------------------------------------------------------------------- /xml/abbr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/xml/abbr.xml -------------------------------------------------------------------------------- /xml/collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/xml/collection.xml -------------------------------------------------------------------------------- /xml/everything-sentence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/xml/everything-sentence.xml -------------------------------------------------------------------------------- /xml/everything.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncbi-nlp/BioC-JSON/HEAD/xml/everything.xml --------------------------------------------------------------------------------