rapid detection and classification of viruses in metagenomics sequencing.
Project description
Metagenomics virus detection (MetaV): rapid detection and classification of viruses in metagenomics sequencing
1. Introduction
1.1. workflow of metav
metav is a command-line-interface program, which is used to rapidly identify and classify viral sequences from metagenomic sequencing data. metav is developed via Python 3
, and can be run on Linux systems and deployed to the cloud.
The workflow of metav is simple but efficientas,
1.2. Functional expansion
metav was originally designed to detect and count the viral composition in metagenomics-sequencing-data, but it's flexible and not limited to viruses.
In fact, the viral nr database can be replaced by protein databases of other pathogenic, for example, bacteria, pathogenic fungi. These nr database cam be download from database of ncbi refseqs. In a word, metav can detect and count other pathogens of metagenomics-sequencing-data by using the corresponding nr database and taxonomy information file.
2. Download and install
metav has been distributed to the standard library of PyPI (https://pypi.org/project/metav/), and can be easily installed by the tool pip
.
pip install metav
metav -h
Note, if metav is installed by pip
tool, you also need to manually install the software dependencies, please see section 3.
3. Software dependencies
The running of metav
relies on these softwares:
-
Trimmomatic (version >=0.39), which is used to remove the contamination from adapter primer.
-
Bowtie2 (version >=2.3.0), which is used to remove the contamination from host genome.
-
Trinity (version >=2.15.1), in the second sub-pipeline of
metav
, the Trinity is used to splice reads to contigs. Note, the running of Trinity relies on Bowtie2, jellyfish, samtools and salmon, and they can be easily installed,
# (1) bowtie2
sudo apt-get install c
# (2) jellyfish
sudo apt-get install jellyfish
# (3) salmon
sudo apt install salmon
# (4) samtools
wget https://github.com/samtools/samtools/releases/download/1.20/samtools-1.20.tar.bz2
tar -zxvf samtools-1.20.tar.bz2
cd samtools-1.20
./configure
make
make install
- diamond (version >=2.0.9), the diamond is used to map reads (or contigs) to proteins.
Note, if metav is installed by pip
method, the four dependencies (Trimmomatic, Bowtie2, Trinity and diamond) need to be installed manually by users in advance and be added to PATH
(system or user).
4. Database dependencies
4.1. prepare host database
The host database is used to remove contamination from host genome. How to prepare a host database?
(1) download the genomic data of host with *.fasta format.
(2) creat the host database using Bowtie2 software, for example,
bowtie2-build /home/zzj/host_db/host_genome.fna /home/zzj/host_db/host_genome
. It then generates six files, which starts with "host_genome" and suffix are '.1.bt2', '.2.bt2', '.3.bt2', '.4.bt2', '.rev.1.bt2', and '.rev.2.bt2'.
Next, you need to fill in the path /home/zzj/host_db/host_genome
into file profiles.xml
. Note, the path /home/zzj/host_db/host_genome
is not a directory!
(3) metav also supports multiplehost databases, please use ,
to separate these path in file profiles.xml
, for example, /home/zzj/host_db/host_genome1, /home/zzj/host_db/host_genome2
.
Tip, different samples may come from different hosts, please adjust them in file profiles.xml
in time.
4.2. prepare viral nr database
The viral nr database was used to identity viral components from sequenced reads. How to prepare a viral nr database?
(1) firstly, download the refseqs of viral proteins (amino acid, *.1.protein.faa.gz
) from viral database of ncbi refseqs, besides, please also download *.protein.gpff.gz
containning the taxonomic information of these sequences. Note, the format of file *.1.protein.faa.gz
is fasta
.
(2) next, unzip *.1.protein.faa.gz
and rename to ViralProtein.fasta
, then creat the viral nr database using diamond software, for example,
diamond makedb -p 10 --in /home/zzj/nr/ViralProtein.fasta --db /home/zzj/nr/ViralProtein.dmnd
. Then, fill in the path /home/zzj/nr/ViralProtein.dmnd
into file profiles.xml
.
(3) then, extract the viral taxonomy information from file *.protein.gpff.gz
, which is used to classfy viral reads. This repository provides the taxonomy_information made by ourselves, in which the accession is consistent with the file ViralProtein.fasta
. If you want to add some information, please keep it in the same format (four columns, don't change the name of column). Finally, fill in the path of taxonomy information file into the file profiles.xml
.
Tip, the viral nr database generally does not need to be replaced in the short term.
5. Configuration of dependencies
In order to manage the parameters of dependent softwares and databases convenienty, the profiles.xml
file is used to record their configuration.
the template of profiles.xml
is provided in the github repository, please note,
-
currently version of metav only supports the sequenced data from
second-generation sequencing
. -
the paths of these databases in file
profiles.xml
need to be adjusted with reference to your computer, databases paths inprofiles.xml
we provided were just some examples. Note, they have to be absolute path, not relative path. -
the parameters of software in
profiles.xml
generally does not need to be modified because they are suitable in most cases. But, note, the path of adapters file needs to be modified, see fieldILLUMINACLIP:/home/zzj/anaconda3/envs/metav_env/share/trimmomatic-0.39-2/adapters/merge_adapter.fas
in setting of trimmomatic inprofiles.xml
. The path/home/zzj/anaconda3/envs/metav_env/share/trimmomatic-0.39-2/adapters/merge_adapter.fas
here is only an example, adapter file is generally in theadapters
folder of the installation directory of trimmomatic software, or you can make this file yourself, just fill in the corresponding absolute path here.
Tip, in general, these parameters only need to be configured once in the first running, except for the host database used to filter contamination of host genome.
6. Getting help
Users can view the help documentation by entering metav -h
or metav --help
.
Parameter | Description |
---|---|
-h, --help | show this help message and exit |
-pe | paired-end sequencing. |
-se | single-end sequencing. |
-i1 FORWARD | forward reads (*.fq) using paired-end sequencing. |
-i2 REVERSE | reverse reads (*.fq) using paired-end sequencing. |
-u UNPAIRED | reads file using single-end sequencing (unpaired reads). |
-q QUALITIES | the qualities (phred33 or phred64) of sequenced reads, default: phred33. |
-xml PROFILES | the *.xml file with parameters of dependent software and databases. |
-len LENGTH | threshold of length of aa alignment in diamond, default: 10. |
-s IDENTITY | threshold of identity(%) of alignment aa in diamond, default: 20. |
-e E_VALUE | specify three e-values threshold used to filter the reads (or contigs) hit nr database, default: 1e-6,1e-3,1e-1. |
-r1 | run the sub-pipeline 1 (reads → nr database). |
-r2 | run the sub-pipeline 2 (reads → contigs → nr database). |
-t THREAD | number of used threads, default: 1. |
-o OUTDIR | output directory to store all results. |
7. Example of usage
- if reads are from paired-end sequencing:
metav -pe -i1 reads_R1.fq -i2 reads_R2.fq -xml profiles.xml -r1 -r2 -t 8 -o outdir
- if reads are from single-end sequencing:
metav -se -u reads.fq -xml profiles.xml -r1 -r2 -t 8 -o outdir
Tip
-
metav is also supported to run one of
-r1
and-r2
. -
if
-r2
is used, the output directory behind-o
have to be absolute path. -
if an error is displayed, please check the input parameters and XML file.
8. Output results
8.1. input-parameter.txt
the output file input-parameter.txt
recorded the input parameters in command-line interface.
the used parameters of metav in command-line interface.
pair_end: True
single_end: False
sub-pipeline 1: True
sub-pipeline 2: True
forward_reads: /home/zzj/datas/test/reads_1.fq
reverse_reads: /home/zzj/datas/test/reads_2.fq
unpaired: None
qualities: phred33
set_file: /home/zzj/datas/test/profiles.xml
length_threshold: 10.0
identity_threshold: 20.0
e-value: ['1e-6', '1e-3', '1e-1']
thread: 8
outdir: /home/zzj/datas/test/out6
8.2. directory pipeline1
the directory pipeline1
contains intermediate results and finally_result
from sub-pipeline 1
(reads → nr database).
In the example, three thresholds (1e-6
, 1e-3
and 1e-1
) of e-value are used to filter the output diamond program. Thus, three corresponding sub-directories is created and used to store results.
The meanings of directory name with e-value in pipeline1
are as follows,
sub-directories | description |
---|---|
lower_1e-6 | e-value of hit reads < 1e-6 |
lower_0.001 | 1e-6 < e-value of hit reads < 1e-3 |
lower_0.1 | 1e-3 < e-value of hit reads < 1e-1 |
The hierarchy is same in all three sub-directories with e-value. For example, in the directory hit_summary
of the directory lower_1e-6
, metav provides a summary file (hit_reads_taxonomy_information.txt
) with taxonomy information.
What's more, metav counts these hit reads according to order
, family
and strain
(organism) and provides three *.csv
summary files.
In particular, metav extract all hit reads sequences (*fasta format) according to the hierarchical relationship of order
, family
and strain
(organism). These hit reads sequences are stored in directory hit_reads_seq
.
8.3. directory pipeline2
the directory pipeline2
contains intermediate results and finally_result
from sub-pipeline 2
(reads → contigs → nr database). The hierarchy of the directory of output results is the same as directory pipeline1
.
However, the output in directory finally_result
of the directory pipeline2
are hit contigs, not reads.
The meanings of directory name with e-value in pipeline2
are as follows,
sub-directories | description |
---|---|
lower_1e-6 | e-value of hit contigs < 1e-6 |
lower_0.001 | 1e-6 < e-value of hit contigs < 1e-3 |
lower_0.1 | 1e-3 < e-value of hit contigs < 1e-1 |
In the directory hit_summary
of each sub-directory with e-value, the sequences and summary information of hit contigs are provided, and these hit contigs sequences are stored in directory hit_contigs_seq
.
9. Cite
For example, the viral (or other pathogens) reads/components were identified by metav pipeline (https://github.com/ZhijianZhou01/metav)
.
10. Bug report
metav was test on Ubuntu 16.04 and Ubuntu 20.02, which can work well. If you run into a problem or find a bug, please contact us.
Github issues or send email to zjzhou@hnu.edu.cn.
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.
Source Distribution
Built Distribution
File details
Details for the file metav-1.0.6.tar.gz
.
File metadata
- Download URL: metav-1.0.6.tar.gz
- Upload date:
- Size: 30.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54c59f9d72aff1a2129a7e02c1cb10a1f14196d87242c8fd6ea18de30a771612 |
|
MD5 | 68c3bdbe522fc9a9ea968a821f99a5bd |
|
BLAKE2b-256 | d7f8a9a984664af84c89b0c1701b521b35e8098a9a98fdf4af97466914da62d2 |
File details
Details for the file metav-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: metav-1.0.6-py3-none-any.whl
- Upload date:
- Size: 30.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c831388117704834144dfb593ab8c463dbcd10d2e31a5c3b9b68e86c6953103 |
|
MD5 | 99687a37378fe113eb5eddd95c14aa50 |
|
BLAKE2b-256 | 85497300cf22ed147e04f0d7523f93fee2e69032e92fc7b608f854d65ce7ee26 |