项目作者: oschwengers

项目描述 :
A scalable bacterial genome assembly, annotation and analysis pipeline
高级语言: Groovy
项目地址: git://github.com/oschwengers/asap.git
创建时间: 2017-08-06T23:09:49Z
项目社区:https://github.com/oschwengers/asap

开源协议:GNU General Public License v3.0

下载


DOI:10.1371/journal.pcbi.1007134
License: GPL v3
Don't judge me
GitHub release
Docker Pulls
DOI

ASA³P - Automatic Bacterial Isolate Assembly, Annotation and Analyses Pipeline

ASA³P Overview

Contents

Description

ASA³P is an automatic and highly scalable assembly, annotation and higher-level
analyses pipeline for closely related bacterial isolates.

ASA³P is a fully automatic, locally executable and scalable assembly, annotation
and higher-level analysis pipeline creating results in standard bioinformatics
file formats as well as sophisticated HTML5 documents. Its main purpose is the
automatic processing of NGS WGS data of multiple closely related isolates, thus
transforming raw reads into assembled and annotated genomes and finally gathering
as much information on every single bacterial genome as possible.
Per-isolate analyses are complemented by comparative insights. Therefore, the
pipeline incorporates many best-in-class open source bioinformatics tools and
thus minimizes the burden of ever-repeating tasks. Envisaged as a
preprocessing tool it provides comprehensive insights as well as a general overview
and comparison of analysed genomes along with all necessary result files for subsequent
deeper analyses. All results are presented via modern HTML5 documents comprising
interactive visualizations.

Features

Per isolate

  • quality/adapter clipping
  • assembly (Illumnia, PacBio & ONT)
  • scaffolding
  • annotation
  • taxonomic classification (Kmer/ANI, 16S and ANI)
  • multi locus sequence typing (MLST)
  • antibiotic resistance detection
  • virulence factor detection
  • reference mapping
  • SNP detection

Comparative

  • calculation of core/pan genome and singleton genes
  • phylogenetic tree creation

Availability

All necessary files are hosted at Zenodo: DOI

Targeting different project sizes, i.e. number of genomes which should be
analysed as a single project, we distribute ASA³P in two versions:

  • Docker: linux container image for small to medium projects
  • OpenStack: highly scalable cloud version for (very) large projects

For both the following files are necessary:

  • ASA³P tarball containing binaries, 3rd party executables and databases: asap.tar.gz
  • configuration template: config.xls

Note:
As the ASA³P tarball contains all databases and 3rd party executables necessary,
it is rather huge (23 Gb zipped, 29 Gb unzipped) and thus, download times may be quit long.
To unzip the tarball a deflating tool supporting multithreadding might be beneficial,
e.g. pigz on linux (sudo apt install pigz for Ubuntu).

Additional files:

  • comprehensive manual: manual.pdf
  • configuration example: config-example.xls

Additional example and benchmark projects are hostet in a distinct repository at Zenodo: DOI

  • 4 public L. monocytogenes genomes: example-lmonocytogenes-4.tar.gz
  • 32 public L. monocytogenes genomes: example-lmonocytogenes-32.tar.gz
  • 8 E. coli project merely showing support of different input types: example-ecoli-input.tar.gz

Docker

For small to medium projects (up to ~200 isolates) but also for the sake of
simplicity, reproducibility and easy distribution, we offer ASA³P as a
Docker image hosted at:
Docker Hub (https://hub.docker.com/r/oschwengers/asap/). Please, follow the
official instructions (https://docs.docker.com/install) to install Docker.

Setup:

  1. $ sudo docker pull oschwengers/asap
  2. $ wget https://zenodo.org/record/3780003/files/asap.tar.gz
  3. $ tar -xzf asap.tar.gz
  4. $ rm asap.tar.gz

Running an ASA³P Container using the asap-docker.sh shell wrapper script:

  1. $ #<ASAP_DIR>/asap-docker.sh -p <PROJECT_DIR> [-s <SCRATCH_DIR>] [-a ASAP_DIR] [-z] [-c] [-d]
  2. $ asap/asap-docker.sh -p example-lmonocytogenes -s /tmp

Parameters & Options:

  • -p <PROJECT_DIR>: mandatory: path to the actual project directory (containing config.xls and data directory)
  • -a <ASAP_DIR>: optional: path to the ASA³P dir in case the script was moved/copied somewhere else
  • -s <SCRATCH_DIR>: optional: path to a distinct scratch/tmp dir
  • -z: optional: skip characterization steps
  • -c: optional: skip comparative analysis steps
  • -d: optional: enable verbose logs for debugging purposes

Note

  1. This shell wrapper script should remain within the ASA³P directory in order to
    correctly extract related paths. In case the script was moved/copied somewhere else,
    you have to provide the path via -a <ASAP_DIR>.
  2. The script gathers user:group ids and passes these to the Docker container thus,
    files created by ASA³P automatically have the correct user ownerships instead of sudo ones.
  3. The script will ask for the sudo password as Docker containers can currently only
    be executed as sudo. This is pure technical necessity unrelated to ASA³P itself.

Complete example:

  1. $ sudo docker pull oschwengers/asap
  2. $ wget https://zenodo.org/record/3780003/files/asap.tar.gz
  3. $ tar -xzf asap.tar.gz
  4. $ rm asap.tar.gz
  5. $ wget https://zenodo.org/record/3606761/files/example-lmonocytogenes-4.tar.gz?download=1
  6. $ tar -xzf example-lmonocytogenes-4.tar.gz
  7. $ rm example-lmonocytogenes-4.tar.gz
  8. $ asap/asap-docker.sh -p example-lmonocytogenes-4/

For further information have a look at the Docker readme (docker/DOCKER.md ).

Cloud OpenStack

ASA³P’s OpenStack based cloud version targets the analysis of hundreds to
even thousands of bacterial isolates. Therefore, it features automatic creation,
setup and orchestration of an SGE based compute cluster and its entire
underlying infrastructure. Therefore, the OpenStack cloud version internally
takes advantage of the BiBiGrid (https://github.com/BiBiServ/bibigrid) framework.
Hence, analysis of thousands of genomes can be achieved in a highly parallel
manner and adequate amount of time. ASA³P takes care of all setup and orchestration
aspects and thus hides away as much technical complexity as possible. For further
information please have a look at our user manual.

In order to trigger an OpenStack based cloud project, you need the following
additional cloud related files:

  • ASA³P cloud tarball (containing binaries, property files and a customized BiBiGrid version):
    asap-cloud.tar.gz (md5sum: c584dedcaf17963a240dbabfad95f608)

Once ASA³P is properly setup you can start it by executing a single shell script:

  1. $ ~/asap-cloud/asap-cloud.sh -i <INSTANCE_ID> -o <OPEN_STACK_RC_FILE> -p <PROJECT_DIR>

Parameters:

  • <INSTANCE_ID>: VM id of the gateway instance (VM you start ASA³P from)
  • <OPEN_STACK_RC_FILE>: OpenStack RC file providing cloud and project information
  • <PROJECT_DIR>: path to the actual project directory (containing config.xls and data directory)

For a comprehensive and detailed description of how to setup an OpenStack project
and ASA³P therein, please have a look at our manual stored here:
DOI

Input/Output

Input

ASA³P is able to process raw sequencing reads from Illumina (SE/PE), PacBio (bax.h5/ubam) and ONT
(basecalled as fastq) as well as assembled contigs (fasta) and annotated genomes
(GenBank/EMBL/GFF).

ASA³P expects all input files and information regarding a single execution
(i.e. a “project”) within a dedicated directory. All necessary information
(meta information, reference genomes, isolate/sample names and files) are
provided via an Excel config file named config.xls.
A corresponding template can be downloaded here.
For further details on how to fill out a proper configuration file, please have
a look at the manual
and the exemplary projects listed above. All input files referenced in a configuration
spreadsheet need to be placed in a subdirectory called data.

Example:

  1. project-dir
  2. ├── config.xls
  3. ├── data
  4. ├── reference-genome-1.gbk
  5. ├── reference-genome-2.fasta
  6. ├── isolate-1-1.fastq.gz
  7. ├── isolate-1-2.fastq.gz
  8. ├── isolate-2-1.fastq.gz
  9. ├── isolate-2-2.fastq.gz
  10. ├── isolate-3.1.bax.h5
  11. ├── isolate-3.2.bax.h5
  12. ├── isolate-3.3.bax.h5
  13. ├── ...

Output

tl; dr
Just open your browser and open the index.html file located at:

  1. project-dir
  2. ├── reports (HTML5 reports)
  3. ├── index.html

In order to provide a first glimpse into the results of the pipeline, we configured
a public login to a static web server for demonstration purposes only at:
https://www.computational.bio.uni-giessen.de/asap/

  1. $ login: asap-test
  2. $ password: asap-test

ASA³P stores all output files within the specified project directory
leaving input files untouched:

  • empty status file indicating ASA³P current status, one of:
    • status.running
    • status.finished
    • status.failed
  • log file (asap.log)
  • internal configuration file (config.json)
  • report directory containing HTML5 report pages (reports)

Furthermore, for each analysis ASA³P creates a corresponding subdirectory
containing result files such as:

  • empty status file indicating an analysis’ status, one of:
    • status.running
    • status.finished
    • status.failed
  • JSON file (info.json) comprising collected and aggregated information
  • binary result files in standard file formats (.fasta, .gbk, .gff, .bam, .vcf.gz, etc…)

Where necessary ASA³P creates subdirectories for each isolate within an
analysis directory.

Example:

  1. project-dir
  2. ├── [state.running | state.finished | state.failed]
  3. ├── asap.log (global logging file)
  4. ├── config.xls (config spreadsheet)
  5. ├── config.json (internal config)
  6. ├── reports (HTML5 reports)
  7. ├── index.html
  8. ├── ...
  9. ├── reads_qc (quality clipped read files)
  10. ├── <sample-name>
  11. ├── ├── [state.finished | state.failed]
  12. ├── ├── isolate-1-1.fastq.gz
  13. ├── ├── isolate-1-2.fastq.gz
  14. ├── ├── info.json
  15. ├── ...
  16. ├── assembly (assemblies)
  17. ├── <sample-name>
  18. ├── ├── [state.finished | state.failed]
  19. ├── ├── <sample-name>.fasta
  20. ├── ├── <sample-name>-discarded.fasta
  21. ├── ├── info.json
  22. ├── ...
  23. ├── scaffolds (scaffolded contigs)
  24. ├── <sample-name>
  25. ├── ├── [state.finished | state.failed]
  26. ├── ├── <sample-name>.fasta (scaffolds)
  27. ├── ├── <sample-name>-pseudo.fasta (pseudo genome)
  28. ├── ├── info.json
  29. ├── ...
  30. ├── annotations
  31. ├── <sample-name>
  32. ├── ├── [state.finished | state.failed]
  33. ├── ├── <sample-name>.gbk (Genbank)
  34. ├── ├── <sample-name>.gff (GFF3)
  35. ├── ├── <sample-name>.ffn (gene sequences)
  36. ├── ├── <sample-name>.faa (protein sequences)
  37. ├── ├── info.json
  38. ├── ...
  39. ├── taxonomy (taxonomic classfication results)
  40. ├── [<sample-name>.finished | <sample-name>.failed]
  41. ├── <sample-name>.json
  42. ├── ...
  43. ├── mlst (multi-locus sequence typing results)
  44. ├── [<sample-name>.finished | <sample-name>.failed]
  45. ├── <sample-name>.json
  46. ├── ...
  47. ├── abr (antibiotic resistance genes detection)
  48. ├── [<sample-name>.finished | <sample-name>.failed]
  49. ├── <sample-name>.json
  50. ├── ...
  51. ├── vf (virulence factor detection results)
  52. ├── [<sample-name>.finished | <sample-name>.failed]
  53. ├── <sample-name>.json
  54. ├── ...
  55. ├── mappings (reference mappings)
  56. ├── [<sample-name>.finished | <sample-name>.failed]
  57. ├── <sample-name>.json
  58. ├── <sample-name>.bam
  59. ├── <sample-name>.bam.bai
  60. ├── ...
  61. ├── snps (called single nucleotide polymorphisms)
  62. ├── [<sample-name>.finished | <sample-name>.failed]
  63. ├── <sample-name>.json
  64. ├── <sample-name>.consensus.fasta (mpileup consensus file)
  65. ├── <sample-name>.vcf.gz (SNPs in variant calling format file)
  66. ├── <sample-name>.vcf.gz.tbi
  67. ├── <sample-name>.chk (bcftools stats)
  68. ├── <sample-name>.csv (SNPeff per gene statisics)
  69. ├── ...
  70. ├── corepan
  71. ├── [state.finished | state.failed]
  72. ├── info.json
  73. ├── core.fasta (core genome sequences)
  74. ├── pan.fasta (pan genome sequences)
  75. ├── pan-matrix.tsv (pan genome matrix)
  76. ├── <sample-name>.json
  77. ├── ...
  78. ├── phylogeny
  79. ├── [state.finished | state.failed]
  80. ├── info.json
  81. ├── tree.nwk (phylogenetic tree in newick file)
  82. ├── consensus.fasta (global consensus file)
  83. ├── data

Citation

Schwengers et al. (2020). ASA³P: An automatic and scalable pipeline for the assembly, annotation and higher level analysis of closely related bacterial isolates. PLOS Computational Biology 16(3): e1007134. https://doi.org/10.1371/journal.pcbi.1007134

License

ASA³P itself is published and distributed under GPL3 license. In contradiction,
some of its dependencies bundled within the ASA³P tarball (asap.tar.gz file) are
published under different licenses, e.g. GPL2, BSD, MIT, LGPL, etc.
A file (README.md) within the ASA³P directory contains a list of all
dependencies and related licenses.

NOTE
Please, notice that some bundled dependencies are published under a
free-for-academic or free-for-non-commercial usage license model.
To our best knowledge this is true for at least the following databases:

  • CARD: free for academic usage
  • PubMLST: proprietary but free to use

FAQ

  • Is there a public example project?
    Just download and use one of these exemplary projects containing a tiny set of 4 public
    Listeria monocytogenes genomes from SRA, a larger 32 L. monocytogenes set as well as
    a comprehensive E. coli set covering all potential input data types:
    DOI

  • Why do I have to pre-basecall ONT reads?
    Unfortunately, there are too many combinations of flow cells, sequencing kits, etc.
    We had to ask to put all these information in the config sheets which would blow them up.
    Therefore, we decided to outsource these very specific pre-processing step.

  • Can I install ASA³P by myself?
    Yes you can! Nevertheless, we highly encourage to use either the Docker
    container or the OpenStack images. As there are too many possible combinations of
    linux distributions and software/database versions, we cannot give any support for this.

  • I’m facing an error/bug. What shall I do?
    If you run into any issues with ASA³P, we’d be happy to hear about it!
    Please, start the pipeline with -d (verbose debugging logs) and do not hesitate
    to file an issue including as much of the following as possible:

  • a detailed description of the issue
  • the asap.log file within your project/data directory
  • in case you can already pinpoint the error: the log file of the failed subanalysis