NGS-Barcode-Count

Fast and memory efficient DNA barcode counter and decoder for next generation sequencing data. Includes error handling and a sequencing quality filter. Works for DEL (DNA encoded libraries), high throughput CRISPR sequencing, barcode sequencing. If the barcode file is included, the program will convert to barcode names and correct for errors. If a random barcode is included to collapse PCR duplicates, these duplicates will not be counted. Parsing over 400 million sequencing reads took under a half hour with 8 threads and around 2GB of RAM use.


For DEL analysis, a companion python package was created: DEL-Analysis

Multithreaded and low resource use. Uses one thread to read and the rest to process the data, so at least a 2 threaded machine is essential. This program does not store all data within RAM but instead sequentially processes the sequencing data in order to remain memory efficient.


Error handling is defaulted at 20% maximum sequence error per constant region and barcode. This can be changed through CLI arguments. The algorithm fixes any sequenced constant region or barcode with the best match possible. If there are two or more best matches, it is not counted.

Filtering by read quality score is also an option. If used, each barcode has its read quality average calculated and if it is below the set threshold, the read is not counted. The algorithm is defaulted to not filter unless the --min_quality argument is called. See fastq documentation to understand read quality scores. The scores used are after ascii conversion and 33 subtraction.

Inspired by and some ideas adopted from decode

Table of Contents

Installation

Rust installed locally: instructions here

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

NGS-Barcode-Count downoad and compile

cargo install barcode-count

Files Needed

Currently supports FASTQ, sequence format, sample barcode conversion, and building block barcode conversion.

Fastq File

Accepts unzipped fastq files.
Accepts gzipped fastq files, but if the program stops before the expected number of sequencing reads, unzip and rerun.

Sequence Format File

The sequence format file should be a text file that is line separated by the type of format. The following is supported where the '#' should be replaced by the number of nucleotides corresponding to the barcode:

Sequence Type File Code Number Needed/Allowed
Constant ATGCN 1 or more
Sample Barcode [#] 0-1
Barcode for counting {#} 1 or more
Random Barcode (#) 0-1

An example can be found in scheme.example.txt. Since the algorthm uses a regex search to find the scheme, the scheme can exist anywhere within the sequence read.

Sample Barcode File

Optional
The samplebarcodefile is a comma separate file with the following format:

Barcode Sample_ID
AGCATAC Sample_name_1
AACTTAC Sample_name_2

An example can be found in sample_barcode.example.csv.

Counted Barcode Conversion File

Optional
The barcode_file is a comma separate file with the following format:

Barcode Barcode_ID Barcode_Number
CAGAGAC Barcode_name_1 1
TGATTGC Barcode_name_2 1
ATGAAAT Barcode_name_3 2
GCGCCAT Barcode_name_4 2
GATAGCT Barcode_name_5 3
TTAGCTA Barcode_name_6 3

An example can be found in barcode.example.csv.

Where the first column is the DNA barcode, the second column is the barcode ID which can be a smile string for DEL, CRISPR target ID, etc. but cannot contain commas. The last column is the barcode number as an integer. The barcode numbers are in the same order as the sequence format file and starting at 1. For example, if there are a total of 3 barcodes, which may be the case with DEL, you would only have 1, 2, or 3 within this column for each row, with each number representing one of the three barcodes. For CRISPR or barcode seq, where there may only be one barcode to count, this column would be all 1s.

Run

After compilation, the barcode binary can be moved anywhere.

Run DEL-Decode

barcode-count --fastq <fastq_file> \ --sample_barcodes <sample_barcodes_file> \ --sequence_format <sequence_format_file> \ --counted_barcodes <counted_barcodes_file> \ --output_dir <output_dir> \ --prefix <file_prefix> \ --threads <num_of_threads> \ --merge_output \ --min_quality <min_barcode_read_quality>\ --single\ --double\


Output files

Each sample name will get a file in the default format of year-month-daycounts.csv in the following format (for 3 building blocks):

Barcode_1 Barcode_2 Barcode_3 Count
Barcode_ID/DNA code Barcode_ID/DNA code Barcode_ID/DNA code #
Barcode_ID/DNA code Barcode_ID/DNA code Barcode_ID/DNA code #

Where Barcode_ID is used if there is a building block conversion file, otherwise the DNA code is used. # represents the count number

If --merge_output is called, an additional file is created with the format (for 3 samples):

Barcode_1 Barcode_2 Barcode_3 Sample_1 Sample_2 Sample_3
Barcode_ID/DNA code Barcode_ID/DNA code Barcode_ID/DNA code # # #
Barcode_ID/DNA code Barcode_ID/DNA code Barcode_ID/DNA code # # #

An additional barcode_stats.txt file is also written/appended to the output folder. This keeps track of running information.

If either --single or --double arguments are called, single or double barcode count files are ouptut.

Uses

DEL

Setup as shown with all example files used throughout this README. Typically you will use 3 x '[]' for counting barcodes, which represents 3 building blocks, within the format file.

CRISPR-seq

Same setup as with DEL, but typically with only one '[]' counted barcode in the format file. As such, within the counted barcode conversion file, the third column will contain all '1's

Barcode-seq

If the intention is to count the random barcodes and have the counts associated with these random barcodes, which is the case with bar-seq of cell pools for lineage evolution etc., then the random barcode, within this situation, is the counted barcode and represented with '[]' in the format file. A counted barcode conversion file will not be included. Without the counted barcode conversion file, the program will output the counted random barcode sequence and the associated count. Afterwards, clustering or any other analysis can be applied.

Tests results

On an 8 threaded i7-4790K CPU @ 4.00GHz with 16gb RAM, this algorithm was able to decode over 400 million sequencing reads in about a half hour. Results below: ``` Total sequences: 418,770,347 Correctly matched sequences: 257,807,865 Constant region mismatches: 151,955,695 Sample barcode mismatches: 3,324,481 Barcode mismatches: 5,682,306 Duplicates: 0 Low quality barcodes: 0

Compute time: 0 hours, 27 minutes, 55.717 seconds

Writing counts

Total time: 0 hours, 34 minutes, 7.706 seconds ```

Notes

In order to remain memory efficient, there are limits on how large each number can get
Any count: u32 with a max of 4,294,967,295
Barcode lengths, each error max, number of barcodes in a single sequence: u8 with a max of 255

If larger values are needed, edit the script and replace the u32 with u64 or u8 with u16 etc.