Skip to main content

Tools for working with OrthoXML files.

Project description

orthoxml-tools

Tools for working with OrthoXML files.

What is OrthoXML Format?

OrthoXML is a standard for sharing and exchanging orthology predictions. OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format.
OrthoXML

Installation

pip install orthoxml-tools

Usage

orthoxml-tools [options] <subcommand> [options]

Subcommands

validate

Validate an OrthoXML file against the schema version specified in the file itself.

orthoxml-tools validate --infile path/to/file.orthoxml

Options:

  • --infile <file>: Specify the input file (required).

Example:

orthoxml-tools validate --infile examples/data/ex1.orthoxml

stats

Display basic statistics.

orthoxml-tools stats --infile path/to/file.orthoxml [--outfile <file>] 

Options:

  • --infile <file>: Specify the input file (required).

Example:

orthoxml-tools stats --infile examples/data/ex1.orthoxml

gene-stats

Display statistics for gene count per taxon.

orthoxml-tools gene-stats --infile path/to/file.orthoxml [--outfile <file>]

Options:

  • --infile <file>: Specify the input file (required).
  • --outfile <file>: Write stats to a CSV file.

Example:

orthoxml-tools gene-stats --infile examples/data/ex1.orthoxml --outfile gene_stats.csv

filter

Filter orthology groups based on CompletenessScore score and a threshold and strategy.

orthoxml-tools filter --infile path/to/file.orthoxml --threshold <value> --strategy <cascade-remove|extract|reparent> --outfile <file>

Options:

  • --infile <file>: Specify the input file. (required)
  • --threshold <value>: Set the threshold for filtering. value below this will be removed. (required)
  • --strategy <cascade-remove|extract|reparent>: Choose the filtering strategy (default is cascade-remove).
  • --outfile <file>: Save output to a file. if not specified, the output will be printed to stdout. (required)

Examples:

 orthoxml-tools filter --infile examples/data/sample-for-filter.orthoxml --score-name CompletenessScore --strategy top-down --threshold 0.24 --outfile tests_output/filtered_stream.orthoxml

taxonomy

Print a human-readable taxonomy tree from the OrthoXML file.

orthoxml-tools taxonomy --infile path/to/file.orthoxml

Example:

>>> orthoxml-tools taxonomy --infile examples/data/ex3-int-taxon.orthoxml
Root
├── Mus musculus
└── Primates
    ├── Homo sapiens
    └── Pan troglodytes

export-pairs

Export pairs (orthologs or paralogs) in TSV form, with configurable chunking and buffering.

orthoxml-tools export-pairs <ortho|para> \
    --infile <file> \
    --outfile <file> \
    [--id <tag>] \
    [--chunk-size <number>] \
    [--buffer-size <bytes>]

Positional arguments: <ortho|para> Choose which pair type to export:

  • ortho: orthologous pairs
  • para: paralogous pairs

Options:

  • --infile <file>: Input OrthoXML file (required).
  • --outfile <file>: Write output CSV to this file (required).
  • --id <tag>: Gene attribute to use as identifier (default: id).
  • --chunk-size <number>: Number of pairs to process per chunk (default: 20_000).
  • --buffer-size <bytes>: I/O buffer size in bytes (default: 4194304).

Examples:

# [5.1] Export ortholog pairs with default chunk & buffer sizes
orthoxml-tools export-pairs ortho \
    --infile examples/data/ex1-int-taxon.orthoxml \
    --outfile orthos.csv

# [5.2] Export paralog pairs with default chunk & buffer sizes
orthoxml-tools export-pairs para \
    --infile examples/data/ex1-int-taxon.orthoxml \
    --outfile paras.csv

# [5.3] Export ortholog pairs using `geneId` as the identifier column
orthoxml-tools export-pairs ortho \
    --infile examples/data/ex1-int-taxon.orthoxml \
    --outfile orthos_geneid.csv \
    --id geneId

# [5.4] Export ortholog pairs with custom chunk and buffer sizes
orthoxml-tools export-pairs ortho \
    --infile examples/data/ex1-int-taxon.orthoxml \
    --outfile orthos_custom.csv \
    --chunk-size 5000 \
    --buffer-size 1048576

export-ogs

Export Orthologous Groups as TSV file.

orthoxml-tools export-ogs --infile path/to/file.orthoxml --outfile path/to/output.tsv [--id <tag>]

Options:

  • --infile <file>: Input OrthoXML file (required).
  • --outfile <file>: Write output CSV to this file (required).
  • --id <tag>: Gene attribute to use as identifier (default: id).

Examples:

orthoxml-tools export-ogs --infile examples/data/sample-for-og.orthoxml --outfile tests_output/ogs.tsv --id protId

split

Split the tree into multiple trees based on rootHOGs.

orthoxml-tools split --infile path/to/file.orthoxml --outdir path/to/output_folder

Options:

  • --infile <file>: Specify the input OrthoXML file (required).
  • --outdir <folder>: Specify the output folder where the trees will be saved.

Examples:

orthoxml-tools split --infile examples/data/ex4-int-taxon-multiple-rhogs.orthoxml --outdir tests_output/splits

File Conversions

OrthoXML to Newick Tree (NHX)

Convert OrthoXML to Newick (NHX) format.

orthoxml-tools to-nhx --infile path/to/file.orthoxml --outdir path/to/output_folder --xref-tag [geneId,protId,...]    

Options:

  • --infile <file>: Specify the input OrthoXML file (required).
  • --outdir <folder>: Specify the output folder where the NHX files will be saved (required).
  • --xref-tag <tag>: Specify the attribute of the <gene> element to use as the label for the leaves. Default is protId.

Example:

orthoxml-tools to-nhx --infile examples/data/ex4-int-taxon-multiple-rhogs.orthoxml --outdir ./tests_output/trees --xref-tag geneId

Newick Tree (NHX) to OrthoXML

Convert Newick (NHX) format to OrthoXML.

orthoxml-tools from-nhx --infile path/to/file.nhx --outfile path/to/file.orthoxml

Options:

  • --infile <file>: Specify the input nhx file or files. (at least one file is required).
    • You can specify multiple files by providing them as a space-separated list.
    • If you provide multiple files, they will be combined into a single OrthoXML output.
  • --outfile <folder>: Specify the output OrthoXML file (required).

Example:

orthoxml-tools from-nhx --infile examples/data/sample.nhx --outfile ./tests_output/from_nhx.orthoxml
orthoxml-tools from-nhx --infile examples/data/sample2.nhx examples/data/sample.nhx --outfile ./tests_output/from_nhx21.orthoxml 

Orthofinder CSV to OrthoXML

Convert Orthofinder CSV format to OrthoXML.

orthoxml-tools from-orthofinder --infile path/to/file.csv --outfile path/to/file.orthoxml

Options:

  • --infile <file>: Specify the input orthofinder orthogroups.csv file (required).
  • --outfile <folder>: Specify the output OrthoXML file (required).

Example:

orthoxml-tools from-orthofinder --infile examples/data/OrthofinderOrthogroups.csv --outfile tests_output/orthofinder.orthoxml

filter

Filter the OrthoXML tree by a completeness score.

  • --score-name <str>: Name of the field for completeness score annotation (e.g. 'CompletenessScore')
  • --threshold <float>: Threshold value for the completeness score
  • --strategy <bottomup|topdown>: Filtering strategy. Bottom-up will keep complete subHOGs even if they parents are incomplete.
  • --outfile <file>: If provided, write the filtered OrthoXML to this file; otherwise, print to stdout
orthoxml-tools tests/test-data/case_filtering.orthoxml filter --score-name CompletenessScore \
                                                        --threshold 0.75 \
                                                        --strategy bottomup \
                                                        --outfile output-oxml.orthoxml 

Help

To see help for any command:

orthoxml-tools --help
orthoxml-tools -h
orthoxml-tools stats --help
orthoxml-tools stats -h

Legacy API

The orthoxml-tools package used to provides a object oriented interface for working with OrthoXML files. This API is deprecated and will be removed in v1.0.0. Please use the new streaming CLI method. The documentation on it can be found here.

Testing

uv install `.[test]`
pytest -vv

# test cli
tests/test_cli.sh

Project details


Download files

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

Source Distribution

orthoxml_tools-1.0.0.tar.gz (15.0 MB view details)

Uploaded Source

Built Distribution

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

orthoxml_tools-1.0.0-py3-none-any.whl (61.9 kB view details)

Uploaded Python 3

File details

Details for the file orthoxml_tools-1.0.0.tar.gz.

File metadata

  • Download URL: orthoxml_tools-1.0.0.tar.gz
  • Upload date:
  • Size: 15.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for orthoxml_tools-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3d0a10fddf543f0bd7467afa43272ac2755f290dd254a39e3c343dc027171b3b
MD5 0f199d4b3c2474ab409d2d3dca4c4fc3
BLAKE2b-256 3672a51760b13052cc8961d47827a4ef87fdac51a7f16b241e07b56be107d5bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for orthoxml_tools-1.0.0.tar.gz:

Publisher: publish.yml on DessimozLab/orthoxml-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orthoxml_tools-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: orthoxml_tools-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 61.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for orthoxml_tools-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 38668c313620ff4c8d114b0d54a6dd24d2f615e7d2d189dd13e74b831584586f
MD5 f0836e74475f21dbe08e517d5bfa389a
BLAKE2b-256 0c3dd116b148354361c022b7d128b2b481be762941172759da1bbeda8bd2b9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for orthoxml_tools-1.0.0-py3-none-any.whl:

Publisher: publish.yml on DessimozLab/orthoxml-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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