Python library for plotting synteny diagram for phage and bacterial sequences.
Project description
synphage
Pipeline to create phage genome synteny graphics from genbank files
This library provides an intuitive tool for creating synteny graphics highlighting the conserved genes between multiple genome sequences.
This tool is primarily designed to work with phage genomes or other short sequences of interest, although it works with bacterial genomes as well.
Despite numerous synteny tools available on the market, this tool has been conceived because none of the available tools allows to visualise gene conservation in multiple sequences at one glance (as typically cross-links are drawn only between two consecutive sequences for a better readability).
As a result synphage
was born.
In addition to show conserved genes across multiple sequences, the originality of this library stands in the fact that when working on the same set of genomes the initial blast and computation need to be run only once. Multiple graphics can then be generated from these data, comparing all the genomes or only a set of genomes from the analysed dataset. Moreover, the generated data is also available to the user as a table, where individual genes or groups of genes can easily be checked by name for conservation or uniqueness.
Stats
Install
synphage
is available via pip install or as docker image.
For more detailed instruction, consult synphage installation guide.
Via pip
pip install synphage
Via docker
docker pull vestalisvirginis/synphage:<tag>
[!NOTE] Replace
<tag>
with the latest image tag.
See complete documention
Additional dependencies
synphage relies on one non-python dependency that needs to be manually installed when synphage is installed with pip:
- Blast+ >= 2.12.0
Install Blast+
using your package manager of choice, e.g. for linux ubuntu:
apt update
apt install -y ncbi-blast+
or by downloading an executables appropriate for your system. For help, check the complete installation documentation.
Usage
Setup
synphage requires the user to specify the following environment variables:
INPUT_DIR
: to specify the path to the folder containing the user'sGenBank files
. If not set, this path will be defaulted to the temp folder. This path can also be modified at run time.OUTPUT_DIR
: to specify the path to the folder where the data generated during the run will be stored. If not set, this path will be defaulted to the temp folder.EMAIL
(optional): to connect to the NCBI database.API_KEY
(optional): to connect to the NCBI database and download files.
[!TIP] These variables can be set with a
.env
file located in your working directory (Dagster will automatically load them from the .env file when initialising the pipeline) or can be passed in the terminal before starting to run synphage:
.envINPUT_DIR=path/to/my/data/ OUTPUT_DIR=path/to/synphage/data EMAIL=user.email@email.com API_KEY=UserApiKeybash
export INPUT_DIR=<path_to_data_folder> export OUTPUT_DIR=<path_to_synphage_folder> export EMAIL=user.email@email.com export API_KEY=UserApiKey
[!NOTE]
For docker users, theINPUT_DIR
is defaulted to/user_files
andOUTPUT_DIR
is defaulted to/data
.
For more detailed explainations on usingsynphage docker image
, check our documentation.
Running Synphage
A step-by-step example, performed on a group of closely related Lactococcus phages is available in the documentation.
Starting Dagster
synphage
uses Dagster. In order to run synphage jobs, you need to start dagster first.
Set up the environment variable DAGSTER_HOME in order to keep a trace of your previous run (optional). For more information, see Dagster documentation.
export DAGSTER_HOME=<dagster_home_directory>
dagster dev -h 0.0.0.0 -p 3000 -m synphage
For docker users:
docker run -p 3000 vestalisvirginis/synphage:<tag>
For more information and options, check running synphage container.
Running the jobs
synphage pipeline is composed of four steps
that need to be run sequencially
.
See complete documention
Step 1: Loading the data into the pipeline
Data is loaded into the pipeline from the input_folder
set by the user and/or
downloaded
from the NCBI.
step_1a_get_user_data
: load user's datastep_1b_download
: download data from the NCBI
[!IMPORTANT]
- Only one of the jobs is required to successfully run step 1.
- Configuration is required for
step_1b_download
job:search_key
, that receives the keywords for querying the NCBI database.
Query config options :
Field Name | Description | Default Value |
---|---|---|
search_key |
Keyword(s) for NCBI query | Myoalterovirus |
[!TIP] Both jobs can be run if the user needs both, local and downloaded files.
Step 2: Data validation
Completeness of the data is validated at this step.
step_2_make_validation
: perform checks and transformations on the dataset that are required for downstream processing
[!IMPORTANT] This step is required and cannot be skipped.
Step 3: Blasting the data
The blast is performed at this step of the pipeline and three different options
are available:
step_3a_make_blastn
: run a Nucleotide BLAST on the datasetstep_3b_make_blastp
: run a Protein BLAST on the datasetstep_3c_make_all_blast
: run both, Nucleotide and Protein BLAST simultaneously
[!IMPORTANT] Only one of the above jobs is required to successfully run step 3.
[!TIP] Both
step_3a_make_blastn
andstep_3b_make_blastp
jobs can be run sequencially, mainly in the case where the user decide to run the second job based on the results obtained for the first one.
Step 4: Synteny plot
The graph is created during this last step. The step 4 can be run multiple times with different configurations and different sets of data, as long as the data have been processed once through steps 1, 2 and 3.
step_4_make_plot
: use data generated at step 3 and the genbank files to plot the synteny diagram
[!IMPORTANT] Configuration is require for
step_4_make_plot
job:graph_type
, that receives eitherblastn
orblastp
as value for specifying what dataset to use for the plot. Default value is set toblastn
. For more information about the configuration at step 4, check the documentation.
[!TIP] Different synteny plots can be generated from the same set of genomes. In this case the three first steps only need to be run once and the fourth step,
step_4_make_plot
, can be triggered separately for each graphs. For modifying the sequences to be plotted (selected sequences, order, orientation), the sequences.csv file generated at step3 can be modify and saved under a different name. This new.csv
can be passed in the job configurationsequence_file
.sequences.csv
genome_1.gb,0 genome_2.gb,1 genome_3.gb,0
Plotting config options
The appearance of the plot can be modified through the configuration.
Field Name | Description | Default Value |
---|---|---|
title |
Generated plot file title | synteny_plot |
graph_type |
Type of dataset to use for the plot | blastn |
colours |
Gene identity colour bar | ["#fde725", "#90d743", "#35b779", "#21918c", "#31688e", "#443983", "#440154"] |
gradient |
Nucleotide identity colour bar | #B22222 |
graph_shape |
Linear or circular representation | linear |
graph_pagesize |
Output document format | A4 |
graph_fragments |
Number of fragments | 1 |
graph_start |
Sequence start | 1 |
graph_end |
Sequence end | length of the longest genome |
Output
synphage's output consists of four to six main parquet files (depending if blastn and blastp were both executed) and the synteny graphic. However all the data generated by the synphage pipeline are made available in your data directory.
Generated data architecture
.
├── <path_to_synphage_folder>/
│ ├── download/
│ ├── fs/
│ ├── genbank/
│ ├── gene_identity/
│ │ ├── fasta_n/
│ │ ├── blastn_database/
│ │ └── blastn/
│ ├── protein_identity/
│ │ ├── fasta_p/
│ │ ├── blastp_database/
│ │ └── blastp/
│ ├── tables/
│ │ ├── genbank_db.parquet
│ │ ├── processed_genbank_df.parquet
│ │ ├── blastn_summary.parquet
│ │ ├── blastp_summary.parquet
│ │ ├── gene_uniqueness.parquet
│ │ └── protein_uniqueness.parquet
│ ├── sequences.csv
│ └── synteny/
│ ├── colour_table.parquet
│ ├── synteny_graph.png
│ └── synteny_graph.svg
└── ...
Tables
The tables
folder contains the four to six main parquet files generated by the pipeline.
genbank_db.parquet
: original data parsed from the GenBank files.processed_genbank_df.parquet
: data processed during the validation step. It contains two additional columns:gb_type
: specifying what type of data is used as unique identifier of the coding elementskey
: unique identifier based on the columns:filename
,id
andlocus_tag
.
blastn_summary.parquet
: data parsed from theblastn
output json files. It contains the collection of the best match for each sequence against each genomes. The percentage of identity between two sequences are then used for calculating the plot cross-links between the sequences.blastp_summary.parquet
: data parsed from theblastp
output json files. It contains the collection of the best match for each sequence against each genomes. The percentage of identity between two sequences are then used for calculating the plot cross-links between the sequences.gene_uniqueness.parquet
: combines bothprocessed_genbank_df.parquet
andblastn_summary.parquet
in a single parquet file, allowing the user to quickly know how many matches their sequence(s) of interest has/have retrieved. These data are then used to compute the colour code used for the synteny plot. The result of the computation is recorded in thecolour_table.parquet
. This file is over-written between eachplot
run.protein_uniqueness.parquet
: combines bothprocessed_genbank_df.parquet
andblastp_summary.parquet
in a single parquet file, allowing the user to quickly know how many matches their sequence(s) of interest has/have retrieved. These data are then used to compute the colour code used for the synteny plot. The result of the computation is recorded in thecolour_table.parquet
. This file is over-written between eachplot
run.
Synteny plot
The synteny plot
is generated as .svg file
and .png file
, and contains the sequences indicated in the sequences.csv
file. The genes are colour-coded according to their abundance (percentage) among the plotted sequences. The cross-links between each consecutive sequence indicates the percentage of similarities between those two sequences.
Documentation
Visit https://vestalisvirginis.github.io/synphage/ for complete installation instruction, pipeline guidelines and step-by-step example.
Support
Where to ask for help?
Open a discussion.
Roadmap
[x] create config options for the plot at run time[x] integrate the NCBI search[x] implement blastp- create possibility to add ref sequence with special colour coding
- create interactive plot
- Help us in a discussion?
Status
[2024-07-20]
✨ New features!
Checks
: to validate the quality of the dataBlastp
is finally implemented
[2024-01-11]
✨ New feature! to simplify the addition of new sequences into the genbank folder
download
: download genomes to be analysed from the NCBI database
Contributing
We accept different types of contributions, including some that don't require you to write a single line of code. For detailed instructions on how to get started with our project, see CONTRIBUTING file.
Authors
- vestalisvirginis / Virginie Grosboillot / 🇫🇷
License
Apache License 2.0 Free for commercial use, modification, distribution, patent use, private use. Just preserve the copyright and license.
Made with ❤️ in Ljubljana 🇸🇮
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.