DeepMicroClass, a deep learning based contig prediction tool
Project description
DeepMicroClass
This is the repository for DeepMicroClass, a deep learning based method that classifies metagenomic contigs into five sequence classes, e.g., viruses infecting prokaryotic or eukaryotic hosts, eukaryotic or prokaryotic chromosomes.
The paper corresponding to this repository is available at bioRxiv.
Please direct any questions to Dr. Fengzhu Sun.
Installation
The software package can be installed using the following command:
pip install DeepMicroClass
Consider using virtualenv
or conda
to create a virtual environment for clean environment.
Usage
Prediction
usage: DeepMicroClass predict [-h] --input INPUT --output_dir OUTPUT_DIR [--model MODEL] [--encoding {onehot,embedding}] [--mode {hybrid,single}] [--single-len SINGLE_LEN] [--device {cpu,cuda}]
options:
-h, --help show this help message and exit
--input INPUT, -i INPUT
Path to the input fasta file
--output_dir OUTPUT_DIR, -o OUTPUT_DIR
Path to the output directory
--model MODEL, -m MODEL
Path to the trained model
--encoding {onehot,embedding}, -e {onehot,embedding}
Encoding method
--mode {hybrid,single}, -md {hybrid,single}
Prediction mode
--single-len SINGLE_LEN, -sl SINGLE_LEN
Length to use in the single mode
--device {cpu,cuda}, -d {cpu,cuda}
Device to use
The most straight forward way to run the prediction is to use the following command:
DeepMicroClass predict -i <input_fasta> -o <output_dir>
Prediction File Format
Each row of the output prediction file contains the scores from the neural network for class label assignment. The higher the score, the more likely the class label for a given sequence.
- Sequence Name: the name of the sequence in the input fasta file
- Eukaryote: the score the neural network model assigns to this sequence being Eukaryote.
- EukaryoteVirus: the score for this sequence being EukaryoteVirus
- Plasmid: the score for this sequence being Plasmid
- Prokaryote: the score for this sequence being prokaryote
- ProkaryoteVirus: the score for this sequence being ProkaryoteVirus
As an example:
Sequence Name Eukaryote EukaryoteVirus Plasmid Prokaryote ProkaryoteVirus
NC_008199#3k#12001#15000 0.0001718740027172454 1.2298997305038642e-05 0.1367506879128939 0.4601334227976679 5.402931783348322
To assign a label to a given sequence, we find the maximum of all the assigned scores. In the above case, ProkaryoteVirus has the highest score, so the sequence is assigned as belonging to the class ProkaryoteVirus.
Project details
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
Hashes for DeepMicroClass-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a940ba77867f2f2664d3b9e76f3a3ac8f96df9622570193b248b05638570e95 |
|
MD5 | bd81c67a2452cfa690d53df06c3c5ae7 |
|
BLAKE2b-256 | 22381465a6e3800449467f4966c54b5853a12eb3297f0abe125147a64823cf43 |