Literature DB >> 33987016

re-Searcher: GUI-based bioinformatics tool for simplified genomics data mining of VCF files.

Daniyar Karabayev1, Ulykbek Kairov1, Askhat Molkenov1, Kaiyrgali Yerulanuly1,2, Ilyas Kabimoldayev1, Asset Daniyarov1, Aigul Sharip1, Ainur Seisenova1, Zhaxybay Zhumadilov1,3.   

Abstract

BACKGROUND: High-throughput sequencing platforms generate a massive amount of high-dimensional genomic datasets that are available for analysis. Modern and user-friendly bioinformatics tools for analysis and interpretation of genomics data becomes essential during the analysis of sequencing data. Different standard data types and file formats have been developed to store and analyze sequence and genomics data. Variant Call Format (VCF) is the most widespread genomics file type and standard format containing genomic information and variants of sequenced samples.
RESULTS: Existing tools for processing VCF files don't usually have an intuitive graphical interface, but instead have just a command-line interface that may be challenging to use for the broader biomedical community interested in genomics data analysis. re-Searcher solves this problem by pre-processing VCF files by chunks to not load RAM of computer. The tool can be used as standalone user-friendly multiplatform GUI application as well as web application (https://nla-lbsb.nu.edu.kz). The software including source code as well as tested VCF files and additional information are publicly available on the GitHub repository (https://github.com/LabBandSB/re-Searcher). ©2021 Karabayev et al.

Entities:  

Keywords:  Bioinformatics; Genome analysis; Genomics; Genomics data mining; NGS data analysis; VCF; Variant call format

Year:  2021        PMID: 33987016      PMCID: PMC8101456          DOI: 10.7717/peerj.11333

Source DB:  PubMed          Journal:  PeerJ        ISSN: 2167-8359            Impact factor:   2.984


Introduction

Recent achievements in high-throughput sequencing technologies (Goodwin, McPherson & McCombie, 2016; van Dijk et al., 2018) have led to the generation of massive amounts of genomic data (Gao et al., 2019; The ICGC/TCGA Pan-Cancer Analysis of Whole Genomes Consortium, 2020) available for the research community. Many omics databases have been developed and have collected freely accessible datasets (Molkenov et al., 2019; Rigden & Fernández, 2020) for analysis by the bioinformatics community. Modern bioinformatics tools and methods are in high demand for analyzing and interpreting the big omics data generated by the different types of multi-omics platforms available. Different standard data types and file formats have been developed to store and analyze sequence and genomics data. Variant Call Format (VCF) (Danecek et al., 2011) is a tab-delimited text file format that is often used in bioinformatics to store genomic variants. A VCF file consists of the header, including meta-information lines and field definition lines (column names), and the body (data section). An arbitrary number of meta-information lines start with ’##’ and provide a description of the VCF file. The body of the file consists of eight mandatory columns: chromosome (CHROM), starting position of a variant (POS), variant identifiers (ID), the reference allele (REF), a list of alternate alleles (ALT), a PHRED-scaled quality score (QUAL), filter information regarding variant validity (FILTER), and annotation information (INFO). Additional columns describing samples can also be added. Each row of the file describes specific genomic variants (SNVs, INDELs, CNVs, and other structural variants) at the given chromosome and genomic position. VCF files often store information about numerous samples and can therefore reach huge sizes–gigabytes, or sometimes terabytes. This creates an issue for the readability of VCF files and further analysis for non-programmers, as manual data extraction and analysis using Microsoft Excel or other table processing software may not be possible due to the RAM capacity limitation of standard computers. We introduce re-Searcher, bioinformatics tool specifically developed for simplified mining and analysis of big-size VCF files. We developed a multi-platform user-friendly graphical user interface (GUI) tool for offline access, while re-Searcher web application can be used online via web browser. re-Searcher has been developed for the broader biomedical community and solves the problem of working and analyzing genomics data stored in VCF format.

Materials & Methods

Implementation

The re-Searcher application was written in Python 3 (Van Rossum & Drake, 2010) with the implementation of the Tkinter (Python Software Foundation, 2020) package to build the GUI, and the Pandas (McKinney, 2010) library to extract columns. For convenience of users who would like to build re-Searcher into their pipelines command line interface (CLI) is available as python script (see Availability). CLI mirrors functionality of GUI regarding files processing. We developed web version of re-Searcher for users to manipulate VCF files without downloading CLI or GUI versions of re-Searcher. The web application was developed using Django web framework (Django Software Foundation, 2013), to run python script via WSGI on Apache web server (Fielding & Kaiser, 1997). The web version runs re-Searcher scripts on server and takes input files from website and returns processed files to user to download. re-Searcher solves the problem of analyzing large VCF files by not loading the whole file directly into RAM, but instead pre-processing it in chunks and utilizing a simple and intuitive interface (Fig. 1). The main advantage of re-Searcher in comparison with other tools is the presence of a simple and user-friendly interface, GUI and web interface, instead of a CLI, as well as a lack of confused installation procedures typical for existing tools. The generalized workflow of re-Searcher consists of several steps: selecting an input file, setting up necessary filtering parameters, data processing, and exporting a filtered output VCF file (Fig. 2). re-Searcher browses and opens VCF files with extensions “.txt” or “.vcf”, before performing the following filtering and extraction options:
Figure 1

Main window of re-Searcher GUI.

Figure 2

Data processing workflow.

Header extraction

VCF files can be large and, if a user needs to know only certain information in a file header (e.g., a particular meta-line or sample ID), the software can extract only the header from the original VCF file and save it into a new file.

Keyword search

If genomic variants need to be filtered according to the presence of a keyword, the software can find these rows and extract them into a new VCF file. Users may input multiple keywords by accessing the entry field or by uploading a .txt file with keywords.

Sample extraction

If the user needs only particular sample IDs in a VCF file, the software can extract the necessary sample columns into a new file. Similar to a keyword search, users may input multiple sample IDs by accessing the entry field or by uploading a .txt file with the IDs.

Genotype format conversion

re-Searcher can convert numeric genotype (GT) format into letter format. The conversion option is one of the most used operations when working with VCF files, for example, in further comparative analysis of genetic variants or SNPs. The original GT format in VCF files is numeric (0/0, 0/1, 1/1 for biallelic sites or 1/2, 2/3, etc. for multiallelic sites), where 0 is a reference (REF) allele, 1 is a first alternative (ALT) allele, 2 is a second ALT allele and so on (Danecek et al., 2011; (Campbell et al., 2016). After GT format conversion REF number is replaced with REF letter and ALT number with corresponding ALT letter (Fig. 3). For instance, if GT of first sample is 0/1 and GT of second sample is 1/2 in numeric format, while REF and two ALT are GC, T and CAA respectively, then after conversion first sample’s letter GT becomes GC, T and second sample’s letter GT becomes T, CAA.
Figure 3

Genotype conversion example.

(A) The numeric genotype of biallelic and multiallelic variants before conversion, and (B) letter genotype of the same variants after conversion.

Genotype conversion example.

(A) The numeric genotype of biallelic and multiallelic variants before conversion, and (B) letter genotype of the same variants after conversion. The final output file is a filtered and processed VCF file and is generated with a complement log file containing the file processing information, name of specified file and work directory with outputs.

Results and Discussion

We have compared the main features of re-Searcher with other existing and open source tools VIVA (Tollefson et al., 2019), VCFtools (Danecek et al., 2011), GEMINI (Paila et al., 2013), BrowseVCF (Salatino & Ramraj, 2016), VCF.Filter (Müller et al., 2017), VCF-Miner (Hart et al., 2016) and prepared a detailed table (Table 1). The compared tools have been developed and implemented in different programming languages (Julia, C++, Perl, Java and Python) and dedicated libraries. VCFtools is one of the most cited and advanced tools for processing VCF files, but it requires additional computational skills for effective usage. VIVA is the only tool that provides the possibility for advanced visualization and plotting figures. In addition to re-Searcher, other tools with a GUI available for users are BrowseVCF, VCF.Filter, and VCF-Miner, while web interface is available in only in re-Searcher (Fig. 4) and GEMINI. From these, only re-Searcher, BrowseVCF and VCF.Filter tools support multiple operational systems (Windows, MacOS, Linux). Searching the whole VCF file by keyword and the corresponding extraction of data based on keywords are features available on re-Searcher and BrowseVCF, whereas genotype conversion is a unique feature of re-Searcher.
Table 1

Comparison of re-Searchers features with similar tools.

CategoriesFeaturesre-SearcherVIVAVCFtoolsGEMINIBrowseVCFVCF.FilterVCF-Miner
Technical AspectsCompatibility with operation systemWindows, MacOS, LinuxWindows, MacOS, LinuxWindows, MacOS, LinuxWindows, MacOS, LinuxWindows, MacOS, LinuxWindows, MacOS, LinuxWindows
LanguagePythonJuliaC++, PerlPythonPython, JavaScript, CSS, HTML5JavaJava
InterfaceGUI, Web Browser, CLICLI, Jupyter NotebookCLIWeb Browser, CLIGUI, CLIGUIGUI
Works offlineVVVXXVV
Portable launcherVXXXVXX
FunctionalitySearch by keywordVXXXVXX
Sample selectionVVVVVVV
Genotype format conversionVXXXXXX
VisualizationXVXXXXX
Export filtered VCF fileVXVXXVV
Figure 4

Web interface of re-Searcher available via browser at https://nla-lbsb.nu.edu.kz.

re-Searcher is a multi-platform tool and can be run on MacOS, Windows and Linux operating systems. Performance of re-Searcher has been evaluated on these PC platforms (Windows 10 Pro OS and Linux Mint 17 OS-based PC: CPU Intel Core i5-8250U 1.80 GHz, RAM 4Gb and MacOS Catalina based PC: CPU Intel Core i7, 3.2 GHz, RAM 8 Gb) with different VCF file sizes. Different size VCF files (0.081 Gb, 0.814 Gb, 1.320 Gb, 1.980 Gb and 7.950 Gb) were used as input datasets for evaluating re-Searcher performance. The results of the performance benchmarking are shown in Table 2.
Table 2

re-Searcher multi-platform run time comparison.

OSVCF file size (Gb)Execution Time (sec)
Extract headerKeyword extractionSample ID extractionGT conversion
Linux0.0812.2279.99515.24338.375
0.8142.49738.10621.334117.186
1.3202.46267.26061.159206.868
1.9802.11575.331104.167330.527
7.9506.145366.137200.3471117.168
Windows0.08114.86522.4824.78549.642
0.81418.89848.82021.398139.641
1.32021.05444.66959.329238.192
1.98010.91953.95890.446339.275
7.95016.308502.996309.1771320.197
MacOS0.0819.6279.29710.42316.298
0.8145.26220.91619.705116.82
1.3206.28635.43353.247186.181
1.9803.23137.923119.136286.544
7.9505.457148.612254.1281130.225

Notes.

operational system

genotype

seconds

gigabyte

Notes. operational system genotype seconds gigabyte We have used big VCF files from the 1000 Genomes Project (The 1000 Genomes Project Consortium, 2015) and then generated the different sized testing VCF files from this dataset. The Linux-based systems had the fastest execution time for different operations in comparison with Windows and MacOS systems.

Availability

re-Searcher executable software including source code, tested VCF files and additional information are publicly available on the GitHub repository https://github.com/LabBandSB/re-Searcher. re-Searcher is free bioinformatics tool and open to all users without login and registration requirements and do not require an installation of additional tools. CLI version of re-Searcher is also available on the GitHub repository for incorporation into other pipelines. In addition, web version of re-Searcher is available at https://nla-lbsb.nu.edu.kz.

Conclusions

Exploring and analyzing VCF files generated after the bioinformatics processing of sequencing data is one of the important steps performed by researchers during analysis and meta-analysis of genotype/phenotype associations. We have developed and introduced an easy-to-use bioinformatics tool, re-Searcher, with several unique features for mining big VCF files and realized with a simple graphical user interface and web interface that makes it easily available for clinicians and researchers without any computational skills. Several improvements such as visualization options (clustering and plotting functions) with Principal Component Analysis and heatmap methodologies are under future development of re-Searcher.
  13 in total

Review 1.  The Third Revolution in Sequencing Technology.

Authors:  Erwin L van Dijk; Yan Jaszczyszyn; Delphine Naquin; Claude Thermes
Journal:  Trends Genet       Date:  2018-06-22       Impact factor: 11.639

Review 2.  Coming of age: ten years of next-generation sequencing technologies.

Authors:  Sara Goodwin; John D McPherson; W Richard McCombie
Journal:  Nat Rev Genet       Date:  2016-05-17       Impact factor: 53.242

3.  Multiallelic Positions in the Human Genome: Challenges for Genetic Analyses.

Authors:  Ian M Campbell; Tomasz Gambin; Shalini Jhangiani; Megan L Grove; Narayanan Veeraraghavan; Donna M Muzny; Chad A Shaw; Richard A Gibbs; Eric Boerwinkle; Fuli Yu; James R Lupski
Journal:  Hum Mutat       Date:  2015-12-31       Impact factor: 4.878

4.  Pan-cancer analysis of whole genomes.

Authors: 
Journal:  Nature       Date:  2020-02-05       Impact factor: 49.962

5.  The variant call format and VCFtools.

Authors:  Petr Danecek; Adam Auton; Goncalo Abecasis; Cornelis A Albers; Eric Banks; Mark A DePristo; Robert E Handsaker; Gerton Lunter; Gabor T Marth; Stephen T Sherry; Gilean McVean; Richard Durbin
Journal:  Bioinformatics       Date:  2011-06-07       Impact factor: 6.937

6.  Before and After: Comparison of Legacy and Harmonized TCGA Genomic Data Commons' Data.

Authors:  Galen F Gao; Joel S Parker; Sheila M Reynolds; Tiago C Silva; Liang-Bo Wang; Wanding Zhou; Rehan Akbani; Matthew Bailey; Saianand Balu; Benjamin P Berman; Denise Brooks; Hu Chen; Andrew D Cherniack; John A Demchok; Li Ding; Ina Felau; Sharon Gaheen; Daniela S Gerhard; David I Heiman; Kyle M Hernandez; Katherine A Hoadley; Reyka Jayasinghe; Anab Kemal; Theo A Knijnenburg; Peter W Laird; Michael K A Mensah; Andrew J Mungall; A Gordon Robertson; Hui Shen; Roy Tarnuzzer; Zhining Wang; Matthew Wyczalkowski; Liming Yang; Jean C Zenklusen; Zhenyu Zhang; Han Liang; Michael S Noble
Journal:  Cell Syst       Date:  2019-07-24       Impact factor: 11.091

7.  A global reference for human genetic variation.

Authors:  Adam Auton; Lisa D Brooks; Richard M Durbin; Erik P Garrison; Hyun Min Kang; Jan O Korbel; Jonathan L Marchini; Shane McCarthy; Gil A McVean; Gonçalo R Abecasis
Journal:  Nature       Date:  2015-10-01       Impact factor: 49.962

8.  VCF.Filter: interactive prioritization of disease-linked genetic variants from sequencing data.

Authors:  Heiko Müller; Raul Jimenez-Heredia; Ana Krolo; Tatjana Hirschmugl; Jasmin Dmytrus; Kaan Boztug; Christoph Bock
Journal:  Nucleic Acids Res       Date:  2017-07-03       Impact factor: 16.971

9.  VCF-Miner: GUI-based application for mining variants and annotations stored in VCF files.

Authors:  Steven N Hart; Patrick Duffy; Daniel J Quest; Asif Hossain; Mike A Meiners; Jean-Pierre Kocher
Journal:  Brief Bioinform       Date:  2015-07-25       Impact factor: 11.622

10.  VIVA (VIsualization of VAriants): A VCF File Visualization Tool.

Authors:  G A Tollefson; J Schuster; F Gelin; A Agudelo; A Ragavendran; I Restrepo; P Stey; J Padbury; A Uzun
Journal:  Sci Rep       Date:  2019-09-02       Impact factor: 4.379

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.