Synthetic Long Read Sequencing
Synthetic long read sequencing is a technique that uses barcoded short reads to computationally reconstruct long, contiguous sequences. It bridges the gap between the high accuracy of short read platforms and the long range information needed for resolving complex genomic regions. This guide is for molecular biologists, bioinformatics analysts, and genomics researchers who need a practical understanding of synthetic long read principles, decision points, and implementation steps. The approach is grounded in publicly available resources from the NCBI Bookshelf [1] and EMBL EBI training materials [2] to ensure authoritative technical context.
At a Glance
| Aspect | Description |
|---|---|
| Core Principle | Barcode short DNA fragments from the same long molecule, then assemble them into synthetic long reads |
| Key Advantages | High base accuracy (short read quality) with multikilobase contiguity |
| Typical Output | Sequences of 10 100 kb from platforms such as 10x Genomics, TELL Seq, or custom barcoding |
| Required Data | Short reads (e.g., Illumina) with unique molecular identifiers or barcodes |
| Primary Use Cases | Phasing, structural variant detection, de novo assembly, metagenomics |
| Main Limitations | Cannot resolve extreme repeats without physical long reads, relies on barcode integrity |
Core Concepts
Synthetic long read sequencing creates long range information without physically sequencing long molecules. The central idea is to partition or barcode fragments that originate from the same original long DNA molecule. After sequencing short reads, computational algorithms group reads sharing the same barcode, then assemble each group into a long consensus sequence. The Galaxy Training Network [3] provides workflow examples that illustrate how these barcoded short reads are processed into synthetic long contigs.
The barcoding can occur through microfluidic partitioning (as in 10x Genomics), combinatorial bead based splitting, or enzymatic tagging. Each method aims to ensure that reads from the same original molecule share a unique identifier. The computational stage then reconstructs the original molecule sequence by merging overlapping reads within each barcode group. This reconstruction is a specialized form of local assembly that leverages the high accuracy of short reads. Bioconductor [4] offers packages for analyzing barcoded read data, including tools for barcode quality filtering and phased variant calling.
Decision Points
Selecting synthetic long reads over native long read platforms (PacBio, Oxford Nanopore) depends on project requirements and resources. Consider the following criteria.
| Factor | Synthetic Long Reads | Native Long Reads |
|---|---|---|
| Base Accuracy | Very high (Q30+) | Moderate to high (Q10 Q20) |
| Read Length | 10 100 kb (assembled) | 10 kb to megabases (direct) |
| Input DNA Quantity | Higher (usually microgram) | Lower (nanogram to microgram) |
| Cost per Run | Lower per base for short reads | Higher per base for long reads |
| Computational Demand | Moderate (assembly needed) | Low for raw reads, higher for polishing |
For structural variant detection, synthetic long reads offer a cost effective alternative to native long reads, especially when combined with high coverage short read data. A review on genomic structural variation [10] highlights that synthetic long reads can uncover balanced rearrangements and complex events missed by standard short read approaches. However, if your genomic region contains long tandem repeats or extreme base composition, native long reads may be necessary.
Workflow or Implementation Steps
A practical synthetic long read sequencing workflow follows these stages.
Library Preparation
Fragment high molecular weight DNA to a target size (commonly 50 100 kb). Perform barcoding using a commercial kit (e.g., 10x Genomics GemCode) or a custom protocol. Ensure barcode diversity is high enough to minimize collisions between different original molecules.Sequencing
Sequence the barcoded library on a short read platform (Illumina recommended). Aim for at least 30x coverage of the original genome to ensure sufficient barcode representation. Verify that read quality meets standards: the NCBI Sequence Read Archive [5] contains numerous public datasets you can use as quality references.Deconvolution and Assembly
Use barcode aware assemblers (e.g., Supernova, ARCS, or custom pipelines) to separate reads by barcode and assemble them into synthetic long reads. The assembly step typically yields phased blocks and contigs. The Galaxy Training Network [3] has tutorials for running such assemblers in a reproducible environment.Variant Calling and Phasing
Apply tools that leverage the long range information. For example, ClairS [11] is a deep learning method designed for long read tumor normal pair calling, but its principles for handling phased reads can be adapted. Align synthetic long reads to a reference genome and call variants with phasing aware software.Validation
Compare assembled synthetic long reads with existing genome references or orthogonal long read data. Use quality metrics such as N50, barcode cross talk rate, and consensus accuracy. EMBL EBI Training [2] offers guidelines for evaluating assembly quality.
Quality Checks
Implement the following checks at critical points.
Barcode Diversity and Cross Talk
Calculate the number of unique barcodes and the fraction of reads with ambiguous barcode assignment. High cross talk (>5%) may indicate barcode contamination or bead merging. Bioconductor [4] packages like “DropletUtils” (for single cell) can be adapted for synthetic long read barcode QC.Read Length Distribution of Synthetic Contigs
After assembly, plot the length of each synthetic long read. Expected lengths should match the original fragment size distribution. Very short contigs may indicate poor barcode grouping.Consensus Accuracy
Align synthetic long reads back to the reference genome or to a trusted assembly. Compute per base concordance. The Galaxy Training Network [3] includes tools for generating alignment statistics.Phasing Continuity
For diploid genomes, verify that heterozygous variants within a synthetic read are consistently phased. A high switch error rate suggests barcode mixing.
Common Mistakes
Insufficient Coverage of Original Molecules
If the starting DNA is fragmented to very short pieces or if sequencing depth is low, the number of reads per barcode becomes insufficient for accurate consensus. This leads to fragmented synthetic long reads. Always validate coverage using controls.Ignoring Barcode Cross Talk
Barcode hopping (erroneous indexing during library prep) can merge reads from different molecules into the same synthetic read. Use unique dual indices and check for cross contamination using a known mix of species. The NCBI Bookshelf [1] provides protocols for minimizing index hopping.Overinterpreting Phased Blocks
Synthetic long reads produce phased blocks that are contiguous within a molecule but may have gaps between blocks. Do not assume that blocks represent complete haplotypes across large regions without additional evidence. A recent study on multiphase RT PCR sequencing [7] illustrates how careful interpretation of phased data is critical for splice variant detection.Using Standard Short Read Assemblers
Standard assemblers do not use barcode information. Running them on barcoded reads will discard the long range signal. Always use software designed for linked reads or synthetic long reads.
Limits of Interpretation
Synthetic long reads are computationally reconstructed, not directly sequenced as continuous molecules. Therefore, they have inherent limitations.
Repeat Resolution
Very long repeats (e.g., centromeric arrays) that exceed the original fragment size cannot be spanned. The reconstruction may collapse or misassemble such regions. Native long reads remain superior for these loci.Structural Variant Boundaries
While synthetic long reads can detect large deletions or inversions, the exact breakpoint may be imprecise if the break lies near the edge of a barcode group. Use multiple lines of evidence when reporting variant coordinates.Methylation and Epigenetic Information
Unlike native long read platforms, synthetic long reads do not capture base modifications directly. If methylation state is needed, alternative methods must be used.Single Molecule Phasing
The phased blocks within a synthetic long read derive from a pool of molecules sharing the same barcode. If multiple molecules with different haplotypes accidentally share a barcode, phasing will be incorrect. Barcode collision probability should be estimated and reported.
The methods and limits of interpretation are well documented in a comparative genomics study of phage vectors [8] that used both synthetic and native long reads to resolve a lytic genome. Their findings underscore that synthetic long reads are excellent for detecting medium scale structural variants but may miss breakpoints in repetitive flanks.
Frequently Asked Questions
1. What is the main difference between synthetic long reads and linked reads?
Linked reads (from 10x Genomics) and synthetic long reads are often used interchangeably. The key difference is that synthetic long reads are typically assembled into longer consensus sequences, while linked reads are used primarily for phasing and structural variant detection without full assembly. Both rely on barcoded short reads.
2. Can synthetic long reads fully replace native long reads from PacBio or Oxford Nanopore?
No. Synthetic long reads offer higher base accuracy but cannot span extremely long repeats or provide direct detection of base modifications. They are a cost effective alternative for many applications, but projects requiring kilobase scale contiguous sequences through repetitive DNA should still consider native long read platforms.
3. What bioinformatics tools are commonly used for synthetic long read analysis?
Tools include Supernova (for 10x Genomics data), ARCS, LINKS, and custom pipelines in Bioconductor [4]. Specialized variant callers like ClairS [11] can be adapted for phased data. For workflow management, the Galaxy Training Network [3] offers turnkey solutions.
4. How much input DNA is typically required?
Most commercial kits recommend 1 5 micrograms of high molecular weight DNA. Lower inputs may reduce barcode complexity and assembly quality. Check the specific protocol from your chosen platform.
References and Further Reading
- NCBI Bookshelf: Molecular Biology of the Cell , Foundational principles of DNA sequencing and genome structure.
- EMBL EBI Training: Sequence Analysis Resources , Practical tutorials for analyzing sequencing data.
- Galaxy Training Network: Assembly and Annotation , Workflows for genome assembly and quality control.
- Bioconductor: Genomic Data Analysis , R packages for processing barcoded sequencing data.
- NCBI Sequence Read Archive , Repository for raw sequencing data including synthetic long read datasets.
- Reimagining the Synthetic Biology DBTL Cycle with Machine Learning , Overview of sequencing technologies in synthetic biology [6].
- Multiplex RT PCR Based Sequencing Assay to Detect Kidney Cancer Splice Variants , Application of short and long read sequencing for transcriptomics [7].
- Comparative Genomics of Phage Eco MTCMU 01 , Use of synthetic and native long reads in phage genomics [8].
- Nucleic Acid and Multi Omics Approaches for Plant Microbiome Interactions , Integration of sequencing methods for ecological studies [9].
- Broken and Reassembled: Structural Genomic Variation , Comprehensive review of structural variant detection with various read types [10].
- ClairS: Deep Learning for Long Read Somatic Calling , Advanced variant calling applicable to synthetic long read data [11].