Skip to main content

Bioinformatics tool for compering large sequence files

Project description

Database_comparator

License: MIT

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

Database_comparator-1.0.2.tar.gz (15.1 kB view hashes)

Uploaded Source

Built Distribution

Database_comparator-1.0.2-py3-none-any.whl (19.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page