Prediction of Genomic Islands
Project description
TreasureIsland
TreasureIsland python package is a machine learning-based Genomic Island prediction software, that uses an unsupervised representation of DNA for its prediction.
TreasureIsland is constructed from the Benbow dataset.
Dependencies :
Python >= 3.7
Installation:
Option1 - Use pip:
python -m pip install treasureisland
if treasureisland is already installed :
python -m pip install treasureisland --upgrade
Option2 - Locally install package:
git clone https://github.com/priyamayur/GenomicIslandPrediction.git
python -m pip install -e GenomicIslandPrediction
Usage:
Option1 - Run TreasureIsland directly from commandline :
Run TreasureIsland from commandline on your DNA fasta file (example DNA files provided here), output is given in csv format:
treasureisland mypath/<DNA file>.fasta [-o <output_file_path>] [-ut <upper threshold value>]
Option2 - Run TreasureIsland from python :
The TreasureIsland package is used to find genomic island predictions which can be downloaded in csv, xlsx, txt file formats demonstrated in TreasureIsland package
Input file:
DNA sequence files in fasta format with a sequenceID.
example: >NC_002620.2 Chlamydia muridarum str. Nigg, complete sequence CACATAGCAAAACACTCAAAGTTTTTCAGCAAAAAAGCTTGTTGAAAAAATTGTTGACCGCCTGTTCACA....
Performance:
TreasureIsland takes 2-5 mins to run depending on the size of the input.
Output :
The results are shown in the following format for each genomic island:
example : NC_002620.2 1.0 130000.0 0.95597
Upper Threshold:
User also has the ability to change the upper threshold value to change the precision and recall tradeoff. upper threshold is set to 0.80 by default.
Example :
treasureisland ecoli.fasta -o gei_output -ut 0.95 Setting the upper threshold to 0.95 would increase the precision and decrease the recall performance.
Testing:
A repository containing some sample DNA files that can be downloaded to test TreasureIsland. Note : github downloads fasta file in txt format (filename.fasta.txt).
example :
treasureisland ecoli.fasta -o gei_output -ut 0.95
Running TreasureIsland package from python:
import the Predictor class from treasureisland package:
from treasureisland.Predictor import Predictor
Instantiate the sequence with the DNA sequence file path as the argument. The DNA file used can be a fasta file.
seq = Predictor("<Path to DNA fasta file>/ecoli.fasta", "<output_file_path>")
Optionally, change the upper threshold value.
seq.change_upper_threshold(0.9)
Get prediction data frame from sequence by running the predict method.
pred = seq.predict()
The predictions can be downloaded in text, csv, excel formats.
seq.predictions_to_csv(pred)
seq.predictions_to_excel(pred)
seq.predictions_to_text(pred)
Contact:
Feel free to contact at banerjee.p1104@gmail.com
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 treasureisland-1.0.9.tar.gz
.
File metadata
- Download URL: treasureisland-1.0.9.tar.gz
- Upload date:
- Size: 12.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 533d28c9807618893497440bbf22472c23ec13773029cfde3bcf59ab4205d881 |
|
MD5 | e1233c9ecb34f120f2b02c7ac4354664 |
|
BLAKE2b-256 | 53e176c25059b106ba3430f7dbd66a34b21477fc82feb735c639ff9a1aab00d4 |
File details
Details for the file treasureisland-1.0.9-py3-none-any.whl
.
File metadata
- Download URL: treasureisland-1.0.9-py3-none-any.whl
- Upload date:
- Size: 12.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48369be12aef1e04b7cc637c24d651d80fbe36412155b155dc3f9d6b4def060f |
|
MD5 | 8531e080a607b6efeffd39cde2f765ef |
|
BLAKE2b-256 | d5f0196a10fcc60af0f20c841211091e8b6d2db66b1fc5a1f662ded2737797be |