Skip to main content

Serovar detector

Actinobacillus pleuropneumoniae causes severe respiratory illness in production pigs and piglets. One major task in the prohobition of spread as well as treatment, is to identify the composition of capsule genes. These capsule genes can in combination be used too provide servariant typing of A. pleuropneumoniae.

This repository provides a pipeline for detecting capsule genes and dessiminate serovar from combination of present genes.

Quick start

# Install once only
micromamba create -n serovar_detector bioconda::serovar_detector --yes

# Execution
micromamba run -n serovar_detector serovar_detector -r /path/to/input/reads -a /path/to/input/assemblies -o /path/to/output

Setup

Requirements

While there are several other tools being used, standard usage assumes that Snakemake automatically should handle installation of downstream software. Here's the requirement for Serovar detector:

  • snakemake >= 8.+
  • conda >= 24.7.1
  • pandas
  • peppy

Micromamba/Conda

Serovar detector is hosted on bioconda, so requirements can be automatically fixed by using micromamba/conda.

micromamba create -n serovar_detector bioconda::serovar_detector

Pip installation

Installation through pip can be a bit more tricky, it assumes you have conda preinstalled on your system (or in a virtual environment). Since Serovar detector is hosted on PyPi, it can be installed by simply running:

pip install serovar_detector

Alternative to Conda

IF you don't wish to involve conda at all, due to e.g. server restrictions or hosting on third party platforms (such as Galaxy), you could look through the serovar_detector/workflow/envs files and try to replicate an environment containing these tools as well as the tools listed in Requirements section (conda is only required when letting Snakemake handle the pipeline environments). In theory if these tool can exist within the same environment, you can skip the Snakemake conda handling entirely by adding the -c flag (e.g. serovar_detector ... -c), it's untested and unsupported though.

Usage

Serovar detector runs with different types of modes.

  • Single sample reads (-1 and -2)
  • Single sample assembly (-A)
  • Batch samples reads (-r)
  • Batch samples assemblies (-a)

Input

Serovar detector assumes use of either/and Illumina Paired end gz-compressed sequencing data _(R1|R2.fastq.gz) or/and preassembled genomes (.fasta).

Batch mode

Serovar detector will scan the top folder of the specified reads directory and assemblies directory when using the -r and -a options respectively.

serovar_detector -r /path/to/input/reads -a /path/to/input/assemblies -o /path/to/output -t 3

Single sample mode

When running single sample mode (e.g. for setting up modules on galaxy or integrating Serovar detector in other pipelines) you can specify the file path for both read mates using -1 and -2 options, and/or the file path for the preassembled genome using the -A option.

serovar_detector -1 /path/to/input/sample_R1.fastq.gz -2 /path/to/input/sample_R2.fastq.gz -A /path/to/input/sample_assembly.fasta -o /path/to/output -t 3

Mix of both

It's possible to mix batch and single mode, e.g. by specifying the -r (reads_dir) option and -A (assembly_file) option. Then all samples detected in the read directory alongside the single assembly will be included in a given run.

serovar_detector -r /path/to/input/reads -A /path/to/input/sample_assembly.fasta -o /path/to/output -t 3

If specifying both single sample AND batch type of the same data type (in this example assemblies) the batch mode will be ignored (.e.g specifying -A will cause -a to be ignored).

Output

Serovar detector uses KMerAligner (KMA) to map raw reads against the capsule gene database of Serovar detector, and it uses Blastn to map the capsule gene database against the assembled genomes. Please note that it is possible to include both raww reads and assemblies of the same sample, this would lead to both mapping results being reported separately.

A summary of detected capsule genes and their derived serovars are provided for each individual sample and mapper, in a single tab-separated file: /path/to/output/serovars.tsv.

Options

serovar_detector -h
usage: serovar_detector [-h] [-r --reads_dir] [-1 --r1] [-2 --r2]
                        [-a --assembly_dir] [-A --assembly] -o --outdir
                        [-T --theshold] [-t --threads] [-k] [-F] [-c] [-n]
                        [-D --database] [-d]

Screen read files and assemblies for Serovar biomarker genes, in order to
preovide suggestions for isolate serovar. Currently only supporting
Actinobacillus Pleuropneumoniae.

options:
  -h, --help         show this help message and exit
  -r --reads_dir     Input path to reads directory
  -1 --r1            Path to sample read mate 1 (Disables --reads_dir)
  -2 --r2            Path to sample read mate 2 (Disables --reads_dir)
  -a --assembly_dir  Input path to assembly directory
  -A --assembly      Path to sample assembly (Disables --assembly_dir)
  -o --outdir        Output path to Results and Temporary files directory
  -T --theshold      Cutoff threshold of match coverage and identity. Ignore
                     threshold by setting to 0 or False. (Default: 98)
  -t --threads       Number of threads to allocate for the pipeline. (Default:
                     3)
  -k                 Preserve temporary files such as KMA result files.
                     (Default: False)
  -F                 Force rerun of all tasks in pipeline. (Default: False)
  -c                 Don't let snakemake handle conda execution in rules.
                     Enable this option if the pipeline should run in the
                     current loaded environment. (Default: False)
  -n                 Perform a dry run with Snakemake to see jobs but without
                     executing them. (Default: False)
  -D --database      Path and prefix to kmer-aligner database. (Default: /home
                     /cucumbergebt/micromamba/envs/serovar_detector/lib/python
                     3.14/site-packages/serovar_detector/db/Actinobacillus_ple
                     uropneumoniae)
  -d                 Enable debug mode, prints more messages and stores
                     snakemake object for inspection in R. (Default: False)

Issues or questions

If you encounter any issues or have any questions, you are more than welcome to post these in the issues section of this repository (Requires a GitHub account).

Citation

If you are using our tool in your analysis, please consider to cite us.

Angen Ø, Karstensen KT, Vilaró A, et al. Serotyping of Actinobacillus pleuropneumoniae based on whole genome sequencing: validation of a bioinformatic tool. Microb Genom. 2025;11(7):001434. doi:10.1099/mgen.0.001434

Download files

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

Source Distribution

serovar_detector-1.1.1.tar.gz (774.0 kB view details)

Uploaded Source

Built Distribution

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

serovar_detector-1.1.1-py3-none-any.whl (785.4 kB view details)

Uploaded Python 3

File details

Details for the file serovar_detector-1.1.1.tar.gz.

File metadata

  • Download URL: serovar_detector-1.1.1.tar.gz
  • Upload date:
  • Size: 774.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for serovar_detector-1.1.1.tar.gz
Algorithm Hash digest
SHA256 c0102fa8e571e136e52b65d67c78bc58323ab81fa0b8bf45ca55418724cf76d3
MD5 22b13e3cab09365ac06489f8f85fb2c5
BLAKE2b-256 c28ff1a919ac0587ce81fef0a0e3b0ced84114c61e808f47e7a09987eb96750a

See more details on using hashes here.

Provenance

The following attestation bundles were made for serovar_detector-1.1.1.tar.gz:

Publisher: publish.yml on KasperThystrup/serovar_detector

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

File details

Details for the file serovar_detector-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for serovar_detector-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b468e26134ce197bf2efc95e08c9978f23a5fa25917e52f8b4d22785c451a565
MD5 528cb33285d6bd38aa1862806ca55f71
BLAKE2b-256 42a20f232a7dc91f11874ec9979da2efc27e830dd331982aae833ddf839a3d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for serovar_detector-1.1.1-py3-none-any.whl:

Publisher: publish.yml on KasperThystrup/serovar_detector

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

Release history Release notifications | RSS feed

1.1.2

2 files

This release

1.1.1 This release

2 files

1.1.0

2 files

1.0.0

2 files

0.9.9

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page