Skip to main content

BioC data structures and encoder/decoder for Python

Project description

BioC XML format can be used to share text documents and annotations.

bioc exposes an API familiar to users of the standard library marshal and pickle modules.

Development of bioc happens on GitHub: https://github.com/yfpeng/bioc

Getting started

Installing bioc

$ pip install --pre bioc

Encoding the BioC collection object collection:

import bioc
# Serialize ``collection`` to a BioC formatted ``str``.
bioc.dumps(collection)

# Serialize ``collection`` as a BioC formatted stream to ``fp``.
with open(filename, 'w') as fp
    bioc.dump(collection, fp)

Compact encoding:

import bioc
bioc.dumps(collection, pretty_print=False)

Incremental BioC serialisation:

import bioc
with bioc.iterwrite(filename, collection) as writer:
    for document in collection.documents:
        writer.writedocument(document)

Decoding the BioC XML file:

import json
# Deserialize ``s`` to a BioC collection object.
collection = json.loads(s)

# Deserialize ``fp`` to a BioC collection object.
with open(filename, 'r') as fp:
    bioc.load(fp)

Incrementally decoding the BioC XML file:

import bioc
with bioc.iterparse(filename) as parser:
    collection_info = parser.get_collection_info()
    for document in parser:
        # process document
        ...

get_collection_info can be called after the construction of the iterparse anytime.

Together with Python coroutines, this can be used to generate BioC XML in an asynchronous, non-blocking fashion.

import bioc
with bioc.iterparse(filename) as parser:
    with bioc.iterwrite(dst, parser.get_collection_info()) as writer:
        for document in parser:
            # modify the document
            ...
            writer.writedocument(document)

Requirements

Developers

Acknowledgment

Webpage

The official BioC webpage is available with all up-to-date instructions, code, and corpora in the BioC format, and other research on, based on and related to BioC.

Reference

  • Comeau,D.C., Doğan,R.I., Ciccarese,P., Cohen,K.B., Krallinger,M., Leitner,F., Lu,Z., Peng,Y., Rinaldi,F., Torii,M., Valencia,V., Verspoor,K., Wiegers,T.C., Wu,C.H., Wilbur,W.J. (2013) BioC: A minimalist approach to interoperability for biomedical text processing. Database: The Journal of Biological Databases and Curation.

  • Peng,Y., Tudor,C., Torii,M., Wu,C.H., Vijay-Shanker,K. (2014) iSimp in BioC standard format: Enhancing the interoperability of a sentence simplification system. Database: The Journal of Biological Databases and Curation.

  • Marques,M., Rinaldi,F. (2012) PyBioC: a python implementation of the BioC core. In Proceedings of BioCreative IV workshop.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bioc-1.0.dev29-py2-none-any.whl (13.0 kB view details)

Uploaded Python 2

File details

Details for the file bioc-1.0.dev29-py2-none-any.whl.

File metadata

File hashes

Hashes for bioc-1.0.dev29-py2-none-any.whl
Algorithm Hash digest
SHA256 74e3bae138929f166b572aaea54ee03c25659011cfc5536f3b8ba0c8065aa12e
MD5 72f06c048a704848088e22a3a7347bd1
BLAKE2b-256 47f9a8b87cfcaf966d5d4eb5a50432d16b18050d2f53980675c3489f168bdcb7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page