Nvidia Parabricks is a suite of free software for genome analysis developed by Nvidia, designed to deliver high throughput by resorting to graphics processing unit (GPU) acceleration.[1]

Quick Facts Developer(s), Stable release ...
Nvidia Parabricks
Developer(s)Nvidia
Stable release
4.3.1-1 / July 1, 2024
PlatformNvidia GPUs
Available inEnglish
TypeMedical software
Websitewww.nvidia.com/en-us/clara/genomics/
Close

Parabricks offers workflows for DNA and RNA analyses and the detection of germline and somatic mutations, using open-source tools.[1] It is designed to improve the computing time of genomic data analysis while maintaining the flexibility required for various bioinformatics experiments.[1] Along with the speed of GPU-based processing, Parabricks ensures high accuracy, compliance with standard genomic formats and the ability to scale in order to handle very large datasets.[1]

Users can download and run Parabricks pipelines locally or directly deploy them on cloud providers, such as Amazon Web Services, Google Cloud, Oracle Cloud Infrastructure, and Microsoft Azure.[1]

Accelerated genome analysis fundamentals

Thumb
Standard pipeline to extract variants from an individual's genome
Thumb
Sequencing machines able to identify the sequence of bases constituting the DNA

The massive reduction in sequencing costs[2] resulted in a significant increase in the size and the availability of genomics data[3] with the potential of revolutionizing many fields, from medicine to drug design.[4]

Starting from a biological sample (e.g., saliva or blood), it is possible to extract the individual's DNA and sequence it with sequencing machinery to translate the biological information into a textual sequence of bases.[5] Then, once the entire genome is obtained through the genome assembly process, the DNA can be analyzed to extract information that is key in several domains, including personalized medicine and medical diagnostics.[6]

Typically, genomics data analysis is performed with tools based on Central Processing Units (CPUs) for processing.[7] Recently, several researchers in this field have underlined the challenges in terms of computing power delivered by these tools and focused their efforts on finding ways to boost the performance of the applications.[7] The issue has been addressed in two ways: developing more efficient algorithms or accelerating the compute-intensive part using hardware accelerators. Examples of accelerators used in the domain are GPUs, FPGAs, and ASICs[8]

In this context, GPUs have revolutionized genomics by exploiting their parallel processing power to accelerate computationally intensive tasks.[9][10] GPUs deliver promising results in these scenarios thanks to their architecture, composed of thousands of small cores capable of performing computations in parallel.[11] This parallelism allows GPUs to process multiple tasks simultaneously, significantly speeding up computations that can be broken down into independent units.[11] For instance, aligning millions of sequencing reads against a reference genome or performing statistical analyses on large genomic datasets can be completed much faster on GPUs than when using CPUs.[10] This facilitates the rapid analysis of genomic data from diverse sources, ranging from individual genomes to large-scale population studies,[12] accelerating the understanding of genetic diseases, genetic diversity, and more complex biological systems.[10]

Parabricks offers end users various collections of tools organized sequentially to analyze the raw data according to the user's requirements, called pipelines.[1] Nevertheless, users can decide to run the tools provided by Parabricks as a standalone, still exploiting GPU acceleration to overcome possible computational bottlenecks. Only some of the provided tools in the suite are GPU-based.[13]

Thumb
Overview of the main steps of NVIDIA Parabricks pipelines

Overall, all the pipelines share a standard structure. Most of the pipelines are built to analyze FASTQ data resulting from various sequencing technologies (e.g., short- or long-read). Input genomic sequences are firstly aligned and then undergo a quality control process. These two processes provide a BAM or a CRAM file as an intermediate result. Based on this data, the variant calling task that follows employs high-accuracy tools that are already widely used. As output, these pipelines provide the identified mutations in a VCF (or a gVCF).[13]

Germline pipeline

The germline pipeline offered by Parabricks follows the best practices[14] proposed by the Broad Institute in their Genome Analysis ToolKit (GATK).[15] The germline pipeline operates on the FASTQ files provided as input by the user to call the variants that, belonging to the germ line, can be inherited.[13]

This pipeline analyzes data computing the read alignment with BWA-MEM[16][17] and calling variants using GATK HaplotypeCaller,[18] one of the most relevant tools in the domain for germline variant calling.[13]

DeepVariant germline pipeline

Besides the pipeline that resorts to HaplotypeCaller to call variants, Parabricks also offers an alternative pipeline that still calls germline variants but is based on DeepVariant.[19][20] DeepVariant is a variant caller, developed and maintained by Google, capable of identifying mutations using a deep learning-based approach. The core of DeepVariant[19] is a convolutional neural network (CNN) that identifies variants by transforming this task into an image classification operation. In Parabricks, the inference process is accelerated in hardware. For this pipeline, only T4, V100, and A100 GPUs are supported.[13]

Analyses performed according to this pipeline are compliant with the use of BWA-MEM[16] for the alignment by Google's CNN for variant calling.[13]

Human_par pipeline

Still compliant with GATK best practices,[14] the human_par pipeline allows users to identify mutations in the entire human genome, including sex chromosomes X and Y, and, thus, it is compliant with their ploidy. For male samples, firstly, the pipeline runs HaplotypeCaller[18] on all the regions that do not belong to the X and Y chromosomes and on the pseudoautosomal region with ploidy equal to 1. Then, HaplotypeCaller analyses the X and Y regions without the pseudoautosomal region with ploidy 2. Regarding female samples, instead, the pipeline runs HaplotypeCaller on the entire genome, with ploidy 2.[13]

The sex of the sample can be determined in two main ways:

  1. Manually set with the --sample-sex option;
  2. Specify the X vs. Y ratio with range options --range-male and --range-female and let the tool automatically infer the sex of the samples based on the X and Y reads count.

The pipeline requires the user to specify at least one of these three options.[13]

As for the germline case, since this pipeline targets the germline variants, the pipeline resorts to BWA-MEM[16] for the alignment, followed by HaplotypeCaller[18] for variant calling.[13]

Somatic pipeline

Parabricks' somatic pipeline is designed to call somatic variants, i.e., those mutations affecting non-reproductive (somatic) cells. This pipeline can analyze both tumor and non-tumor genomes, offering either tumor-only or tumor/normal analyses for comprehensive examinations.[13]

As in the germline pipeline, the alignment task is carried out using BWA-MEM[16] followed by GATK Mutect[21] to identify the possible mutations. Mutect is used instead of HaplotypeCaller due to its focus on somatic mutations, as opposed to germline mutations targeted by HaplotypeCaller.[21]

RNA pipeline

This pipeline is optimized for short variant discovery (i.e., Single-nucleotide polymorphisms (SNPs) and indels) in RNAseq data. It follows the Broad Institute's best practices for these types of analyses.[13]

It relies on the STAR aligner,[22] a read aligner specialized for RNA sequences for aligning the reads, and HaplotypeCaller[18] for calling variants.[13]

Parabricks tools

Parabricks provides a collection of tools to perform genomics analyses, classified into six main categories related to their task.[13] These tools combined constitutes Parabricks' pipelines, and can be also used as-is.

For FASTQ and BAM files processing, the proposed tools are:[13]

  • applybsqr
  • bam2fq
  • bamsort
  • bqsr
  • fq2bam
  • fq2bamfast
  • fq2bam_meth
  • markdup
  • minimap2 (beta)

For calling variants, the proposed tools are:[13]

  • deepsomatic
  • deepvariant
  • deepvariant_germline
  • germline (GATK Germline Pipeline)
  • haplotypecaller
  • mutectcaller
  • pacbio_germline (beta)
  • postpon
  • prepon
  • somatic (Somatic Variant Caller)

For RNA processing, the proposed tools are:[13]

  • rna_fq2bam
  • starfusion

For results quality control, the proposed tools are:[13]

  • bammetrics
  • collectmultiplemetrics

For processing variants, the proposed tools are:[13]

  • dbsnp

For processing gVCF files, the proposed tools are:[13]

  • genotypegvcf
  • indexgvcf

Not all the listed tools are accelerated on GPU.[13]

Hardware support

Users can download and run Parabricks pipelines on their local servers, allowing for private, on-site data processing and analysis. They also can deploy Parabricks pipelines on cloud platforms, with improved scalability for larger datasets. Supported cloud providers include AWS, GCP, OCI, and Azure.[1]

In the latest release (v4.3.1-1), Parabricks includes support for the NVIDIA Grace Hopper super chip.[23] The NVIDIA GH200 Grace Hopper Superchip is a heterogeneous platform designed for high-performance computing and artificial intelligence, combining an NVIDIA Grace and a Hopper on a single chip.[24] This platform enhances application performance using both GPUs and CPUs, offering a programming model aimed at improving performance, portability, and productivity.[23]

Applications

Due to the computational power required by genomics workloads, Parabricks has found application in several research studies with different applicative domains, especially in cancer research.[25][26][27]

Scientists from Washington University used the Parabricks DeepVariant pipeline for identifying variants (e.g., SNPs and small indels) in long-read Hi-Fi whole-genome sequencing (WGS) data generated with PacBio's Revio SMRT Cell technology.[28]

In addition to the pipelines, individual components of Parabricks have been used as standalone tools in academic settings. For example, the accelerated DeepVariant has been employed in a novel process to reduce the processing time further for WGS Nanopore data.[29]

In 2022, Nvidia announced a collaboration with the Broad Institute to provide researchers with the benefits of accelerated computing. This partnership includes the entire suite of Nvidia's biomedical hardware-accelerated software suite called Clara, that includes Parabricks and MONAI.[30] Similarly, the Regeneron Genetics Center uses Parabricks to expedite the secondary analysis of the exomes they sequence in their high-throughput sequencing center, leverage the DeepVariant Germline pipeline inside their workflows.[31]

See also

References

Further reading

Wikiwand in your browser!

Seamless Wikipedia browsing. On steroids.

Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.

Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.