Skip to main content
Wellcome Open Research logoLink to Wellcome Open Research
. 2021 Jun 7;6:141. [Version 1] doi: 10.12688/wellcomeopenres.16791.1

Ultraplex: A rapid, flexible, all-in-one fastq demultiplexer

Oscar G Wilkins 1,2,a, Charlotte Capitanchik 1, Nicholas M Luscombe 1,3,4, Jernej Ule 1,2
PMCID: PMC8287537  PMID: 34286104

Abstract

Background: The first step of virtually all next generation sequencing analysis involves the splitting of the raw sequencing data into separate files using sample-specific barcodes, a process known as “demultiplexing”. However, we found that existing software for this purpose was either too inflexible or too computationally intensive for fast, streamlined processing of raw, single end fastq files containing combinatorial barcodes.

Results: Here, we introduce a fast and uniquely flexible demultiplexer, named Ultraplex, which splits a raw FASTQ file containing barcodes either at a single end or at both 5’ and 3’ ends of reads, trims the sequencing adaptors and low-quality bases, and moves unique molecular identifiers (UMIs) into the read header, allowing subsequent removal of PCR duplicates. Ultraplex is able to perform such single or combinatorial demultiplexing on both single- and paired-end sequencing data, and can process an entire Illumina HiSeq lane, consisting of nearly 500 million reads, in less than 20 minutes.

Conclusions: Ultraplex greatly reduces computational burden and pipeline complexity for the demultiplexing of complex sequencing libraries, such as those produced by various CLIP and ribosome profiling protocols, and is also very user friendly, enabling streamlined, robust data processing. Ultraplex is available on PyPi and Conda and via Github.

Keywords: Demultiplexing, fastq, iCLIP, UMI, ribosome profiling

Introduction

Next generation sequencing (NGS) has greatly reduced the cost of obtaining large amounts of sequence data, as hundreds of millions, or even billions, of reads can be generated in a single sequencing run ( Goodwin et al., 2016). However, despite a greatly reduced cost per read, the cost of each sequencing run is still high. To reduce the cost per sample, a single sequencing run will typically involve multiplexing of multiple samples. To enable identification of which sample a given read is derived from, sample-specific “barcodes” (short, defined DNA sequences) are introduced during library preparation. Following sequencing, software is required to detect these barcodes and split the reads into separate files. Only after demultiplexing can read alignment and other downstream analysis be performed.

For commercial library preparation methods (for example, Lexogen Quant-seq or Illumina Truseq), demultiplexing is typically performed during the generation of fastq files from the raw read data. For Illumina sequencing, the software used for this is Bcl2fastq. However, many in-house library preparation protocols use custom barcodes that are introduced via adaptors in such a way that they are present at 5’ and/or 3’ ends of reads, such as iCLIP (individual nucleotide crosslinking and immunoprecipitation) ( Huppertz et al., 2014; König et al., 2010) or related protocols to study protein-RNA interactions and RNA methylation ( Lee & Ule, 2018), as well as ribosome profiling and many others ( Sugimoto et al., 2015). In such cases of ‘complex multiplexed libraries’, demultiplexing is typically performed at a later stage, using a fastq file consisting of all the raw reads as input. In addition to barcodes, iCLIP-style reads contain unique molecular identifiers (UMIs), which enable removal of PCR duplicates and may be spread across multiple positions in the read ( König et al., 2010; Smith et al., 2017; Figure 1A). Furthermore, combinatorial barcoding may be used, where each sample is identified by a unique combination of 5’ and 3’ barcodes. This allows more samples to be multiplexed on a single lane, can reduce technical variation by enabling earlier mixing of samples and enables incorporation of extra UMI nucleotides to increase UMI complexity, thus reducing the chance of UMI saturation at signal peaks ( Blazquez et al., 2018).

Figure 1. The Ultraplex workflow.

Figure 1.

A: An example read from a typical iCLIP/ribo-seq library, consisting of twin barcodes, UMIs present at multiple positions, a 3’ sequencing adaptor, and a read derived from a small RNA fragment. B: Flow diagram of the processing of an example read, using combinatorial demultiplexing with single end sequencing data.

Over the last decade, great effort has been made to improve the accuracy and speed of demultiplexing algorithms ( Aronesty, 2013; Kong, 2011; Lab, 2014; Liu, 2019; Martin, 2011; Murray & Borevitz, 2018; Roehr et al., 2017; Schubert et al., 2016). However, despite the large number of software packages being available for demultiplexing, we found that only iCount demultiplex ( König et al., 2010) was capable of demultiplexing lanes featuring experimental barcodes split over the 5’ and 3’ of single end reads and additionally allowing that different 5’ barcodes may have different sets of accompanying 3’ barcodes ( Table 1). For such libraries, using any of the other available options would require the demultiplexer to be run multiple times, with different settings for each intermediate file, increasing time and pipeline complexity. While the iCount demultiplex algorithm offers the greatest flexibility, it is limited by speed (a full lane can take more than eight hours to process), which presents a significant bottleneck in the analysis pipeline. Others have used Flexbar for demultiplexing iCLIP data ( Busch et al., 2020); however, Flexbar is unable to perform combinatorial 5’ and 3’ demultiplexing on single end data, and does not allow different 5’ barcodes to be associated with different sets of 3’ barcodes.

Table 1. A comparison of feature sets of various demultiplexers.

Software Combinatorial
demultiplexing for both
single- and paired-end data
Unique 3’
barcodes for
each 5’ barcode
Remove
adaptors
Quality
trim
Move UMIs
to read
header
Multi-threaded
Cutadapt No No Yes Yes Yes Yes
Demultiplex No N/A No No No No
Flexbar 3.0 No No Yes Yes Yes Yes
FASTX-Toolkit No N/A Yes Yes No No
Btrim No Yes Yes Yes No No
Axe No Yes No No No No
deML No Yes No No No No
AdaptorRemoval2 No Yes Yes Yes No Yes
iCount demultiplex Yes Yes Yes No Yes No
Ultraplex Yes Yes Yes Yes Yes Yes

We set out to create a demultiplexer suitable for processing the types of reads found in complex multiplexed libraries, without the caveats of existing software. Importantly, we wanted this software to run as quickly and efficiently as possible. We therefore required fully multithreaded operation, to take advantage of modern CPU architectures, and all processing to be performed in a single read-write cycle, so as to avoid read/write bottlenecks. By testing it on iCLIP libraries, we demonstrated that the resulting software, Ultraplex, meets all of these requirements. Thus, Ultraplex has broad applicability by greatly reducing the processing time for complex multiplexed libraries.

Methods

Implementation

Our software needed to be efficient, multithreaded and capable of performing all desired processing steps in a single read-write cycle ( Figure 1B). To this end, we utilised the high performance fastq decompression and parsing of dnaio and Cutadapt, and also used its reader/worker implementation and quality/adapter trimmer cython functions ( Martin, 2011). However, we developed bespoke solutions to demultiplexing, UMI detection and the writing of processed fastqs to enable fully multithreaded operation (at the time of writing cutadapt demultiplexing was single-threaded only), and allow more flexible demultiplexing ( Figure 2).

Figure 2. The Ultraplex pipeline.

Figure 2.

The major steps of the Ultraplex pipeline are outlined. Steps that use modified code based on Cutadapt are indicated.

NGS data typically consists of hundreds of millions of reads. For efficient performance, it is therefore essential to minimise the number of function calls required for each read that is processed. For this reason, Ultraplex first generates all possible DNA sequences (including those with undefined “N” bases) of the same length as the barcodes (ignoring UMIs), then tests each sequence against each user-defined barcode to find the best matches (reads with more than one best match are discarded). By storing these precalculated best matches in a python dictionary, each read can be matched to its correct barcode or barcode pair at approximately O(1) efficiency. Typically barcodes are <= 5 bases, meaning the sequence-barcode best match function is called at most 3,125 (5 5) times during dictionary generation, rather than 10 8–10 9 times if barcode matches were calculated for each read individually, as was the case in iCount demultiplexer.

Current multiplexing approaches use barcodes of the same type (i.e. 5’ or 3’), of consistent length, with 5’ or 3’ barcodes present at the same position within the read relative to the 5' or 3' end, respectively ( Figure 3). Such consistent design of multiplexing is important to ensure that all reads have mutually exclusive barcodes. We designed Ultraplex to enable flexible demultiplexing of any complex libraries that follow these described prerequisites. For data in which barcodes may be at unknown positions, however, alternative algorithms are required.

Figure 3. Examples of compatible and incompatible barcodes.

Figure 3.

“N” bases are randomers which would typically be used as UMIs. “b” bases are barcode bases. Compatible barcodes must have the same number of “b” bases, which must be at the same position relative to the 5’ or 3’ end of the read for 5’ and 3’ barcodes, respectively. Blue boxes indicate problematic regions of barcode.

Ultraplex allows UMIs of different barcodes to vary in length ( Figure 3). It optionally allows each 5’ barcode to be paired with an array of 3’ barcodes, provided these 3’ barcodes are consistent, but 3’ barcodes linked to different 5’ barcodes do not need to be consistent with each other. All other existing demultiplexers would require multiple runs for such complex demultiplexing, increasing pipeline complexity and run-time, and therefore Ultraplex increases the flexibility, convenience and speed of demultiplexing.

When single end sequencing is used with samples containing 3’ barcodes, only cDNAs which are short enough will contain the 3’ barcode in the sequencing read (e.g. inserts of maximal length of ~90 nt will be possible for SR100, depending on barcode length). Ultraplex allows for combinatorial demultiplexing with single end data (with the above caveats), which is not possible in most other demultiplexers ( Table 1). To reduce the likelihood of erroneous detection of 3’ barcodes during single end operation, Ultraplex requires by default that at least three nucleotides of the 3’ sequencing adaptor are detected and trimmed for a 3’ barcode to be assigned; this ensures that the end of the forward read genuinely corresponds to the end of the insert, and should thus contain a 3’ barcode. Moreover, it can also demultiplex paired end sequences in which a 3’ barcode is present at the 5’ end of the reverse read, with the forward and reverse reads stored in separate FASTQ files. Ultraplex uses the forward read to detect the 5’ barcode, and the reverse read to detect the 3' barcode.

We envisage that most users of Ultraplex will run the software on a high-performance computing cluster (HPCC). HPCCs typically have large amounts of free storage space and have many separate computational nodes, on which multiple jobs can be run in parallel. To take advantage of this, we added two additional running modes, "ultra", which writes uncompressed temporary files and then compresses after concatenation, and "sbatch compression", which uses SLURM to send each compression job to a separate HPCC node. As such, the sbatch compression mode can only be used in conjunction with ultra mode, and can only be run on HPCCs with SLURM job management. The use of these two modes reduces run time by a further ~30%. These combined improvements bring an >40x increase in speed as compared to iCount, currently the only alternative tool for single-step demultiplexing of single end sequencing libraries featuring combinatorial barcodes.

Operation

Ultraplex is a command-line tool which can be installed via pip or conda. It requires at least two input arguments: a comma-separated values (.csv) file of barcodes, and a compressed fastq file. A simple command would be:

ultraplex -b my_barcodes.csv -i my_fastq.fastq.gz

The first column of the barcode csv file should correspond to the 5’ barcodes; additional columns (separated by commas) correspond to any 3’ barcodes which are linked to the 5’ barcode. Optionally, each barcode can be assigned a sample name using a colon spacer (5’ barcodes cannot be assigned a sample name if linked to 3’ barcodes, as this would be ambiguous). N characters denote positions that correspond to UMIs. An example barcode csv could be as follows:

NNNATGCNN
NNNATTANNN:sample_2
NNNGCGGN,NNAA:sample_3,NNNTT

This barcode csv corresponds to four samples: two with only a 5’ barcode, and two with a shared 5’ but unique 3’ barcode. Only samples 2 and 3 are explicitly named. Note the consistency of the positioning of barcodes relative to the 5’ or 3’ ends ( Figure 3).

There are many optional arguments: -d (output directory for files), -m5 and -m3 (the number of mismatches allowed during 5’ and 3’ barcode detection), -q (the minimum phred quality during 3’ quality trimming), -t (number of threads used during operation), -a (the 3’ adaptor for the forward read), -o (an output filename prefix), -sb (sbatch compression for slurm clusters), -u (ultra mode, described above), -l (the minimum length of the read to be written out), -i2 (a second fastq for paired-end demultiplexing), -a2 (the sequencing adaptor to be trimmed for the reverse read), -inm/--ignore_no_match (does not write out reads which are not matched to sample).

Results

We benchmarked Ultraplex against iCount for a sequencing lane of 482,988,240 single end reads, consisting of 30 multiplexed iCLIP samples, where 17 have only a 5’ barcode, and the remainder have both 5’ and 3’ barcodes. Our testing was run on a high-performance computing cluster where each CPU node is an 8-core Intel E5-2640 Haswell CPU running at 2.6GHz, with hyperthreading enabled (two threads per core), running Linux 3.10.0–957.1.3.el7.x86_64. iCount was run with additional flags -- min_adapter_overlap 3 -mis 1 -ml 0 and Ultraplex with -mt 3 -m5 1 -q 0 -l 17. Using Ultraplex with both ultra and sb modes, 16 threads and 64GB memory, the lane was demultiplexed in 21.7 minutes, but we could push this as low as 15.6 minutes by allowing 32 threads and 128GB memory ( Figure 4A). Given 64GB memory and matched settings, iCount took 662 minutes (~ 11 hours). Even without ultra and sb modes enabled, Ultraplex only took 32.5 minutes. We also tested Ultraplex with lower resources; given eight threads and 16GB memory, the lane was demultiplexed in 43.4 minutes with ultra and sb modes enabled, and 64.7 minutes without. This demonstrates that even with modest resource allocation, Ultraplex is a very fast demultiplexer.

Figure 4. Performance of Ultraplex vs. iCount demultiplex.

Figure 4.

A: Runtime in minutes of iCount vs. Ultraplex (UP) with various parameters. B: Number of demultiplexed reads per barcode assigned by Ultraplex and iCount. C, D: Number of uniquely mapped and multimapped reads per sample after STAR mapping of the 30 iCLIP samples demultiplexed using Ultraplex or iCount.

Next we compared the output of iCount and Ultraplex to check consistency. Reassuringly, Ultraplex gave exactly the same results over the four different test runs. Comparing iCount to Ultraplex, the number of reads assigned per barcode were mostly the same, bar a few samples where iCount assigned slightly more reads ( Figure 4B). To explore this, we further filtered reads with cutadapt quality trimming removing 3’ nucleotides with PHRED score of less than 30, kept reads with a minimum length of 20 nucleotides, and mapped them to the human genome using STAR. The biggest deviance between iCount and Ultraplex assigned reads was found for the sample NNNNCCGGANNN. For this sample, only 0.99% (2090/211347) of the iCount-specific reads mapped to the genome, and 90% (1898/2090) of these were assigned as “spliced”, meaning the read had to be split to be mapped, indicative of low-quality mapping. The remaining 99.01% of the iCount-specific reads were determined by STAR to be too short to map. When comparing the total number of mapped reads for all samples (both unique and multi-mapped), we found the final results of Ultraplex and iCount were near-identical ( Figure 4C,D). Thus, Ultraplex produces essentially identical results to iCount, but is >40x faster.

Conclusions

The processing of iCLIP-style sequencing libraries consists of many sequential steps, which requires complex pipelines ( Busch et al., 2020; Chakrabarti et al., 2018). By performing multiple processing steps in one read/write cycle, and by using a multi-threaded and computationally efficient method, Ultraplex greatly improves the speed and ease of the initial steps of demultiplexing the fastq file. In our testing we find Ultraplex to be up to 40 times faster than the currently used iCount software. Furthermore, Ultraplex allows for extremely flexible demultiplexing, simplifying the analysis when multiple samples with varying barcode arrangements are sequenced together. By removing the largest time bottleneck in the CLIP analysis workflow, we now make it possible to go from multiplexed fastq to sample crosslinks in a matter of hours using a pipeline such as nf-core/clipseq ( Ewels et al., 2020).

Data availability

Underlying data

ArrayExpress: Ultraplex: An ultra-fast, flexible, all-in-one fastq demultiplexer. Accession number E-MTAB-10349; https://identifiers.org/arrayexpress:E-MTAB-10349.

Software availability

Source code available from: https://github.com/ulelab/ultraplex

Archived source code at time of publication: https://doi.org/10.5281/zenodo.4651285 ( Wilkins et al., 2021)

License: MIT

Software is also on PyPi and Bioconda.

Acknowledgements

We would like to thank Martina Hallegger for the use of her sequencing lane in our testing and validation. We would also like to thank Robert Goldstone for his comments.

Funding Statement

This work was supported by the Wellcome Trust (215593 to OW, and Joint Investigator Award 215593 to JU and NML) and by the Francis Crick Institute which receives its core funding from Cancer Research UK (FC001002), the UK Medical Research Council (FC001002), and the Wellcome Trust (FC001002). NML is a Winton Group Leader in recognition of the Winton Charitable Foundation's support towards the establishment of the Francis Crick Institute, and also receives core funding from the Okinawa Institute of Science & Technology Graduate University.

The funders had no role in study design, data collection and analysis, decision to publish, or preparation of the manuscript.

[version 1; peer review: 2 approved]

References

  1. Aronesty E: Comparison of Sequencing Utility Programs. Open Bioinforma J. 2013;7(1):1–8. 10.2174/1875036201307010001 [DOI] [Google Scholar]
  2. Blazquez L, Emmett W, Faraway R, et al. : Exon Junction Complex Shapes the Transcriptome by Repressing Recursive Splicing. Mol Cell. 2018;72(3):496–509.e9. 10.1016/j.molcel.2018.09.033 [DOI] [PMC free article] [PubMed] [Google Scholar]
  3. Busch A, Brüggemann M, Ebersberger S, et al. : iCLIP Data Analysis: A Complete Pipeline from Sequencing Reads to RBP Binding Sites. Methods. 2020;178:49–62. 10.1016/j.ymeth.2019.11.008 [DOI] [PubMed] [Google Scholar]
  4. Chakrabarti AM, Haberman N, Praznik A, et al. : Data Science Issues in Studying Protein-RNA Interactions with CLIP Technologies. Annu Rev Biomed Data Sci. 2018;1(1):235–61. 10.1146/annurev-biodatasci-080917-013525 [DOI] [PMC free article] [PubMed] [Google Scholar]
  5. Ewels PA, Peltzer A, Fillinger S, et al. : The Nf-Core Framework for Community-Curated Bioinformatics Pipelines. Nat Biotechnol. 2020;38(3):276–78. 10.1038/s41587-020-0439-x [DOI] [PubMed] [Google Scholar]
  6. Goodwin S, McPherson JD, McCombie WR: Coming of Age: Ten Years of next-Generation Sequencing Technologies. Nat Rev Genet. 2016;17(6):333–51. 10.1038/nrg.2016.49 [DOI] [PMC free article] [PubMed] [Google Scholar]
  7. Huppertz I, Attig J, D’Ambrogio A, et al. : iCLIP: Protein-RNA Interactions at Nucleotide Resolution. Methods. 2014;65(3):274–87. 10.1016/j.ymeth.2013.10.011 [DOI] [PMC free article] [PubMed] [Google Scholar]
  8. Kong Y: Btrim: A Fast, Lightweight Adapter and Quality Trimming Program for next-Generation Sequencing Technologies. Genomics. 2011;98(2):152–53. 10.1016/j.ygeno.2011.05.009 [DOI] [PubMed] [Google Scholar]
  9. König J, Zarnack K, Rot G, et al. : iCLIP Reveals the Function of hnRNP Particles in Splicing at Individual Nucleotide Resolution. Nat Struct Mol Biol. 2010;17(7):909–15. 10.1038/nsmb.1838 [DOI] [PMC free article] [PubMed] [Google Scholar]
  10. Lab H: FASTX Toolkit. Cold Spring Harb. Lab. Cold Spring Harb. NY. 2014. Reference Source [Google Scholar]
  11. Lee FCY, Ule J: Advances in CLIP Technologies for Studies of Protein-RNA Interactions. Mol Cell. 2018;69(3):354–69. 10.1016/j.molcel.2018.01.005 [DOI] [PubMed] [Google Scholar]
  12. Liu D: Fuzzysplit: Demultiplexing and Trimming Sequenced DNA with a Declarative Language. PeerJ. 2019;7:e7170. 10.7717/peerj.7170 [DOI] [PMC free article] [PubMed] [Google Scholar]
  13. Martin M: Cutadapt Removes Adapter Sequences from High-Throughput Sequencing Reads. EMBnet.journal. 2011;17(1):10–12. 10.14806/ej.17.1.200 [DOI] [Google Scholar]
  14. Murray KD, Borevitz JO: Axe: Rapid, Competitive Sequence Read Demultiplexing Using a Trie. Bioinformatics. 2018;34(22):3924–25. 10.1093/bioinformatics/bty432 [DOI] [PubMed] [Google Scholar]
  15. Wilkins OG, Capitanchik C, Chakrabarti N: ulelab/ultraplex: Ultraplex release.(Version 1.1.4). Zenodo. 2021. 10.5281/zenodo.4651285 [DOI] [Google Scholar]
  16. Roehr JT, Dieterich C, Reinert K: Flexbar 3.0 - SIMD and Multicore Parallelization. Bioinformatics. 2017;33(18):2941–42. 10.1093/bioinformatics/btx330 [DOI] [PubMed] [Google Scholar]
  17. Schubert M, Lindgreen S, Orlando L: AdapterRemoval v2: Rapid Adapter Trimming, Identification, and Read Merging. BMC Res Notes. 2016;9:88. 10.1186/s13104-016-1900-2 [DOI] [PMC free article] [PubMed] [Google Scholar]
  18. Smith T, Heger A, Sudbery I: UMI-Tools: Modeling Sequencing Errors in Unique Molecular Identifiers to Improve Quantification Accuracy. Genome Res. 2017;27(3):491–99. 10.1101/gr.209601.116 [DOI] [PMC free article] [PubMed] [Google Scholar]
  19. Sugimoto Y, Vigilante A, Darbo E, et al. : hiCLIP Reveals the in Vivo Atlas of mRNA Secondary Structures Recognized by Staufen 1. Nature. 2015;519(7544):491–94. 10.1038/nature14280 [DOI] [PMC free article] [PubMed] [Google Scholar]
Wellcome Open Res. 2021 Jul 16. doi: 10.21956/wellcomeopenres.18522.r44297

Reviewer response for version 1

Grzegorz Kudla 1

Wilkins et al. describe a new software tool, called Ultraplex, for demultiplexing of fastq files. Demultiplexing is an essential data preprocessing step in the analysis of various functional genomic experiments, including CLIP, iCLIP, eCLIP, PAR-CLIP, CRAC, Ribo-Seq, CLASH, and others.

Ultraplex inputs sequencing data in fastq format, and it outputs fastq files that have been separated using the barcode (index) information included in reads. The tool is flexible: it can process split barcodes distributed between 5' and 3' ends of reads; it processes UMI information to facilitate the removal of PCR duplicates; it allows processing of single- and paired-end data; and, thanks to the integration of the cutadapt tool, it allows trimming of adapter sequences and low quality nucleotides. As such, ultraplex can facilitate data analysis by running the entire data preprocessing as a single command.

I found the tool easy to install using pip, and intuitive to run. There is extensive documentation on github. The performance and outputs are as described in the manuscript. In future updates, it would be useful to add a functionality to allow processing of barcodes of different lengths, since those are sometimes used in the same run to increase nucleotide diversity in each cycle of sequencing.

Are the conclusions about the tool and its performance adequately supported by the findings presented in the article?

Yes

Is the rationale for developing the new software tool clearly explained?

Yes

Is the description of the software tool technically sound?

Yes

Are sufficient details of the code, methods and analysis (if applicable) provided to allow replication of the software development and its use by others?

Yes

Is sufficient information provided to allow interpretation of the expected output datasets and any results generated using the tool?

Yes

Reviewer Expertise:

RNA biology, RNA-protein interactions, RNA-RNA interactions

I confirm that I have read this submission and believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard.

Wellcome Open Res. 2021 Jun 18. doi: 10.21956/wellcomeopenres.18522.r44299

Reviewer response for version 1

Matteo Cereda 1

In this work, Wilkins et al. provide a fast and flexible multithreaded demultiplexer that can be applied to many NGS approaches solving the complex issue of combinatorial demultiplexing. The algorithm can deal with different experimental designs optimizing the computational cost. The software comes with a well-structured repository and all functions are clearly explained.

This Reviewer would suggest mentioning in the Introduction other examples of sequencing technologies (i.e. single cells, clonal tracking) that can take advantage of Ultraplex. 

Minor:

  • How would the computational cost increase with barcodes longer than 5nt (up to 10 max)?

Are the conclusions about the tool and its performance adequately supported by the findings presented in the article?

Yes

Is the rationale for developing the new software tool clearly explained?

Yes

Is the description of the software tool technically sound?

Yes

Are sufficient details of the code, methods and analysis (if applicable) provided to allow replication of the software development and its use by others?

Yes

Is sufficient information provided to allow interpretation of the expected output datasets and any results generated using the tool?

Yes

Reviewer Expertise:

bioinformatics; alternative splicing; cancer genomics

I confirm that I have read this submission and believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard.

Associated Data

    This section collects any data citations, data availability statements, or supplementary materials included in this article.

    Data Availability Statement

    Underlying data

    ArrayExpress: Ultraplex: An ultra-fast, flexible, all-in-one fastq demultiplexer. Accession number E-MTAB-10349; https://identifiers.org/arrayexpress:E-MTAB-10349.


    Articles from Wellcome Open Research are provided here courtesy of The Wellcome Trust

    RESOURCES