Literature DB >> 29204317

BGDMdocker: a Docker workflow for data mining and visualization of bacterial pan-genomes and biosynthetic gene clusters.

Gong Cheng1,2, Quan Lu3, Ling Ma4, Guocai Zhang4, Liang Xu5, Zongshan Zhou1.   

Abstract

Recently, Docker technology has received increasing attention throughout the bioinformatics community. However, its implementation has not yet been mastered by most biologists; accordingly, its application in biological research has been limited. In order to popularize this technology in the field of bioinformatics and to promote the use of publicly available bioinformatics tools, such as Dockerfiles and Images from communities, government sources, and private owners in the Docker Hub Registry and other Docker-based resources, we introduce here a complete and accurate bioinformatics workflow based on Docker. The present workflow enables analysis and visualization of pan-genomes and biosynthetic gene clusters of bacteria. This provides a new solution for bioinformatics mining of big data from various publicly available biological databases. The present step-by-step guide creates an integrative workflow through a Dockerfile to allow researchers to build their own Image and run Container easily.

Entities:  

Keywords:  Bacillus amyloliquefaciens; Biosynthetic gene clusters; Docker; Pan-genome

Year:  2017        PMID: 29204317      PMCID: PMC5712467          DOI: 10.7717/peerj.3948

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


Introduction

Docker is an open source project and platform for building, shipping, and running any app, enabling the widespread distribution of applications. Docker allows users to package an application, along with all its dependencies, into a standardized unit for software development (https://docs.docker.com/). Docker includes three core structural compositions: Image, Container, and Repository. An image can start software as complex as a database, wait for you (or someone else) to add data, store the data for later use, and then wait for the next person. Containers afford similar resource isolation and allocation benefits as virtual machines; however, a different architectural approach allows the former to be much more portable and efficient. When an app is in Docker containers, setting up and maintaining different environments or tools for each language is not necessary (https://hub.docker.com/). The Docker Hub Registry allows users to find, manage, and pull Images from community, official, and private image libraries, and is free to use for public repositories (https://www.docker.com/whatisdocker). GitHub is a web-based source code version control repository and Internet hosting service that is mostly used for code. Compared with GitHub, Docker Hub (https://hub.docker.com/) is a cloud-based registry service of Docker, whose most notable advantages include workflow automation throughout the development pipeline based on Images and Counter of Docker. Academic bioinformatics software programs generally suffer from limitations such as installation and configuration difficulties, large dependencies, and restrictions on the amount of data that may be uploaded to online servers. Therefore, several excellent software programs are of limited use to biologists. Bioinformatics tools may be merged with Docker technology to build reproducible and convenient types of workflows. Docker provides programmers, development teams, and bioinformaticians with a common toolbox that allows users to take full advantage of bioinformatics tools, thus helping to build, ship, and run any app, as well as distribute apps anywhere. Docker technology is suitable for use in the field of bioinformatics because of certain advantages and characteristics that allow applications to run in an isolated, self-contained package. This package may be efficiently distributed and executed in a portable manner across a wide range of computing platforms (Aranguren & Wilkinson, 2015; Belmann et al., 2015; Hosny et al., 2016). To date, numerous bioinformatics tools based on Docker have been developed and published in different programming languages such as Perl and BioPerl (https://hub.docker.com/_/perl/; https://hub.docker.com/r/bioperl/bioperl/), python and biopython (https://hub.docker.com/_/python/; https://hub.docker.com/r/biopython/biopython), and R and Bioconductor (https://hub.docker.com/_/r-base/; https://hub.docker.com/r/bioconductor/release_base/). These projects have contributed to official Docker Images. The famous Galaxy program has also contributed to Docker Galaxy (Grüning, 2017). Here, we used Docker technology to rapidly construct a pan-genome analysis process that may be used in Linux, Windows, or Mac environments (64-bit). The present process may also be deployed as a cloud-based system such as with Amazon EC2 or other cloud providers. This workflow should provide a useful service to biologists in the field of bioinformatics. Docker Containers have only a minor impact on the performance of common genomic pipelines (Tommaso et al., 2015). Bacillus amyloliquefaciens has been extensively studied as an important biological control agent owing to its ability to inhibit the growth of fungi and bacteria (Nam et al., 2016). Using Docker, we rapidly executed a container (on Ubuntu 16.04 and Win10 hosts) to analyze the pan-genome and reveal biosynthetic gene cluster features of 44 B. amyloliquefaciens strains, as well as to visualize the results. The analytical workflow consisted of three toolkits: Prokka v1.11 (Seemann, 2014), panX (Ding, Baumdicker & Neher, 2017), and antiSMASH3.0 (Weber et al., 2015), for prokaryotic genome annotation, pan-genome analysis and visualization, and analysis of biosynthetic gene clusters, respectively. We included all of these applications and their dependencies in a BGDMdocker (bacterial genome data mining Docker-based) to enable the workflow to be implemented online with a single run. We additionally wrote three standalone Dockerfiles for Prokka, panX, and antiSMASH in order to meet the various requirements of different users. We recommend setting up the workflow with three independent files, each with a specific purpose. This method is presented in the Supplementary Information. Here, we describe how to build the workflow and conduct the analysis in detail.

Materials and Methods

Installation of latest Docker on your host

1. Copy the following commands for quickly and easily installing the latest Docker-CE (https://docs.docker.com/engine/installation/) (Ubuntu, Debian, Raspbian, Fedora, Centos, Redhat, Suse, Oracle, Linux etc. are all applicable): $ curl -fsSL get.docker.com -o get-docker.sh $ sudo sh get-docker.sh If user would like to use Docker as a non-root user, you should now consider adding your user to the “docker” group, e.g., using: $ sudo usermod -aG docker Type the following commands at your shell prompt. If this outputs the Docker version, your installation was successful. 2. Installing latest Docker on Windows 10 Enterprise (https://docs.docker.com/docker-for-windows/install/): The current version of Docker for Windows runs on 64-bit Windows 10 Pro, Enterprise, and Education editions. Download “InstallDocker.msi” (https://download.docker.com/win/stable/InstallDocker.msi). Double-click “InstallDocker.msi” to run the installer. Follow the install wizard to accept the license, authorize the installer, and proceed with the installation. Type the following commands at your shell prompt (cmd.exe or PowerShell). If this outputs the Docker version, your installation was successful.

Use Docker to build the BGDMdocker workflow

1. On your host (with Docker), type the following command lines to build a BGDMdocker workflow: $ git clone or: download “BGDMdocker-master.zip” ( file $ unzip BGDMdocker-master.zip 2. Build workflow Images: $ cd ./BGDMdocker $ docker build -t BGDMdocker:latest . Or: pull Images of BGDMdocker from DockerHub (https://hub.docker.com/r/cgwyx/bgdmdocker/), such as: $ docker pull cgwyx/bgdmdocker 3. Run a Container from the BGDMdocker Image: $ docker run -it --rm -v home:home -p 8000:8000 BGDMdocker:latest /bin/bash If use the “-v home:home” parameter, Docker will mount the local folder/home into the Container under /home, storing all of your data in one directory in the home folder of the host operating system; then, you may access the directories of home from inside the Container. We analyzed the pan-genome and biosynthetic gene clusters of 44 B. amyloliquefaciens strains using the BGDMdocker workflow. For detailed commands, see the Supplementary Information.

Results

Fast and reproducible building of the BGDMdocker workflow across computing platforms using Docker

Using Docker technology, the Dockerfile script file can build Images and run a container in seconds or milliseconds on Linux and Windows. The file may also be deployed in Mac and cloud-based systems such as Amazon EC2 or other cloud providers. The Dockerfile is a small, plain-text file that may be easily stored and shared. Therefore, the user is not required to install and configure the programs. Here, based on Debian 8.0 (Jessie) Image, we have established a novel Docker-based bioinformatics platform for the study of microbe genomes and pan-genomes (Fig. 1). The workflow, which offers the advantages of cross-platform and modular reuse, provides biologists with simple and standardized tools to extract biological information from their own experiments and from online sequence databases. Researchers may therefore focus solely on mining information from the obtained sequences rather than determining how to install the software package. We have uploaded this Dockerfile to GitHub for sharing with relevant scientific researchers.
Figure 1

Schematic of BGDMdocker workflow based on Docker: building image and running container from Dockerfile, then login interaction patterns to run software.

This enables the user to load and save Image.tar, run and commit Container, pull from and push to Docker repository.

Schematic of BGDMdocker workflow based on Docker: building image and running container from Dockerfile, then login interaction patterns to run software.

This enables the user to load and save Image.tar, run and commit Container, pull from and push to Docker repository.

Datamining and visualizing the pan-genomes of B. amyloliquefaciens

In order to explore the result data, a website (http://bapgd.hygenomics.com/pangenome/home) was built for the interactive exploration of the B. amyloliquefaciens pan-genome and biosynthetic gene clusters using the BGDMdocker workflow. Visualization allowed for the rapid filtering and searching of genes. For each gene cluster, panX displayed an alignment and a phylogenetic tree, mapped mutations within that cluster to the branches of the tree, and inferred gene losses and gains on the core-genome phylogeny. Here, we provide the summary statistics of the pan-genome (Table 1), the phylogenetic relationships of the 44 B. amyloliquefaciens strains (Fig. 2), and screenshots of the website (http://bapgd.hygenomics.com/pangenome/home) (Figs. 3 and 4). All data may be visualized and downloaded without registration.
Table 1

Summary statistics of pan-genome of 44 B. amyloliquefaciens strains.

AccessionStrainsGene numbers in pan-genome of B. amyloliquefaciens (total genes, 172,388; core gene clusters, 2,306)Gene of strain genomes
Total geneCore geneAcc geneUni geneAll geneAll protein
CYHL01000001JRS53,8562,3101,546573,8703,863
CYHP01000001JRS83,9942,3111,6831184,0164,006
NC_014551DSM73,9352,3071,628214,0303,811
NC_017188TA2083,9352,3071,62813,9743,847
NC_017190LL33,9812,3081,673194,0373,887
NC_017191XH73,9422,3071,63563,9833,846
NC_017912Y24,0992,3101,789464,1483,983
NC_020272IT-453,8032,3101,49343,8323,678
NC_022653CC1783,7542,3101,444193,7953,641
NC_023073LFB1123,7612,3081,453193,8013,637
NZ_AUNG01000001Lx-113,7002,3091,39153,7423,619
NZ_AUWK01000001HB-263,7972,3111,486303,8423,714
NZ_AVQH01000001EGD-AQ1414,0792,3111,768544,1213,995
NZ_AWQY01000001UASWS BA13,7942,3091,48583,8063,681
NZ_CP006058UMAF66393,8252,3111,514203,8793,716
NZ_CP006960UMAF66143,8042,3111,493133,8503,695
NZ_CP007242KHG193,7752,3101,465193,8163,658
NZ_CP010556L-H153,7242,3091,41563,7693,615
NZ_CP011278L-S603,7282,3101,41873,7733,611
NZ_CP013727MBE12833,7942,3141,480243,8563,681
NZ_CP014700S4993,7762,3101,46653,8193,671
NZ_CP014783B153,8202,3151,505133,8753,704
NZ_CP016913RD7-73,5972,3081,289393,6563,483
NZ_DF836091CMW13,7712,3111,4601283,9013,706
NZ_JCOC01000001EBL113,7332,3081,425203,7733,682
NZ_JMEG01000001B18953,8242,3061,5181674,0263,623
NZ_JQNZ01000001X13,7242,3091,41533,7663,619
NZ_JTJG01000001JJC33M3,8882,3091,5791213,9523,796
NZ_JXAT01000001LPL-K1033,7092,3091,400153,7433,637
NZ_JZDI0100000112B8,1662,3545,8124,0408,1947,985
NZ_KB206086DC-123,9102,3111,599503,9843,842
NZ_KN723307TF2813,6402,3121,32853,7823,571
NZ_LGYP010000016293,5362,3131,223113,7853,427
NZ_LJAU01000001Bs0064,0422,3121,730464,0743,969
NZ_LJDI01000020XK-4-13,7992,3101,489143,8213,701
NZ_LMAG01000001RHNK223,7812,3091,472373,8373,698
NZ_LMAT01000001Jxnuwx-13,9302,3091,6212464,0083,870
NZ_LMUC01000016H573,8162,3101,506423,8593,732
NZ_LPUP0100001111B913,7902,3111,479493,8923,702
NZ_LQQW01000001M493,6942,3111,383213,7413,617
NZ_LQYO01000001B41403,7712,3071,464493,8473,713
NZ_LQYP01000001B4253,9212,3101,611394,0343,844
NZ_LYUG01000001SRCM1012663,7242,3061,418153,7813,628
NZ_LZZO01000001SRCM1012943,9462,3081,6381753,9823,850

Note:

Genome sequences of 44 B. amyloliquefaciens (https://www.ncbi.nlm.nih.gov/genome/genomes/848) strains downloaded from GenBank RefSeq database: “Acc gene” refers to accessory gene (dispensable gene); “Uni gene” refers to unique gene (strain-specific gene); “All genes” refers to gene of *.gbff files recorder, including Pseudo Genes; “Total genes” refers to those used for pan-genome analysis gene of *.gbff files recorder, excluding Pseudo Genes.

Figure 2

Phylogenetic tree of 44 B. amyloliquefaciens strains.

The tree was constructed using all genes shared between the 44 strains (2,306 core genes). The scale bar represents genetic distance.

Figure 3

Screenshot of website (http://bapgd.hygenomics.com/pangenome/home) for visualization of gene cluster table (A) and sequence alignment (B).

Figure 4

Screenshot of website (http://bapgd.hygenomics.com/pangenome/home) for visualization of Phylogenetic tree of 44 B. amyloliquefaciens strains (A) and genes (B).

The scale bar represents genetic distance.

Note: Genome sequences of 44 B. amyloliquefaciens (https://www.ncbi.nlm.nih.gov/genome/genomes/848) strains downloaded from GenBank RefSeq database: “Acc gene” refers to accessory gene (dispensable gene); “Uni gene” refers to unique gene (strain-specific gene); “All genes” refers to gene of *.gbff files recorder, including Pseudo Genes; “Total genes” refers to those used for pan-genome analysis gene of *.gbff files recorder, excluding Pseudo Genes.

Phylogenetic tree of 44 B. amyloliquefaciens strains.

The tree was constructed using all genes shared between the 44 strains (2,306 core genes). The scale bar represents genetic distance.

Screenshot of website (http://bapgd.hygenomics.com/pangenome/home) for visualization of Phylogenetic tree of 44 B. amyloliquefaciens strains (A) and genes (B).

The scale bar represents genetic distance.

Datamining and visualizing of biosynthetic gene clusters of B. amyloliquefaciens

Results from the identification and analysis of the biosynthetic gene clusters of 44 B. amyloliquefaciens strain genomes, using the BGDMdocker workflow, have been uploaded to our website (http://bapgd.hygenomics.com/pangenome/home). All data may be downloaded without registration. Here, we provide brief summary statistics for the biosynthetic gene clusters of all 44 strains (Table 2), as well as an example of the type and number of biosynthetic gene clusters in the Y2 (NC_017912) strain (Table 3) and representative screenshots of the website (http://bapgd.hygenomics.com/pangenome/home) (Figs. 5 and 6). There are a total of 31 gene clusters in the genome of Y2. Among these, 21 gene clusters show similarities to known clusters in MIBiG (http://mibig.secondarymetabolites.org/) such as surfactin, mersacidin, and fengycin; the remaining 10 gene clusters are unknown.
Table 2

Summary statistics of biosynthetic gene clusters of 44 B. amyloliquefaciens strains.

AccessionStrainsBiosynthetic gene clustersGenome of strains
TotalKnownUnknownTypeSize (Mb)GeneProtein
CYHL01000001JRS5382711124.031483,8703,863
CYHP01000001JRS8422616114.09094,0164,006
NC_014551DSM731181393.98024,0303,811
NC_017188TA208291712103.937513,9743,847
NC_017190LL329171294.001994,0373,887
NC_017191XH7291712103.93923,9833,846
NC_017912Y2312110114.238624,1483,983
NC_020272IT-45321913113.936873,8323,678
NC_022653CC17835191693.916833,7953,641
NC_023073LFB112352015103.942753,8013,637
NZ_AUNG01000001Lx-11372512113.886893,7423,619
NZ_AUWK01000001HB-2645301593.989363,8423,714
NZ_AVQH01000001EGD-AQ141362610124.222594,1213,995
NZ_AWQY01000001UASWS BA1372512113.944093,8063,681
NZ_CP006058UMAF6639352114104.034643,8793,716
NZ_CP006960UMAF6614322012104.005143,8503,695
NZ_CP007242KHG19322012103.953363,8163,658
NZ_CP010556L-H15321913103.905973,7693,615
NZ_CP011278L-S60321913103.903023,7733,611
NZ_CP013727MBE1283352213123.979933,8563,681
NZ_CP014700S499331914113.935933,8193,671
NZ_CP014783B15291910104.006753,8753,704
NZ_CP016913RD7-731171483.688213,6563,483
NZ_DF836091CMW1302010113.908573,9013,706
NZ_JCOC01000001EBL11352312113.929323,7733,682
NZ_JMEG01000001B1895382414124.107284,0263,623
NZ_JQNZ01000001X1402812103.92113,7663,619
NZ_JTJG01000001JJC33M362511123.961663,9523,796
NZ_JXAT01000001LPL-K10336231393.873273,7433,637
NZ_JZDI0100000112B694920117.596768,1947,985
NZ_KB206086DC-1228199114.016563,9843,842
NZ_KN723307TF281312011113.987643,7823,571
NZ_LGYP01000001629311813103.903373,7853,427
NZ_LJAU01000001Bs006453015104.173094,0743,969
NZ_LJDI01000020XK-4-1372413123.941813,8213,701
NZ_LMAG01000001RHNK22382711123.978183,8373,698
NZ_LMAT01000001Jxnuwx-1402713104.089324,0083,870
NZ_LMUC01000016H57342311113.958833,8593,732
NZ_LPUP0100001111B91332013104.023663,8923,702
NZ_LQQW01000001M49413011113.886653,7413,617
NZ_LQYO01000001B4140392514114.014253,8473,713
NZ_LQYP01000001B4252920993.96824,0343,844
NZ_LYUG01000001SRCM101266311912113.765363,7813,628
NZ_LZZO01000001SRCM101294322012103.962753,9823,850

Note:

“Total” of Biosynthesis gene clusters includes “Known” and “Unknown.” “Known” of Biosynthesis gene clusters is inferred from the MIBiG (Minimum Information about a Biosynthetic Gene cluster, http://mibig.secondarymetabolites.org). “Unknown” of Biosynthesis gene clusters is detected by Cluster Finder and further categorized into putative (“Cf_putative”) biosynthetic types. A full integration of the recently published Cluster Finder algorithm now allows the use of this probabilistic algorithm to detect putative gene clusters of unknown types; “–” of host is unrecorded.

Table 3

Biosynthetic gene clusters of Y2(NC_017912) strain.

ClusterTypeMost similar known clusterMIBiG BGC-ID
Cluster 1NrpsSurfactin_biosynthetic_gene_cluster (43% of genes show similarity)BGC0000433_c1
Cluster 2Cf_putative
Cluster 3Cf_putative
Cluster 4Cf_fatty_acid
Cluster 5PhosphonatePactamycin_biosynthetic_gene_cluster (3% of genes show similarity)BGC0000119_c1
Cluster 6Cf_saccharidePlantathiazolicin/plantazolicin_biosynthetic_gene_cluster (33% of genes show similarity)BGC0000569_c1
Cluster 7Cf_putative
Cluster 8Otherks
Cluster 9Cf_fatty_acid
Cluster 10Cf_putative
Cluster 11Terpene
Cluster 12Cf_fatty_acid
Cluster 13Cf_putative
Cluster 14Cf_putative
Cluster 15TransatpksMacrolactin_biosynthetic_gene_cluster (90% of genes show similarity)BGC0000181_c1
Cluster 16Nrps-TransatpksBacillaene_biosynthetic_gene_cluster (85% of genes show similarity)BGC0001089_c1
Cluster 17Nrps-TransatpksFengycin_biosynthetic_gene_cluster (93% of genes show similarity)BGC0001095_c1
Cluster 18Terpene
Cluster 19Cf_saccharide-T3pks
Cluster 20TransatpksDifficidin_biosynthetic_gene_cluster (100% of genes show similarity)BGC0000176_c1
Cluster 21Cf_putative
Cluster 22Nrps-BacteriocinBacillibactin_biosynthetic_gene_cluster (100% of genes show similarity)BGC0000309_c1
Cluster 23Cf_saccharide
Cluster 24Nrps
Cluster 25Cf_saccharideTeichuronic_acid_biosynthetic_gene_cluster (100% of genes show similarity)BGC0000868_c1
Cluster 26Cf_putative
Cluster 27Cf_saccharideBacilysin_biosynthetic_gene_cluster (100% of genes show similarity)BGC0001184_c1
Cluster 28Cf_putative
Cluster 29LantipeptideMersacidin_biosynthetic_gene_cluster (90% of genes show similarity)BGC0000527_c1
Cluster 30Cf_saccharide
Cluster 31Cf_putative

Note:

“Cf putative” refers to putative biosynthetic types (unknown types) detected by Cluster Finder and further categorized, known types are from the MIBiG (Minimum Information about a Biosynthetic Gene cluster, http://mibig.secondarymetabolites.org).

Figure 5

Screenshot of visualization of the total number of biosynthetic gene clusters of the Y2 strain.

Figure 6

Screenshot of website (http://bapgd.hygenomics.com/pangenome/home) for the visualization of Transatpks type cluster of Y2 (most similar known cluster to the Difficidin_biosynthetic_gene_cluster).

Note: “Total” of Biosynthesis gene clusters includes “Known” and “Unknown.” “Known” of Biosynthesis gene clusters is inferred from the MIBiG (Minimum Information about a Biosynthetic Gene cluster, http://mibig.secondarymetabolites.org). “Unknown” of Biosynthesis gene clusters is detected by Cluster Finder and further categorized into putative (“Cf_putative”) biosynthetic types. A full integration of the recently published Cluster Finder algorithm now allows the use of this probabilistic algorithm to detect putative gene clusters of unknown types; “–” of host is unrecorded. Note: “Cf putative” refers to putative biosynthetic types (unknown types) detected by Cluster Finder and further categorized, known types are from the MIBiG (Minimum Information about a Biosynthetic Gene cluster, http://mibig.secondarymetabolites.org).

Discussion

The Dockerfiles of BGDMdocker scripts are convenient for deployment and sharing, and it is easy for other users to customize the Images by editing the Dockerfile directly. This is in contrast to Makefiles and other installations, for which the resulting builds differ across different machines (Boettiger, 2015). Dockerfiles can maintain and update related adjustments, rapidly recover from system failure events, control versions, and build application environments with the optimal flexibility. BGDMdocker Images enable portability and modular reuse. Bioinformatics tools are written in a variety of languages and require different operating environment configurations across platforms. Docker technology is capable of executing the same functions and services in different environments without additional configurations (Folarin, Dobson & Newhouse, 2015), thus creating reproducible tools with high efficiency. By constructing pipelines with different tools, bioinformaticians may automatically and effectively analyze biological problems of interest. The BGDMdocker Container enables application isolation with high efficiency and flexibility. Applications may run Container independently with Docker technology, and each management command (start, stop, boot, etc.) may be executed in seconds or milliseconds. Hundreds or thousands of Containers may be run on a single host at same time (Ali, El-Kalioby & Abouelhoda, 2016), thus ensuring that the failure of one task does not cause disruption of the entire process: new Containers may be initialized rapidly to continue the task until the completion of the entire process, thus improving overall efficiency. In recent years, several online tools and software suites have been developed for pan-genome analysis, including Roary, PGPA, SplitMEM, PanGP, and PanTools. However, generally, the installation of these pipelines with many dependencies, but a single function, is complex and challenging. Therefore, limiting researchers’ ability directly focus on their analyses of interest (Table 4). Although the BGDMdocker workflow includes several tools, installing and running the software is quite simple. Biologists may automatically install, configure, and test the scripts, making these processes faster and the results repeatable.
Table 4

Function of BGDMdocker workflow compared with other pan-genome tools.

ToolsAutomatic installationCross platformResult visualizationGenome annotationGene cluster mining
Roary××××
PGPA×××××
SplitMEM×××××
PanGP×××××
PanTools××××
BGDMdocker

Note:

√ is provided with the function, × is not provided with the function.

Note: √ is provided with the function, × is not provided with the function.

Conclusion

Here, we present a BGDMdocker workflow to achieve bacterial and viral genome annotation, pan-genome analysis, mining of biosynthetic gene clusters, and visualization of results on a local host or online. This allows researchers to browse information for every gene, including duplication, diversity, indel events, and sequence alignments, as well as for biosynthetic gene clusters, including structure, type, description, detailed annotation, and predicted core structure of the target compounds. These tools and their installation commands and dependencies were all written in a Dockerfile. We used this Dockerfile to build a Docker Image and run Container for analyzing the pan-genome of 44 B. amyloliquefaciens strains retrieved from a public database. The pan-genome included a total of 172,388 genes and 2,306 core gene clusters. The visualization of the pan-genomic data included alignments, phylogenetic trees with mutations within each cluster mapped to the branches of the tree, and inference of gene losses and gains on the core-genome phylogeny for each gene cluster. In addition, 997 known (MIBiG: http://mibig.secondarymetabolites.org database) and 553 unknown (antiSMASH-predicted clusters and Pfam database) genes in biosynthetic gene clusters and orthologous groups were identified in all strains. The BGDMdocker workflow for the analysis and visualization of pan-genomes and biosynthetic gene clusters may be fully reused immediately across different computing platforms (Linux, Windows, Mac, and cloud-based systems), with flexible and rapid deployment of integrated software packages across various platforms. This workflow may also be used for other pan-genome analyses and visualization of other species. Additionally, the visual display of data provided in this study may be completely duplicated. All resulting data and relevant tools and files may be downloaded from our website (http://bapgd.hygenomics.com/pangenome/home) with no registration required. Click here for additional data file.
  8 in total

1.  Prokka: rapid prokaryotic genome annotation.

Authors:  Torsten Seemann
Journal:  Bioinformatics       Date:  2014-03-18       Impact factor: 6.937

2.  AlgoRun: a Docker-based packaging system for platform-agnostic implemented algorithms.

Authors:  Abdelrahman Hosny; Paola Vera-Licona; Reinhard Laubenbacher; Thibauld Favre
Journal:  Bioinformatics       Date:  2016-03-02       Impact factor: 6.937

3.  panX: pan-genome analysis and exploration.

Authors:  Wei Ding; Franz Baumdicker; Richard A Neher
Journal:  Nucleic Acids Res       Date:  2018-01-09       Impact factor: 16.971

4.  The impact of Docker containers on the performance of genomic pipelines.

Authors:  Paolo Di Tommaso; Emilio Palumbo; Maria Chatzou; Pablo Prieto; Michael L Heuer; Cedric Notredame
Journal:  PeerJ       Date:  2015-09-24       Impact factor: 2.984

5.  antiSMASH 3.0-a comprehensive resource for the genome mining of biosynthetic gene clusters.

Authors:  Tilmann Weber; Kai Blin; Srikanth Duddela; Daniel Krug; Hyun Uk Kim; Robert Bruccoleri; Sang Yup Lee; Michael A Fischbach; Rolf Müller; Wolfgang Wohlleben; Rainer Breitling; Eriko Takano; Marnix H Medema
Journal:  Nucleic Acids Res       Date:  2015-05-06       Impact factor: 16.971

6.  Bioboxes: standardised containers for interchangeable bioinformatics software.

Authors:  Peter Belmann; Johannes Dröge; Andreas Bremges; Alice C McHardy; Alexander Sczyrba; Michael D Barton
Journal:  Gigascience       Date:  2015-10-15       Impact factor: 6.524

7.  Biological Control Potential of Bacillus amyloliquefaciens KB3 Isolated from the Feces of Allomyrina dichotoma Larvae.

Authors:  Hyo-Song Nam; Hyun-Ju Yang; Byung Jun Oh; Anne J Anderson; Young Cheol Kim
Journal:  Plant Pathol J       Date:  2016-06-01       Impact factor: 1.795

8.  Enhanced reproducibility of SADI web service workflows with Galaxy and Docker.

Authors:  Mikel Egaña Aranguren; Mark D Wilkinson
Journal:  Gigascience       Date:  2015-12-03       Impact factor: 6.524

  8 in total
  1 in total

Review 1.  Pangenomics in Microbial and Crop Research: Progress, Applications, and Perspectives.

Authors:  Sumit Kumar Aggarwal; Alla Singh; Mukesh Choudhary; Aundy Kumar; Sujay Rakshit; Pardeep Kumar; Abhishek Bohra; Rajeev K Varshney
Journal:  Genes (Basel)       Date:  2022-03-27       Impact factor: 4.141

  1 in total

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