Skip to content

OpenEvalProject/jats

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jats - JATS XML Parser

A Python CLI tool for converting JATS (Journal Article Tag Suite) XML files to Markdown format, with support for extracting peer review comments and author responses.

Overview

jats parses JATS XML files from scientific publishers (bioRxiv, eLife, etc.) and converts them to clean, readable Markdown. It's particularly useful for working with preprint manuscripts and their associated peer review materials.

Key Features

  • Convert JATS XML articles to Markdown
  • Extract peer review comments and author responses from multi-article XML files
  • Support for bioRxiv manifest files (optional metadata)
  • Organize reviews and responses by revision round
  • Simple CLI interface with stdout or file output

Installation

Prerequisites

  • Python >=3.10

Install with uv (recommended)

cd jats
uv pip install -e .

Install with pip

cd jats
pip install -e .

Usage

Basic Conversion

Convert a JATS XML file to Markdown:

# Output to stdout
jats convert article.xml

# Output to file
jats convert article.xml -o article.md

# With bioRxiv manifest file (optional)
jats convert article.xml -m manifest.xml -o article.md

Extract Peer Reviews

Extract peer review comments and author responses from JATS XML files that include sub-articles (common in eLife and some bioRxiv articles):

# Extract reviews and responses to separate files
jats convert article.xml -o article.md -r output_base

# Creates:
# - output_base_reviews.md    (all review comments, organized by round)
# - output_base_responses.md  (all author responses, organized by round)

The -r flag extracts sub-articles with the following JATS article types:

  • Review comments: decision-letter, referee-report, editor-report, reviewer-report
  • Author responses: author-comment, reply

Reviews and responses are automatically organized by revision round using JATS4R peer-review-revision-round metadata (defaults to round 1 if not specified).

Examples

Convert bioRxiv Preprint

jats convert 2023.01.01.12345.xml -o paper.md

Convert eLife Article with Peer Reviews

# Convert main article and extract reviews
jats convert elife-12345-v1.xml -o paper.md -r elife-12345-v1

# Output files:
# - paper.md                        (main article)
# - elife-12345-v1_reviews.md      (peer review comments)
# - elife-12345-v1_responses.md    (author responses)

bioRxiv with Manifest

# manifest.xml provides additional metadata
jats convert article.xml -m manifest.xml -o article.md

Input File Format

jats expects JATS XML files following the JATS (Journal Article Tag Suite) standard. This format is used by:

  • bioRxiv and medRxiv preprint servers
  • eLife journal
  • PubMed Central (PMC)
  • Many other scientific publishers

JATS XML Structure

A typical JATS XML file contains:

  • <front>: Article metadata (title, authors, abstract)
  • <body>: Main article content organized in sections
  • <back>: References, acknowledgments, etc.
  • <sub-article>: Optional peer review materials (eLife, some bioRxiv)

Manifest Files (bioRxiv)

bioRxiv articles may include an optional manifest.xml file that provides:

  • Collection/category information
  • Version history
  • Links to published versions
  • Peer review URLs

Output Format

jats converts JATS XML to clean, readable Markdown with:

  • Article title as H1 heading
  • Authors with affiliations
  • Abstract
  • Body sections with appropriate heading levels
  • Inline figures with captions
  • References (when available)

Peer Review Output

When using -r, peer review materials are extracted to separate Markdown files:

Reviews file (*_reviews.md):

# Revision Round 1

## Reviewer 1

[Review content...]

---

## Reviewer 2

[Review content...]

Responses file (*_responses.md):

# Revision Round 1

## Author Response

[Response content...]

Development

Running Tests

# Install development dependencies
uv pip install -e ".[dev]"

# Run tests
pytest

Project Structure

jats/
├── jats/
│   ├── __init__.py
│   ├── main.py         # CLI entry point
│   ├── parser.py       # JATS XML parsing
│   ├── converter.py    # Markdown conversion
│   └── models.py       # Data models
├── tests/
│   ├── test_*.py       # Test files
│   └── *.xml           # Test fixtures
├── pyproject.toml      # Package configuration
└── README.md

See DEVELOPMENT.md for detailed development documentation and code style guide.

Known Limitations and Future Work

Source Data Files

Currently, <supplementary-material> elements (such as source data files for figures) are excluded from the markdown output. These typically appear as:

<supplementary-material id="fig6sdata1">
  <label>Figure 6—source data 1.</label>
  <caption>
    <title>PDF files containing original western blots...</title>
  </caption>
  <media mimetype="application" mime-subtype="zip" xlink:href="..."/>
</supplementary-material>

Future Enhancement: Add support for extracting and linking to source data files, including:

  • Source data download links
  • Separate source data manifest
  • Integration with figure references

JATS Resources

License

MIT

Support

For issues or questions, please open an issue on GitHub.

About

Python CLI tool for converting JATS (Journal Article Tag Suite) XML files to Markdown.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages