Skip to content

Latest commit

 

History

History
63 lines (47 loc) · 2.03 KB

README.md

File metadata and controls

63 lines (47 loc) · 2.03 KB

Another Java implementation of BioC

Data structures and code to read/write BioC XML.

BioC

BioC XML format can be used to share text documents and annotations. The development of Java BioC IO API is independent of the particular XML parser used.

Getting started

<dependency>
  <groupId>com.pengyifan.bioc</groupId>
  <artifactId>pengyifan-bioc</artifactId>
  <version>1.0.2</version>
</dependency>

or

<repositories>
    <repository>
        <id>oss-sonatype</id>
        <name>oss-sonatype</name>
        <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>
...
<dependency>
  <groupId>com.pengyifan.bioc</groupId>
  <artifactId>pengyifan-bioc</artifactId>
  <version>1.0.3-SNAPSHOT</version>
</dependency>

Developers

Acknowledgment

  • Don Comeau
  • Rezarta Islamaj Dogan
  • Haibin Liu
  • Thomas C. Wiegers
  • John Wilbur

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