vpc-ccg / calib

Calib clusters barcode tagged paired-end reads based on their barcode and sequence similarity.
MIT License
38 stars 9 forks source link
barcode-sequencing clustering liquid-biopsy paired-end-sequencing tagged-reads

install with bioconda

Calib

Calib clusters paired-end reads using their barcodes and sequences. Calib is suitable for amplicon sequencing where a molecule is tagged, then PCR amplified with high depth, also known as Unique Molecule Identifier (UMI) sequencing.

Calib stands for Clustering without alignment using (locality sensitive hashing) LSH and MinHashing of barcoded reads. Calib comes for the Arabic word قالب /IPA:qaːlib/ which means template and is a reference to Calib's use of LSH templates.

Installation

Calib has two main executables: calib and calib_cons. You can install Calib directly from source, or from conda.

From source

Calib main module has one prerequisite:

Calib error correction module depends on SPOA v1.1.3 which in turn depends on CMake v3. The Makefile for Calib error correction assumes that cmake is in the path variable. However, you can also point to a specific CMake by setting the $CMAKE environment variable:

export CMAKE=path-to-cmake-v3

Then, clone this repository:

git clone -b v0.3.4 https://github.com/vpc-ccg/calib.git calib

To install Calib clustering module:

cd calib
make
cd ..

To install Calib error correction module:

cd calib
make -C consensus/
cd ..

From Conda

Just run:

conda install -c bioconda calib

This will install calib and calib_cons to your conda environment bin folder.

Other Calib scripts

Calib repository includes a simulation module that was used to fine-tune Calib's clustering parameters. The module files are under simulation directory. The module has some Python3 prerequisites that can be easily satisfied using Conda package manager:

Finally, if you want to generate the different plots (check this README) you need to also have:

Which can be also easily installed using Conda.

Running Calib

The following assumes you have calib and calib_cons in your environment $PATH variable. This is done automatically by conda.

Clustering

To run Calib clustering, run:

calib -f <reads_1> -r <reads_2> -l <barcode_tag_length> -o <output_file_prefix>

For example:

calib -f R1.fastq -r R2.fastq -l 8 -o R.

Calib will cluster the reads in <reads_1> and <reads_2> FASTQ files that are tagged with barcode tags of length <barcode_tag_length>. Note that this tag length of the length of barcode tag on one mate of the paired-end reads. The output filename will be <output_file_prefix>cluster.

Output format

The output file will contain one line per input read. Each record is tab separated with the following columns:

  1. read_cluster_id: Consecutive integers starting at 0 and ending at number of clusters - 1
  2. read_node_id: Consecutive integers starting at 0 and ending at number of nodes - 1
  3. read_id: 0-based order of the read in the input files
  4. read_f_name: FASTQ name of the read's forward mate
  5. read_f_seq: FASTQ sequence of the read's forward mate
  6. read_f_qual: FASTQ quality sequence of the read's forward mate
  7. read_r_name: FASTQ name of the read's reverse mate
  8. read_r_seq: FASTQ sequence of the read's reverse mate
  9. read_r_qual: FASTQ quality sequence of the read's reverse mate

Clustering parameters

Calib clustering has different clustering parameters that can be changed manually from the default pre-configuration:

Changing these parameters is might not be very obvious. We recommend checking with our parameter selection experiments before doing so.

Clustering multithreading

Calib clustering is can run multi-threaded using:

Note that Calib's runtime and memory do not scale well with increased number of threads. Please check our thread scalability experiments to have an idea on the time vs. memory tradeoff of Calib clustering multithreading.

Other clustering parameters

Finally, Calib clustering has these parameters that are added for convenience:

Error Correction (consensus module)

To run Calib error correction, run:

calib_cons -c <cluster_file> -q <space_separated_FASTQ_list> -o <space_separated_output_prefix_list>

For example:

calib_cons -c R.cluster -q R1.fastq R2.fastq -o R1. R2.

Output format

Calib error correction will output two files per input FASTQ file. One file will be a FASTQ file containing one record per consensus generated. The second file will contain multiple sequence alignment (MSA) of the cluster sequences.

Error correction parameters

Error correction has one parameter:

Simulation module

Calib has a simulation molecule that generates paired-end UMI tagged reads. The simulation pipeline is Calib's Makefile itself. It generates the following components:

Since Calib simulation pipeline is basically a Makefile, any target that depends on the previous targets inherits its variables. For example:

make simulate num_molecules=1000

Will generate paired-end reads using all the default simulation parameters (check Makefile header) but with num_molecules of 1000.

Citation

Baraa Orabi, Emre Erhan, Brian McConeghy, Stanislav V Volik, Stephane Le Bihan, Robert Bell, Colin C Collins, Cedric Chauve, Faraz Hach; Alignment-free clustering of UMI tagged DNA molecules, Bioinformatics, , bty888, https://doi.org/10.1093/bioinformatics/bty888

Reporting issues and bugs

If you have any issues, questions, or bug reports, please open an issue and will try to address promptly.