Bioinformatics tool for compering large sequence files
Project description
Database_comparator
The Database Comparator is a program designed for searching,
analyzing, and comparing databases using various algorithms.
It offers versatile functionalities such as exact matching,
sequence alignment, BLAST searches, and Hamming distance calculations.
Table of Contents
Overview
The program is for comparing and analyzing databases using various methods.
It utilizes the provided configuration to perform exact matching, sequence alignment,
BLAST searches, and calculates Hamming distances between sequences.
Configuration of program is given by configuration file
Installation
Use the following command to install the program:
pip install Database-comparator
Configuration file
The configuration file is used to adjust the program properly to the data that the user wants to analyze. The configuration
folder contains all the information from the database query and the databases
against which we want to compare the query. Optionally, internal parameters
for the Smith Waterman algorithm, BLAST, etc. can be set.
If these parameters are not specified, they will be set to the default value
Example of configuration file:
# Databases
QUERY HEDIMED__230620_Hedimed_1_22_basic--table_EF_predelana.xlsx part3
DB Databases/Nakayama.csv CDR3b [Clone/SequenceID, Epitope]
DB Databases/McPAS-TCR-filtred.csv CDR3.beta.aa [PubMed.ID, Pathology, Additional.study.details]
DB Databases/vdjdb.csv cdr3 [antigen.gene, antigen.species, mhc.a, gene]
DB Databases/TCRdb_all_sequnces.csv AASeq [TCRDB_project_ID, RunId, cloneFraction]
# Smith–Waterman algorithm
SWA_tolerance 0.9
SWA_gap_score -1000
SWA_mismatch_score 0
SWA_match_score 1
# Blastp Algorithm
BLAST_e_value 0.05
BLAST_database_name clip_seq_db
BLAST_output_name blastp_output.txt
# Hamming distance
HD_max_distance 1
# Multiprocessing
number_of_processors 3
Syntax of config file:
# QUERY - query database
QUERY >Name of query database< >Name of column with sequence<
# DB - Databases with the data we want to analyze
DB >Name of data database< >Name of column with sequence< >identifiers of sequence<
# SWA_tolerance - tolerance of Smith Waterman algorithm (score/max_score)
SWA_tolerance >float<
# Smith Waterman scoring
SWA_gap_score >int<
SWA_mismatch_score >int<
SWA_match_score >int<
BLAST_e_value >float<
BLAST_database_name >the name of the blast database that will be created if needed<
BLAST_output_name >name of output file<
HD_max_distance >Maximum Hamming distance(int)<
number_of_processors >number of processors for multprocessing(int)<
Inserting config file to program:
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = 'path_to_config_file.txt'
db = db_compare.DB_comparator(cfg_file)
Usage
The program provides several modules designed to specific analysis methods.
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = 'path_to_config_file.txt'
db = db_compare.DB_comparator(cfg_file)
# Modules
db_exact_match = db.exact_match # Used fot exact match search
db_aligner = db.aligner # Used for Smith Waterman algorithm
db_blast = db.blast # Used for BLAST search
db_hamming = db.hamming_distances # Used for finding Hamming distances between sequences
Database Comparator allows for the export of results in
various file formats, including Excel, CSV, and Markdown, making it easy
to document findings.
# Exporting results
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = 'path_to_config_file.txt'
db = db_compare.DB_comparator(cfg_file)
# Data computing....
db.export_data_frame(output_file="Results.xlsx", data_format="xlsx")
db.export_data_frame(output_file="Results.csv", data_format="csv")
Exact match
The exact_match module is used to find exact matches between sequences
in the query database and data databases. It allows you to perform exact
match searches in single databases or across all configured databases.
Users can also take advantage of multiprocessing to expedite the process.
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = 'path_to_config_file.txt'
db = db_compare.DB_comparator(cfg_file)
# Program will search in single database for exact match with query database
db.exact_match.exact_match_search_in_single_database(database_index=0)
#Multiprocessing
db.exact_match.exact_match_search_in_single_database(database_index=0, parallel=True)
db.exact_match.exact_match_search_in_single_database_MULTIPROCESSING(database_index=0)
# Program will search all given databases for exact match with query database
db.exact_match.exact_match_search_in_all_databases()
# User can also use multiprocessing
db.exact_match.exact_match_search_in_all_databases(parallel=True)
# or
db.exact_match.exact_match_search_in_all_databases_MULTIPROCESSING()
Aligner
The aligner module is based on the Smith-Waterman algorithm for sequence
alignment. It provides the capability to execute single-core or
multiprocessing-based match searches.
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = 'path_to_config_file.txt'
db = db_compare.DB_comparator(cfg_file)
#Single core
db.aligner.smithWatermanAlgorithm_match_search_in_single_database(database_index=0)
db.aligner.smithWatermanAlgorithm_match_search_in_all_databases()
#Multiprocessing
db.aligner.smithWatermanAlgorithm_match_search_in_single_database(database_index=0, parallel=True)
db.aligner.smithWatermanAlgorithm_match_search_in_single_database_MULTIPROCESSING()
db.aligner.smithWatermanAlgorithm_match_search_in_all_databases(parallel=True)
db.aligner.smithWatermanAlgorithm_match_search_in_all_databases_MULTIPROCESSING()
BLAST
The blast module enables users to create BLAST databases, perform BLAST
searches for matches, and analyze the results using the aligner.
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = 'path_to_config_file.txt'
db = db_compare.DB_comparator(cfg_file)
# Info about BLAST
db.blast.blast_database_info()
# Making BLAST database
db.blast.blast_make_database(name="BLAST_Database")
db.blast.blast_search_for_match_in_database() #Query is input database
db.blast.analyze_matches_in_database() #BLAST output will be analyzed with aligner
# User can also use this function.
db.blast.blast_search_and_analyze_matches_in_database()
Hamming distances
The hamming_distances module calculates Hamming distances between sequences.
Users can explore Hamming distances in single databases or across all
databases.
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = 'path_to_config_file.txt'
db = db_compare.DB_comparator(cfg_file)
db.hamming_distances.find_hamming_distances_for_single_database(database_index=0)
db.hamming_distances.find_hamming_distances_for_all_databases()
# User can also do this
db.hamming_distances.find_hamming_distances_for_single_database(database_index=0, analyze=False)
db.hamming_distances.analyze_single_hamming_matrix(database_index=0)
db.hamming_distances.find_hamming_distances_for_all_databases(analyze=False)
db.hamming_distances.analyze_all_hamming_matrices()
# Hamming matrices are stored in >hamming_matrices_for_all_databases<
db_matrices = db.hamming_distances.hamming_matrices_for_all_databases
Example
Performing BLAST
from Database_comparator import db_compare
if __name__ == "__main__":
cfg_file = "config_file.txt"
db = db_compare.DB_comparator(config_file=cfg_file)
db.blast.blast_make_database(name="Blast_db")
db.blast.blast_search_and_analyze_matches_in_database()
db.export_data_frame(output_file="Blast_results.xlsx")
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
File details
Details for the file Database_comparator-1.0.2.tar.gz
.
File metadata
- Download URL: Database_comparator-1.0.2.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | adc154b5bf4b8fc99628eb15ee850d68f1a317f9a666ecea81c1e198e9a6c350 |
|
MD5 | d60854ffb77323a99714f6bcd4637eb9 |
|
BLAKE2b-256 | 22ac36ca39ccb5c3c09ece4221a05048bde8ddf77b142486be07e84863bb617a |
File details
Details for the file Database_comparator-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: Database_comparator-1.0.2-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c77cbc6ee633f33e0a26c3027f2f8fb1dbe10f4318056c856372cfa6954f44a |
|
MD5 | 10bc054879d00f8e8752c21d6f1bb732 |
|
BLAKE2b-256 | fdcda902dde22596bffb66ad9aaaf9727950d86e0ef99aac2e885ca6dfe4d3c5 |