A tool to GENerate COnsensus REads.
- What's gencore
- A quick example
- Download, compile and install
- Why to use gencore
- How it works
- Command examples
- UMI format
- All options
- Read/cite gencore paper
gencore
is a tool to generate consensus reads from next-generation sequencing (NGS) data. It groups the reads derived from the same original DNA template, merges them and generates a consensus read, which contains much less errors than the original reads.
This tool groups the reads of same origin by their mapping positions and unique molecular identifiers (UMI). It can run with or without UMI. If your FASTQ data has UMI integrated, you can use fastp to shift the UMI to read query names, and use gencore
to generate consensus reads.
This tool can eliminate the errors introduced by library preparation and sequencing processes, and consenquently reduce the false positives for downstream variant calling. This tool can also be used to remove duplicated reads. Since it generates consensus reads from duplicated reads, it outputs much cleaner data than conventional duplication remover. Due to these advantages, it is especially useful for processing ultra-deep sequencing data for cancer samples.
gencore
accepts a sorted BAM/SAM with its corresponding reference fasta as input, and outputs an unsorted BAM/SAM.
gencore -i input.sorted.bam -o output.bam -r hg19.fasta
This binary is only for Linux systems: http://opengene.org/gencore/gencore
# this binary was compiled on CentOS, and tested on CentOS/Ubuntu
wget http://opengene.org/gencore/gencore
chmod a+x ./gencore
# step 1: download and compile htslib from: https://github.com/samtools/htslib
# step 2: get gencore source (you can also use browser to download from master or releases)
git clone https://github.com/OpenGene/gencore.git
# step 3: build
cd gencore
make
# step 4: install
sudo make install
As described above, gencore can eliminate the errors introduced by library preparation and sequencing processes, and consenquently it can greatly reduce the false positives for downstream variant calling. Let me show your an example.
This is an image showing a pileup of the original BAM. A lot of sequencing errors can be observed.
This is the image showing the result of gencore processed BAM. It becomes much cleaner. Cheers!
important steps:
- clusters the reads by their mapping positions and UMIs (if UMIs are applicable).
- for each cluster, compares its supporting reads number (the number of reads/pairs for this DNA fragment) with the threshold specified by
supporting_reads
. If it passes, start to generate a consensus read for it. - if the reads are paired, finds the overlapped region of each pair, and scores the bases in the overlapped regions according their concordance and base quality.
- for each base position at this cluster, computes the total scores of each different nucleotide (A/T/C/G/N).
- if there exists a major nucleotide with good quality, use this nucleotide for this position; otherwise, check the reference nucleotide from reference genome (if reference is specified).
- when checking the reference, if there exists one or more reads are concordant with reference genome with high quality, or all reads at this positions are with low quality, use the reference nucleotide for this position.
gencore
uses 3 different thresholds, and they can be specified by the commandline options:
Quality threshold | Default Score | CMD option |
---|---|---|
High Quality | 30 (Q30) | --high_qual |
Moderate Quality | 20 (Q20) | --moderate_qual |
Low Quality | 15 (Q15) | --low_qual |
gencore
assigns a score to each base in a read of a read cluster, the score means the confidence of this base. The score is given by following rules:
in overlapped region? | matched with its pair? | condition? | score for this base |
---|---|---|---|
NO | N/A | NO | 6 |
YES | YES | this_qual + pair_qual >= 2 * MODERATE_QUAL | 8 |
YES | YES | this_qual + pair_qual < 2 * MODERATE_QUAL | 7 |
YES | NO | this_qual >= HIGH_QUAL, pair_qual <= LOW_QUAL | 5 |
YES | NO | this_qual >= HIGH_QUAL, pair_qual >= HIGH_QUAL | 4 |
YES | NO | LOW_QUAL < this_qual < HIGH_QUAL, LOW_QUAL < pair_qual < HIGH_QUAL | 3 |
YES | NO | this_qual <= LOW_QUAL, pair_qual <= LOW_QUAL | 2 |
YES | NO | this_qual <= LOW_QUAL, pair_qual >= HIGH_QUAL | 1 |
In this table:
this_qual
is the quality of this basepair_qual
is the quality of the corresponding in the overlapped region of a pair.HIGH_QUAL
is the quality threshold that can be specified by--high_qual
MODERATE_QUAL
is the quality threshold that can be specified by--moderate_qual
LOW_QUAL
is the quality threshold that can be specified by--low_qual
If you want to get very clean data, we can only keep the clusters with 2 or more supporting reads (recommended for ultra-deep sequencing with higher dup-rate):
gencore -i in.bam -o out.bam -r hg19.fa -s 2
If you want to keep all the DNA fragments, we can set supporting_reads
to 1 (this option can be used to replace picard markduplicate
to deduplication):
gencore -i in.bam -o out.bam -r hg19.fa -s 1
(Recommanded) If you want to keep all the DNA fragments, and for each output read you want to discard all the low quality unoverlapped mutations to obtain a relative clean data (recommended for dup-rate < 50%):
gencore -i in.bam -o out.bam -r hg19.fa -s 1 --score_threshold=8
If you want to obtain fewer but ultra clean data, you can both increase the supporting_reads
and the ratio_threshold
:
gencore -i in.bam -o out.bam -r hg19.fa -s 3 --ratio_threshold=0.9
gencore
supports calling consensus reads with or without UMI. Although UMI is not required, it is strongly recommended. If your FASTQ data has UMI integrated, you can use fastp to shift the UMI to read query names.
The UMI should in the tail of query names. It can have a prefix like UMI
, followed by an underscore. If the UMI has a prefix, it should be specified by --umi_prefix
or -u
. It can also have two parts, which are connected by an underscore.
- Read query name =
"NB551106:8:H5Y57BGX2:1:13304:3538:1404:UMI_GAGCATAC"
, prefix ="UMI"
, umi ="GAGCATAC"
- Read query name =
"NB551106:8:H5Y57BGX2:1:13304:3538:1404:UMI_GAGC_ATAC"
, prefix ="UMI"
, umi ="GAGC_ATAC"
- Read query name =
"NB551106:8:H5Y57BGX2:1:13304:3538:1404:GAGCATAC"
, prefix =""
, umi ="GAGCATAC"
- Read query name =
"NB551106:8:H5Y57BGX2:1:13304:3538:1404:GAGC_ATAC"
, prefix =""
, umi ="GAGC_ATAC"
options:
-i, --in input sorted bam/sam file. STDIN will be read from if it's not specified (string [=-])
-o, --out output bam/sam file. STDOUT will be written to if it's not specified (string [=-])
-r, --ref reference fasta file name (should be an uncompressed .fa/.fasta file) (string)
-u, --umi_prefix the prefix for UMI, if it has. None by default. Check the README for the defails of UMI formats. (string [=])
-s, --supporting_reads only output consensus reads/pairs that merged by >= <supporting_reads> reads/pairs. The valud should be 1~10, and the default value is 2. (int [=2])
-a, --ratio_threshold if the ratio of the major base in a cluster is less than <ratio_threshold>, it will be further compared to the reference. The valud should be 0.5~1.0, and the default value is 0.8 (double [=0.8])
-c, --score_threshold if the score of the major base in a cluster is less than <score_threshold>, it will be further compared to the reference. The valud should be 1~20, and the default value is 6 (int [=6])
--high_qual the threshold for a quality score to be considered as high quality. Default 30 means Q30. (int [=30])
--moderate_qual the threshold for a quality score to be considered as moderate quality. Default 20 means Q20. (int [=20])
--low_qual the threshold for a quality score to be considered as low quality. Default 15 means Q15. (int [=15])
-j, --json the json format report file name (string [=gencore.json])
--debug output some debug information to STDERR.
--quit_after_contig stop when <quit_after_contig> contigs are processed. Only used for fast debugging. Default 0 means no limitation. (int [=0])
-?, --help print this message
An application note has been posted on bioRxiv for a brief instruction: http://biorxiv.org/cgi/content/short/501502v1. If you used gencore in your research work, please cite it as:
gencore: an efficient tool to generate consensus reads for error suppressing and duplicate removing of NGS data
Shifu Chen, Yanqing Zhou, Yaru Chen, Tanxiao Huang, Wenting Liao, Yun Xu, Zhihua Liu, Jia Gu
bioRxiv 501502; doi: https://doi.org/10.1101/501502