Lesson · 40 min · Free
The Sequencing Revolution: Reads and Platforms
The Sequencing Revolution: Reads and Platforms body { font-family: sans-serif; line-height: 1.6; margin: 20px; } h1, h2 { color: #2c3e50; } h2 { border-bottom: 2px solid #3498db; padding-bottom: 10px; margin-top: 30px; }
Computational Biomedicine: From Command Line to Single-Cell
The Sequencing Revolution: Reads and Platforms
Welcome to the first module of our journey into computational biomedicine! Today, we'll delve into the foundational concept of modern genomics: DNA sequencing reads and the platforms that generate them. Understanding the nature of these reads is paramount, as they are the raw data upon which all subsequent bioinformatics analyses are built. From identifying disease-causing mutations to characterizing complex microbial communities, the quality and characteristics of your sequencing data dictate the accuracy and depth of your scientific insights. At its core, DNA sequencing involves determining the order of nucleotides (A, T, C, G) in a DNA molecule. However, no current technology can read an entire chromosome in one go. Instead, DNA is fragmented into smaller pieces, and these fragments are sequenced. The output of this process is a collection of "reads" – short sequences of nucleotides representing these fragments. The length of these reads, their accuracy, and the total number of reads generated vary significantly depending on the sequencing platform used. The first major revolution came with Sanger sequencing, which, while highly accurate, is low-throughput and sequences individual DNA fragments. The advent of Next-Generation Sequencing (NGS), also known as High-Throughput Sequencing (HTS), dramatically changed the landscape. NGS platforms sequence millions to billions of DNA fragments in parallel, generating vast amounts of data at a fraction of the cost and time of Sanger sequencing. The most dominant NGS platform for many years has been Illumina, which employs 'sequencing by synthesis' technology. Illumina platforms produce short reads (typically 50-300 base pairs, or bp) with very high accuracy and are excellent for applications like whole-genome sequencing (WGS), RNA sequencing (RNA-Seq), and chromatin immunoprecipitation sequencing (ChIP-Seq). Let's consider a typical FASTQ file, the standard format for storing sequencing reads along with their quality scores. Each read entry in a FASTQ file consists of four lines: @SEQ_ID GATTTGGGGTTCAAAGCAGTATCGATCAAATAGTAAATCCATTTGTTCAACTCACAGTTT + !''*((((***+))%%%++)(%%%%).1***-+*''))**&&%*!!!!)))**!!!!*** In this example: @SEQ_ID : The header line, starting with '@', contains a unique sequence identifier. GATTTGGGGTTCAAAGCAGTATCGATCAAATAGTAAATCCATTTGTTCAACTCACAGTTT : The actual DNA sequence (the read). + : A separator line, often a repeat of the header or just a '+' sign. !''*((((***+))%%%++)(%%%%).1***-+*''))**&&%*!!!!)))**!!!!*** : The quality scores for each base in the sequence, encoded using ASCII characters (Phred scores). Higher ASCII values indicate higher quality. More recently, third-generation sequencing (TGS) or long-read sequencing technologies have emerged, such as Pacific Biosciences (PacBio) and Oxford Nanopore Technologies (ONT). These platforms can generate reads tens of thousands to millions of base pairs long. While historically having a higher error rate than Illumina reads, their ability to span repetitive regions and resolve complex structural variations makes them invaluable for de novo genome assembly, isoform-level RNA-Seq, and epigenetic modifications. The error profiles also differ; Illumina errors are typically substitution errors, while long-read technologies often produce indel (insertion/deletion) errors. Here's a conceptual representation of how read lengths can impact assembly: # Short reads (e.g., Illumina) # Read 1: AGCGTAGCTAGCTAGCTAG # Read 2: GCTAGCTAGCTAGCGCGAT # Read 3: CGATCGATCGATCGATAGC # Long reads (e.g., PacBio, ONT) # Read 1: AGCGTAGCTAGCTAGCTAGCTAGCGCGATCGATCGATCGATAGCTAGCTAGCTAGCTAGCTAGCTAGCTAGCTAGCTAG Imagine trying to assemble a puzzle. Short reads are like small pieces, good for detailed local information but challenging for large, repetitive areas. Long reads are like larger pieces, providing more context and making it easier to bridge gaps, even if individual pieces have minor imperfections.
Key Takeaways
DNA sequencing produces "reads," which are short (NGS) or long (TGS) sequences of DNA fragments. NGS platforms like Illumina produce high-accuracy, short reads (50-300 bp) suitable for many applications. TGS platforms like PacBio and ONT produce lower-accuracy, long reads (kbp to Mbp) crucial for resolving complex genomic structures. The FASTQ file format stores sequence reads along with their per-base quality scores. Understanding read characteristics (length, accuracy, error profile) is fundamental for selecting appropriate bioinformatics tools and interpreting results.
Practice Exercise
You are designing an experiment to sequence the genome of a novel bacterium. The bacterium is known to have a high GC content and several large, repetitive regions. You also suspect it might harbor several plasmid-borne antibiotic resistance genes. Based on what you've learned about sequencing platforms, which type of sequencing technology (short-read like Illumina or long-read like PacBio/ONT) would you prioritize, and why? Explain how the characteristics of your chosen platform would address the specific challenges presented by this bacterial genome.
Watch the full lesson — free
This topic is part of Computational Biomedicine: From Command Line to Single-Cell, a complete AI-narrated video course. Press play once and watch the entire lecture like a movie.
Start the course free →