معرفی شرکت ها


compbiolab-CLI-0.4.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

CLI tool to compare and search protein families
ویژگی مقدار
سیستم عامل -
نام فایل compbiolab-CLI-0.4.0
نام compbiolab-CLI
نسخه کتابخانه 0.4.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده compbiolab
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/cfogel/CLI/
آدرس اینترنتی https://pypi.org/project/compbiolab-CLI/
مجوز MIT
### Table Of Contents - [Table of Contents](#table-of-contents) - [Software Info](#software-info) - [Overview](#overview) - [Installation](#installation) - [Usage](#usage) - [Comparing protein sequences](#comparing-protein-sequences) - [Comparing Arguments](#comparing-arguments) - [Searching](#searching) - [Searching Arguments](#searching-arguments) - [Optional Flags](#optional-flags) - [Available Metrics](#available-metrics) - [Examples](#examples) ### Software Info: Software Name: compbiolab-CLI Latest Software Version: v0.4.0 PyPI: https://pypi.org/project/compbiolab-CLI/ Documentation: https://cfogel.github.io/compbiolab-CLI-docs/ ### Overview Our goal for this project is to read a new input sequence and find the protein family which it belongs in by comparing it with existing sequences in the database. In addition to finding the closest family for a new sequence, our search application can also accept an autoencoded fingerprint and see which family is the best match using a variety of different metrics. Our compare application allows different protein families to be compared directly using different distance functions. It accepts the names of families already in the database, but it can also accept files containing data from new latent spaces. The program can be downloaded from PyPI (the Python Package Index), and it has a Command Line Interface. ## Installation 1. Install [Python 3.7 or above](https://www.python.org/downloads/) 2. Open a terminal. (On Windows, Windows Key + R → Type cmd → Enter) 3. Type `pip install compbiolab-CLI` ## Usage ### Comparing protein sequences Find the distance between fingerprints of two protein families compare [-h] <protein_family> <protein_family> [distance_options] [output_options] list names #### Comparing Arguments * `protein_family` Protein family's name. Provide an existing protein family's name or the file name of a new latent space. Files should contain 30 floats, each float in a separate line. * `distance options` [Optional distance flags](#distance-options) * `output_options` [Optional output flags](#output-options) * `list names` Show available protein family names ### Searching Find the closest family to a new protein sequence or family search [-h] lat <latent space> [distance_options] [output_options] seq <sequence> [output_options] list names #### Searching Arguments * `lat <filename> [distance_options] [output_options]` Provide the file name of one or more new protein family latent spaces. The closest protein family to these new latent spaces will be shown. * `distance_options` [Optional distance flags](#distance-options) * `output_options` [Optional output flags](#output-options) * `seq <filename> [output_options]` __(Requires 64-bit Python 3.7.x)__ Provide the name of one or more files containing a protein sequence to get the closest protein families for those sequences. * `output_options` [Optional output flags](#output-options) * `list names` Show available protein family names ## Optional Flags ### Output Options * `-out` Output filename * `-of` Output format, text or csv. Default: text * `-om` Output mode, a[ppend] or w[rite]. Default: a ### Distance Options * `-m` [Distance metric](#available-metrics). Default: euclidean * `-p` Scalar. The p-norm to apply for Minkowski, weighted and unweighted. Default: 2 ## Available metrics *euclidean (default)*, minkowski, cityblock, sqeuclidean, cosine, correlation, hamming, jaccard, chebyshev, canberra, braycurtis, yule, dice, kulsinski, rogerstanimoto, russellrao, sokalmichener, sokalsneath ## Examples You can find the Euclidean distance between two families ATKA_ATKC and CDSA_RSEP by running the command: compare ATKA_ATKC CDSA_RSEP ![example-1](https://user-images.githubusercontent.com/1418557/169188051-77bf99a9-2427-4d9a-b6a9-536d81fa0a73.png) If you want to find the Cityblock distance between ATKA_ATKC and a new latent space stored at second_new_latent_example.txt, you can run the command: compare ATKA_ATKC second_new_latent_example.txt -m cityblock ![example-2](https://user-images.githubusercontent.com/1418557/169188080-8f53426f-b754-4f40-8e0e-396f842ebfa1.png) If you want to find the cosine distance between two new latent spaces stored at first_new_latent_example.txt and second_new_latent_example.txt, you can run the command: compare first_new_latent_example.txt second_new_latent_example.txt -m cosine ![example-3](https://user-images.githubusercontent.com/1418557/169188109-0b55b0a1-869a-4dad-be19-bcc6012ddd86.png) --- You can find the closest protein family to first_new_latent_example.txt in cosine distance by running the command: search lat first_new_latent_example.txt -m cosine ![example-4](https://user-images.githubusercontent.com/1418557/169188127-06af9faa-81b7-489a-b87b-82ef9b1b4129.png) You can find the closest family to a new protein sequence (for example new_sequence_example.txt) by running: search seq new_sequence_example.txt ![example-5](https://user-images.githubusercontent.com/1418557/169188138-add1c6be-50a8-482b-9ad1-c9c4f463de45.png)


نیازمندی

مقدار نام
- argparse-formatter
<1.19.0,>=1.16.0 numpy
>=1.1.4 pandas
>=1.4.1 scipy
- tqdm
>=1.1.0 importlib-resources
==2.10.0 h5py
==2.3.1 keras
- silence-tensorflow
==1.15.4 tensorflow


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl compbiolab-CLI-0.4.0:

    pip install compbiolab-CLI-0.4.0.whl


نصب پکیج tar.gz compbiolab-CLI-0.4.0:

    pip install compbiolab-CLI-0.4.0.tar.gz