Normalizing fastq data

By Chris Wright
Published in Articles
July 07, 2021
2 min read

Oxford Nanopore Sequencing devices output RNA and DNA read sequences in batched fastq files. This is useful for real-time analyses like those run by EPI2ME but can be inconvenient for providing the data to standard bioinformatics tools, many of which only cater for data provided in a single file. In this post we’ll examine a new tool developed for use in EPI2ME Labs workflows to provide a first-line data sanitization and normalization step.

The problem

The fastq format is ubiquitous for storing sequencing reads. Data to be analysed by a workflow can however be presented with at least three wrinkles:

  1. there might be multiple fastq files to be analysed as a whole,
  2. the files may contain reads from a multiplexed experiment to be analysed separately,
  3. or the files may or may not be compressed with gzip compression.

We would like a process to handle these situations to format the data in a standardised form: a single gzip compressed fastq file for each demultiplexed sample. There are already a variety of programs that can take as input the data described above and get us most of the way to the desired result. Indeed for most cases simple shell scripting can do the job. The standard Linux cat program can be used in simple cases with either uncompressed or gzip compressed data, but not a mixture. The demultiplexing aspect of the task complicates things further: Oxford Nanopore Sequencing devices output demultiplexed reads helpfully into distinct directories, but what if this structure has been lost? We would like a more robust solution.

The solution

To solve this problem the EPI2ME Labs team developed the fastcat program. The program handles the three concerns above placing minimal contraints on the inputs. It performs this task using two key ingredients:

  1. the stream-based fastq/fasta parser kseq as used in the ubiquitous htslib package,
  2. the header information written to fastq records by the Guppy basecaller.

The program is not yet a complete replacement to more fully featured fastq toolkits such as the excellent seqkit though does provide a few additional generally useful features in addition to solving the core normalization functions. These include length and quality filtering, as well as producing a summary file containing per-read statistics. Being written in C it performs these tasks several times faster than any similar programs written in languages such as Python.

The fastq header parsing of fastcat allows plotting experimental yield withou resorting to Fast5 or standalone sequencing summary files.

Summary

Bioinformatics workflows often require using tools which are not designed to work in a real-time, streaming fashion and require all sequencing data to be provided in a single input file. fastcat provides a convenient method to normalize input data for downstream tools.

Key fastcat features

  • accepts compressed, uncompressed, or a mixture of fastq files,
  • filters reads on length and quality score,
  • produces per-read and per-input file summaries including information from fastq headers,
  • recapitulate standard MinKNOW demultiplexing directory layout from unstructured data.

Tags

#fastq#tools

Share

Chris Wright

Chris Wright

Senior Director, Customer Workflows

Table Of Contents

1
The problem
2
The solution
3
Summary

Related Posts

The first EPI2ME Hackathon
March 26, 2024
4 min

Quick Links

TutorialsWorkflowsOpen DataContact

Social Media

© 2020 - 2024 Oxford Nanopore Technologies plc. All rights reserved. Registered Office: Gosling Building, Edmund Halley Road, Oxford Science Park, OX4 4DQ, UK | Registered No. 05386273 | VAT No 336942382. Oxford Nanopore Technologies, the Wheel icon, EPI2ME, Flongle, GridION, Metrichor, MinION, MinIT, MinKNOW, Plongle, PromethION, SmidgION, Ubik and VolTRAX are registered trademarks of Oxford Nanopore Technologies plc in various countries. Oxford Nanopore Technologies products are not intended for use for health assessment or to diagnose, treat, mitigate, cure, or prevent any disease or condition.