Skip to content

CholGen/bacpage

 
 

Repository files navigation

bacpage

This repository contains an easy-to-use pipeline for the assembly and analysis of bacterial genomes using ONT long-read or Illumina short-read technology. Read the complete documentation and instructions for bacpage and each of its functions here

Introduction

Advances in sequencing technology during the COVID-19 pandemic has led to massive increases in the generation of sequencing data. Many bioinformatics tools have been developed to analyze this data, but very few tools can be utilized by individuals without prior bioinformatics training.

This pipeline was designed to encapsulate pre-existing tools to automate analysis of whole genome sequencing of bacteria. Installation is fast and straightfoward. The pipeline is easy to setup and contains rationale defaults, but is highly modular and configurable by more advance users. Bacpage has individual commands to generate consensus sequences, perform de novo assembly, construct phylogenetic tree, and generate quality control reports.

Features

We anticipate the pipeline will be able to perform the following functions:

  • Reference-based assembly of Illumina paired-end reads
  • De novo assembly of Illumina paired-end reads
  • De novo assembly of ONT long reads
  • Run quality control checks
  • Variant calling using bcftools
  • Maximum-likelihood phylogenetic inference of processed samples and background dataset using iqtree
  • MLST profiling and virulence factor detection
  • Antimicrobial resistance genes detection
  • Plasmid detection

Installation

  1. Install mamba by running the following two command:
curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh"
bash Mambaforge-$(uname)-$(uname -m).sh
  1. Clone the bacpage repository:
git clone https://github.com/CholGen/bacpage.git
  1. Switch to the development branch of the pipeline:
cd bacpage/
git checkout -b split_into_command
  1. Install and activate the pipeline's conda environment:
mamba env create -f environment.yaml
mamba activate bacpage
  1. Install the bacpage command:
pip install .
  1. Test the installation:
bacpage -h
bacpage version

These command should print the help and version of the program. Please create an issue if this is not the case.

Updating

  1. Navigate to the directory where you cloned the bacpage repository on the command line:
cd bacpage/
  1. Activate the bacpage conda environment:
mamba activate bacpage
  1. Pull the lastest changes from GitHub:
git pull
  1. Update the bacpage conda environemnt:
mamba env update -f environment.yaml
  1. Reinstall the bacpage command:
pip install .

Usage

  1. Activate the bacpage conda environment:
mamba activate bacpage
  1. Create a directory specifically for the batch of samples you would like to analyze (called a project directory).
bacpage setup [your-project-directory-name]
  1. Place paired sequencing reads in the input/ directory of your project directory.
  2. From the pipeline's directory, run the reference-based assembly pipeline on your samples using the following command:
bacpage assemble [your-project-directory-name]

This will generate a consensus sequence in FASTA format for each of your samples and place them in <your-project-directory-name>/results/consensus_sequences/<sample>.masked.fasta. An HTML report containing alignment and quality metrics for your samples can be found at <your-project-directory-name>/results/reports/qc_report.html.

About

Snakemake pipeline for analysis of pathogen genomes. Will be pathogen-agnostic in the future but is currently designed for *Vibrio Cholerae*

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 83.4%
  • WDL 16.2%
  • Dockerfile 0.4%