A tool to evaluate long-read error correction mainly with PacBio High-Fidelity Reads
Project description
Getting started
- Install through pip:
pip install hifieval - Install through conda:
conda install hifieval - Install one error correction/assembly tool: hifiasm for example
- Install minimap2
# get test data
wget https://zenodo.org/record/7799845/files/ecoli.reads.fastq?download=1 # simulated raw reads
wget https://zenodo.org/record/7799845/files/ecoli.ref.fasta?download=1 # reference genome
# get error corrected reads
hifiasm -o ecoli.asm.hifiasm --primary -t 10 --write-ec ecoli.reads.fastq 2> ecoli.asm.hifiasm.log
# get alignment paf files
minimap2 -t 8 -cx map-hifi --secondary=no --paf-no-hit --cs ecoli.ref.fasta ecoli.reads.fastq > ecoli.raw.paf
minimap2 -t 8 -cx map-hifi --secondary=no --paf-no-hit --cs ecoli.ref.fasta ecoli.asm.hifiasm.ec.fa > ecoli.hifiasm.paf
# get evaluation files
hifieval.py -o ecoli.hifiasm -r ecoli.raw.paf -c ecoli.hifiasm.paf
Users' Guide
hifieval [options] -r <raw.paf> -c <corrected.paf>
Hifieval is a tool to evaluate long-read error correction mainly with PacBio High-Fidelity Reads (HiFi reads). Use command hifieval to see available options.
The input of this tool takes in two .paf files: one is raw reads aligned to reference genome; the other is corrected reads aligned to reference genome. PAF is a text format describing the approximate mapping positions between two set of sequences.
The paf file will encodes difference of sequence alignments in the short form, indication substitution, insertion, and deletion. The metrics of error correction are:
- OC: (over-correction) The errors appeared in corrected reads but not in raw reads
- UC: (under-correction) The errors in raw reads that are still in corrected reads
- CC: (correct-correction) The errors that are in raw reads but not corrected reads
General usage
-
Examples of Error Correction (EC) tools to output error corrected reads
- hifiasm:
hifiasm -o <prefix> --write-ec -t32 <read_files> 2> <prefix>.log - LJA:
lja -o <output_dir> --reads <reads_file> [--reads <reads_file2> …] - Verkko:
verkko -d <output_dir> --hifi <reads_files>
- hifiasm:
-
If the EC tool produce HPC corrected reads, use seqtk to perform homopolymer-compression (HPC) on raw reads and the reference:
seqtk hpc <file> -
Minimap2 is used to generate the paf files using the command, the --cs tag is required:
./minimap2 -t8 -cx map-hifi --secondary=no --paf-no-hit --cs <ref_fasta_file> <read_files> > <prefix>.paf
Advanced features
On top of FPR and TPR for the corrections, errors in homopolymer (HP) regions can be further incorporated if the assembly tool does not perform HPC on the raw reads during the error correction step using the command:
hifieval [options] -h <reference_file> -r <raw.paf> -c <corrected.paf>
HP regions of different lengths are identified, and UC/OC that fall within these regions is calculated. Here the error rate is calculated by ${\verb|#|HP_{x,with,error}}/{\verb|#|HP_{x}}$. for HP with length $x$. However, since most of the assembly tools use HPC reads during their error correction step, HP evaluation is optional.
Output overview
- summary.tsv: the most detailed summary of EC performance for any downstream analysis
- contains 12 columns: readName, raw_mapped_chr, raw_start, raw_end, raw_mq, corrected_mapped_chr, corrected_start, corrected_end, corrected_mq, num_oc, num_uc, num_cc
- rdlvl.eval.tsv
- counts how many corrected reads have 1 oc/uc, 2 oc/uc, etc. for each chromosome and all chromosomes
- metric.eval.tsv
- overall metrics for each chromosome and all chromosomes
- hp.ErrorRate.tsv
- contains the error rates for each length of the homopolymers
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hifieval-0.4.0.tar.gz.
File metadata
- Download URL: hifieval-0.4.0.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3f132bab13a94be921319dd0abdd93445410ac617420b1b04aeb507d1475249
|
|
| MD5 |
3fee3453fd0ed382680343c6b2591b45
|
|
| BLAKE2b-256 |
ad1f327b93a3ffcb8763490406547b8da48861859a4a5fecbf9f6e4869584b9b
|
File details
Details for the file hifieval-0.4.0-py3-none-any.whl.
File metadata
- Download URL: hifieval-0.4.0-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5d2cc689c45c56e03d0513d4d36e88371b2e848b5ca6f09f06e01915d38ef2a
|
|
| MD5 |
dcdc24fc271cb00c76787adee84f2105
|
|
| BLAKE2b-256 |
04fe208fb22b7cec3f87657a246252f322d7264fd295d153b27c6b2a8d8d6925
|