pyMSAviz


NamepyMSAviz JSON
Version 0.4.2 PyPI version JSON
download
home_pagehttps://moshi4.github.io/pyMSAviz/
SummaryMSA visualization python package for sequence analysis
upload_time2023-09-22 13:22:26
maintainer
docs_urlNone
authormoshi4
requires_python>=3.8,<4.0
licenseMIT
keywords bioinformatics matplotlib visualization sequence-alignment sequence-analysis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pyMSAviz

![Python3](https://img.shields.io/badge/Language-Python3-steelblue)
![OS](https://img.shields.io/badge/OS-_Windows_|_Mac_|_Linux-steelblue)
![License](https://img.shields.io/badge/License-MIT-steelblue)
[![Latest PyPI version](https://img.shields.io/pypi/v/pymsaviz.svg)](https://pypi.python.org/pypi/pymsaviz)
[![Bioconda](https://img.shields.io/conda/vn/bioconda/pymsaviz.svg?color=green)](https://anaconda.org/bioconda/pymsaviz)
[![CI](https://github.com/moshi4/pyMSAviz/actions/workflows/ci.yml/badge.svg)](https://github.com/moshi4/pyMSAviz/actions/workflows/ci.yml)

## Table of contents

- [Overview](#overview)
- [Installation](#installation)
- [API Usage](#api-usage)
- [CLI Usage](#cli-usage)

## Overview

pyMSAviz is a MSA(Multiple Sequence Alignment) visualization python package for sequence analysis implemented based on matplotlib.
This package is developed for the purpose of easily and beautifully plotting MSA in Python.
It also implements the functionality to add markers, text annotations, highlights to specific positions and ranges in MSA.
pyMSAviz was developed inspired by [Jalview](https://www.jalview.org/) and [ggmsa](https://github.com/YuLab-SMU/ggmsa).
More detailed documentation is available [here](https://moshi4.github.io/pyMSAviz/).

![example01.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example01.png)  
**Fig.1 Simple visualization result**

![example03.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example03.png)  
**Fig.2 Customized visualization result**

## Installation

`Python 3.8 or later` is required for installation.

**Install PyPI package:**

    pip install pymsaviz

**Install bioconda package:**

    conda install -c conda-forge -c bioconda pymsaviz

## API Usage

Only simple example usage is described in this section.
For more details, please see [Getting Started](https://moshi4.github.io/pyMSAviz/getting_started/) and [API Docs](https://moshi4.github.io/pyMSAviz/api-docs/msaviz/).

### API Example

#### API Example 1

```python
from pymsaviz import MsaViz, get_msa_testdata

msa_file = get_msa_testdata("HIGD2A.fa")
mv = MsaViz(msa_file, wrap_length=60, show_count=True)
mv.savefig("api_example01.png")
```

![example01.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example01.png)  

#### API Example 2

```python
from pymsaviz import MsaViz, get_msa_testdata

msa_file = get_msa_testdata("MRGPRG.fa")
mv = MsaViz(msa_file, color_scheme="Taylor", wrap_length=80, show_grid=True, show_consensus=True)
mv.savefig("api_example02.png")
```

![example02.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example02.png)  

#### API Example 3

```python
from pymsaviz import MsaViz, get_msa_testdata

msa_file = get_msa_testdata("MRGPRG.fa")
mv = MsaViz(msa_file, end=180, wrap_length=60, show_consensus=True)

# Extract MSA positions less than 50% consensus identity
pos_ident_less_than_50 = []
ident_list = mv._get_consensus_identity_list()
for pos, ident in enumerate(ident_list, 1):
    if ident <= 50:
        pos_ident_less_than_50.append(pos)

# Add markers
mv.add_markers([1])
mv.add_markers([10, 20], color="orange", marker="o")
mv.add_markers([30, (40, 50), 55], color="green", marker="+")
mv.add_markers(pos_ident_less_than_50, marker="x", color="blue")
# Add text annotations
mv.add_text_annotation((76, 102), "Gap Region", text_color="red", range_color="red")
mv.add_text_annotation((112, 123), "Gap Region", text_color="green", range_color="green")

mv.savefig("api_example03.png")
```

![example03.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example03.png)  

## CLI Usage

pyMSAviz provides simple MSA visualization CLI.

### Basic Command

    pymsaviz -i [MSA file] -o [MSA visualization file]

### Options

    -i I, --infile I    Input MSA file
    -o O, --outfile O   Output MSA visualization file (*.png|*.jpg|*.svg|*.pdf)
    --format            MSA file format (Default: 'fasta')
    --color_scheme      Color scheme (Default: 'Zappo')
    --start             Start position of MSA visualization (Default: 1)
    --end               End position of MSA visualization (Default: 'MSA Length')
    --wrap_length       Wrap length (Default: None)
    --wrap_space_size   Space size between wrap MSA plot area (Default: 3.0)
    --label_type        Label type ('id'[default]|'description')
    --show_grid         Show grid (Default: OFF)
    --show_count        Show seq char count without gap on right side (Default: OFF)
    --show_consensus    Show consensus sequence (Default: OFF)
    --consensus_color   Consensus identity bar color (Default: '#1f77b4')
    --consensus_size    Consensus identity bar height size (Default: 2.0)
    --sort              Sort MSA order by NJ tree constructed from MSA distance matrix (Default: OFF)
    --dpi               Figure DPI (Default: 300)
    -v, --version       Print version information
    -h, --help          Show this help message and exit

    Available Color Schemes:
    ['Clustal', 'Zappo', 'Taylor', 'Flower', 'Blossom', 'Sunset', 'Ocean', 'Hydrophobicity', 'HelixPropensity', 
     'StrandPropensity', 'TurnPropensity', 'BuriedIndex', 'Nucleotide', 'Purine/Pyrimidine', 'Identity', 'None']

### CLI Example

Click [here](https://github.com/moshi4/pyMSAviz/raw/main/example/example.zip) to download example MSA files.  

#### CLI Example 1

    pymsaviz -i ./example/HIGD2A.fa -o cli_example01.png --color_scheme Identity

![example01.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/cli_example01.png)  

#### CLI Example 2

    pymsaviz -i ./example/MRGPRG.fa -o cli_example02.png --wrap_length 80 \
             --color_scheme Taylor --show_consensus --show_count

![example02.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/cli_example02.png)  

#### CLI Example 3

    pymsaviz -i ./example/MRGPRG.fa -o cli_example03.png --start 100 --end 160 \
             --color_scheme Flower --show_grid --show_consensus --consensus_color tomato 

![example03.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/cli_example03.png)  

            

Raw data

            {
    "_id": null,
    "home_page": "https://moshi4.github.io/pyMSAviz/",
    "name": "pyMSAviz",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "bioinformatics,matplotlib,visualization,sequence-alignment,sequence-analysis",
    "author": "moshi4",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/d8/0b/a0ddaf2e075675f576c065b8a82b0b1aaa5b3153c6866eff452d3d99af40/pymsaviz-0.4.2.tar.gz",
    "platform": null,
    "description": "# pyMSAviz\n\n![Python3](https://img.shields.io/badge/Language-Python3-steelblue)\n![OS](https://img.shields.io/badge/OS-_Windows_|_Mac_|_Linux-steelblue)\n![License](https://img.shields.io/badge/License-MIT-steelblue)\n[![Latest PyPI version](https://img.shields.io/pypi/v/pymsaviz.svg)](https://pypi.python.org/pypi/pymsaviz)\n[![Bioconda](https://img.shields.io/conda/vn/bioconda/pymsaviz.svg?color=green)](https://anaconda.org/bioconda/pymsaviz)\n[![CI](https://github.com/moshi4/pyMSAviz/actions/workflows/ci.yml/badge.svg)](https://github.com/moshi4/pyMSAviz/actions/workflows/ci.yml)\n\n## Table of contents\n\n- [Overview](#overview)\n- [Installation](#installation)\n- [API Usage](#api-usage)\n- [CLI Usage](#cli-usage)\n\n## Overview\n\npyMSAviz is a MSA(Multiple Sequence Alignment) visualization python package for sequence analysis implemented based on matplotlib.\nThis package is developed for the purpose of easily and beautifully plotting MSA in Python.\nIt also implements the functionality to add markers, text annotations, highlights to specific positions and ranges in MSA.\npyMSAviz was developed inspired by [Jalview](https://www.jalview.org/) and [ggmsa](https://github.com/YuLab-SMU/ggmsa).\nMore detailed documentation is available [here](https://moshi4.github.io/pyMSAviz/).\n\n![example01.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example01.png)  \n**Fig.1 Simple visualization result**\n\n![example03.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example03.png)  \n**Fig.2 Customized visualization result**\n\n## Installation\n\n`Python 3.8 or later` is required for installation.\n\n**Install PyPI package:**\n\n    pip install pymsaviz\n\n**Install bioconda package:**\n\n    conda install -c conda-forge -c bioconda pymsaviz\n\n## API Usage\n\nOnly simple example usage is described in this section.\nFor more details, please see [Getting Started](https://moshi4.github.io/pyMSAviz/getting_started/) and [API Docs](https://moshi4.github.io/pyMSAviz/api-docs/msaviz/).\n\n### API Example\n\n#### API Example 1\n\n```python\nfrom pymsaviz import MsaViz, get_msa_testdata\n\nmsa_file = get_msa_testdata(\"HIGD2A.fa\")\nmv = MsaViz(msa_file, wrap_length=60, show_count=True)\nmv.savefig(\"api_example01.png\")\n```\n\n![example01.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example01.png)  \n\n#### API Example 2\n\n```python\nfrom pymsaviz import MsaViz, get_msa_testdata\n\nmsa_file = get_msa_testdata(\"MRGPRG.fa\")\nmv = MsaViz(msa_file, color_scheme=\"Taylor\", wrap_length=80, show_grid=True, show_consensus=True)\nmv.savefig(\"api_example02.png\")\n```\n\n![example02.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example02.png)  \n\n#### API Example 3\n\n```python\nfrom pymsaviz import MsaViz, get_msa_testdata\n\nmsa_file = get_msa_testdata(\"MRGPRG.fa\")\nmv = MsaViz(msa_file, end=180, wrap_length=60, show_consensus=True)\n\n# Extract MSA positions less than 50% consensus identity\npos_ident_less_than_50 = []\nident_list = mv._get_consensus_identity_list()\nfor pos, ident in enumerate(ident_list, 1):\n    if ident <= 50:\n        pos_ident_less_than_50.append(pos)\n\n# Add markers\nmv.add_markers([1])\nmv.add_markers([10, 20], color=\"orange\", marker=\"o\")\nmv.add_markers([30, (40, 50), 55], color=\"green\", marker=\"+\")\nmv.add_markers(pos_ident_less_than_50, marker=\"x\", color=\"blue\")\n# Add text annotations\nmv.add_text_annotation((76, 102), \"Gap Region\", text_color=\"red\", range_color=\"red\")\nmv.add_text_annotation((112, 123), \"Gap Region\", text_color=\"green\", range_color=\"green\")\n\nmv.savefig(\"api_example03.png\")\n```\n\n![example03.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/api_example03.png)  \n\n## CLI Usage\n\npyMSAviz provides simple MSA visualization CLI.\n\n### Basic Command\n\n    pymsaviz -i [MSA file] -o [MSA visualization file]\n\n### Options\n\n    -i I, --infile I    Input MSA file\n    -o O, --outfile O   Output MSA visualization file (*.png|*.jpg|*.svg|*.pdf)\n    --format            MSA file format (Default: 'fasta')\n    --color_scheme      Color scheme (Default: 'Zappo')\n    --start             Start position of MSA visualization (Default: 1)\n    --end               End position of MSA visualization (Default: 'MSA Length')\n    --wrap_length       Wrap length (Default: None)\n    --wrap_space_size   Space size between wrap MSA plot area (Default: 3.0)\n    --label_type        Label type ('id'[default]|'description')\n    --show_grid         Show grid (Default: OFF)\n    --show_count        Show seq char count without gap on right side (Default: OFF)\n    --show_consensus    Show consensus sequence (Default: OFF)\n    --consensus_color   Consensus identity bar color (Default: '#1f77b4')\n    --consensus_size    Consensus identity bar height size (Default: 2.0)\n    --sort              Sort MSA order by NJ tree constructed from MSA distance matrix (Default: OFF)\n    --dpi               Figure DPI (Default: 300)\n    -v, --version       Print version information\n    -h, --help          Show this help message and exit\n\n    Available Color Schemes:\n    ['Clustal', 'Zappo', 'Taylor', 'Flower', 'Blossom', 'Sunset', 'Ocean', 'Hydrophobicity', 'HelixPropensity', \n     'StrandPropensity', 'TurnPropensity', 'BuriedIndex', 'Nucleotide', 'Purine/Pyrimidine', 'Identity', 'None']\n\n### CLI Example\n\nClick [here](https://github.com/moshi4/pyMSAviz/raw/main/example/example.zip) to download example MSA files.  \n\n#### CLI Example 1\n\n    pymsaviz -i ./example/HIGD2A.fa -o cli_example01.png --color_scheme Identity\n\n![example01.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/cli_example01.png)  \n\n#### CLI Example 2\n\n    pymsaviz -i ./example/MRGPRG.fa -o cli_example02.png --wrap_length 80 \\\n             --color_scheme Taylor --show_consensus --show_count\n\n![example02.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/cli_example02.png)  \n\n#### CLI Example 3\n\n    pymsaviz -i ./example/MRGPRG.fa -o cli_example03.png --start 100 --end 160 \\\n             --color_scheme Flower --show_grid --show_consensus --consensus_color tomato \n\n![example03.png](https://raw.githubusercontent.com/moshi4/pyMSAviz/main/docs/images/cli_example03.png)  \n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "MSA visualization python package for sequence analysis",
    "version": "0.4.2",
    "project_urls": {
        "Homepage": "https://moshi4.github.io/pyMSAviz/",
        "Repository": "https://github.com/moshi4/pyMSAviz/"
    },
    "split_keywords": [
        "bioinformatics",
        "matplotlib",
        "visualization",
        "sequence-alignment",
        "sequence-analysis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1199e52b4c47582579edfe59cb850637adf816f6b036fc1c653717119a1090f7",
                "md5": "c9f2c86c262d1924632239ffca20006b",
                "sha256": "66c4adaec185f0ecb09d4db85a43d4dabce0c653379675f9fa374eaf14d45b83"
            },
            "downloads": -1,
            "filename": "pymsaviz-0.4.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c9f2c86c262d1924632239ffca20006b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 16975,
            "upload_time": "2023-09-22T13:22:25",
            "upload_time_iso_8601": "2023-09-22T13:22:25.228605Z",
            "url": "https://files.pythonhosted.org/packages/11/99/e52b4c47582579edfe59cb850637adf816f6b036fc1c653717119a1090f7/pymsaviz-0.4.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d80ba0ddaf2e075675f576c065b8a82b0b1aaa5b3153c6866eff452d3d99af40",
                "md5": "fb6d91059640f85dac53134135bc23d9",
                "sha256": "a6506c75b52e8e0c9f28c13f0cca2d2c5cd642c8136dbb42426ab5f19e5ff6f7"
            },
            "downloads": -1,
            "filename": "pymsaviz-0.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "fb6d91059640f85dac53134135bc23d9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 19228,
            "upload_time": "2023-09-22T13:22:26",
            "upload_time_iso_8601": "2023-09-22T13:22:26.276730Z",
            "url": "https://files.pythonhosted.org/packages/d8/0b/a0ddaf2e075675f576c065b8a82b0b1aaa5b3153c6866eff452d3d99af40/pymsaviz-0.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-22 13:22:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "moshi4",
    "github_project": "pyMSAviz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pymsaviz"
}
        
Elapsed time: 0.11530s