staver


Namestaver JSON
Version 0.1.3 PyPI version JSON
download
home_pagehttps://github.com/Ran485/STAVER
SummaryA Python library that presents a standardized dataset-based algorithm designed to reduce variation in large-scale data-independent acquisition (DIA) mass spectrometry data.
upload_time2023-11-14 02:06:47
maintainer
docs_urlNone
authorPengRan
requires_python>=3.6
licenseMIT license
keywords staver
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <br>
    <img src="https://github.com/Ran485/STAVER/raw/main/docs/_static/STAVER_logo.svg" width="400"/>
    <br>
    <h2 align="center">
    STAVER: A Standardized Dataset-Based Algorithm for Efficient Variation Reduction
    </h2>
<p>


<div align="center">
  <a href="#">
  <a href="https://github.com/Ran485/STAVER/stargazers">
  <img alt="Downloads" src="https://img.shields.io/github/stars/Ran485/STAVER?logo=GitHub&color=red">
  </a>
  <img src="https://img.shields.io/badge/Python-3.7+-blue">
  </a>
  <a href="https://github.com/dwyl/esta/issues">
  <img alt="PRs welcome" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat">
  </a>
  <a href="https://opensource.org/licenses/MIT">
  <img alt="DOI" src="https://img.shields.io/badge/License-MIT-yellow.svg">
  </a>
</div>

## Table of Contents
- [Table of Contents](#table-of-contents)
- [Introduction](#introduction)
- [Installation](#installation)
- [Getting Started](#getting-started)
- [Documentation](#documentation)
- [How to Contribute](#how-to-contribute)
- [Contact Us](#contact-us)
- [License](#license)


## Introduction

STAVER is Python library that presents a standardized dataset-based algorithm designed to reduce variation in large-scale data-independent acquisition (DIA) mass spectrometry (MS) data. By employing a reference dataset to standardize mass spectrometry signals, STAVER effectively reduces noise and enhances protein quantification accuracy, especially in the context of hybrid spectral library search. The effectiveness of STAVER is demonstrated in multiple large-scale DIA datasets from different platforms and laboratories, showing improved precision and reproducibility of protein quantification. STAVER, featuring a modular design, provides flexible compatibility with existing DIA-MS data analysis pipelines. The project aims to eliminate non-biological noise and variability in the large-scale DIA-MS study analyses, enhancing the quality and reliability of DIA proteomics data through the open-source STAVER software package. A comprehensive overview of the research workflow and STAVER algorithm architecture are summarized in the following figure: ![alt text](https://github.com/Ran485/STAVER/raw/main/docs/_static/STAVER_pipeline.png)

## Installation

You can install ``staver`` package from PyPI by calling the following command: 
``` shell
pip install staver
```
You may install from source by cloning the STAVER repo, navigating to the root directory and using one of the following commands ``pip install .``, or ``pip install -e .`` to install in editable mode:
``` shell
# clone the source repo
git clone https://github.com/Ran485/STAVER.git

# install the package in editable mode
pip install .

# or using the following command
pip install -e .
```
You may install additional environmental dependencies:

``` shell
pip install -r requirements_dev.txt
pip install -r requirements.txt
```
Installing within a [conda environment](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) is recommended.

## Getting Started

To get started with `STAVER`, see the the installation guided walkthrough in [here](https://staver.readthedocs.io/en/latest/installation.html#). For example code and an introduction to the library, please refer to the detailed discriptions in
[tutorials](https://staver.readthedocs.io/en/latest/tutorials.html#). The following block presents an easy-to-follow guide and quick start for running the STAVER workflow using the Command-Line Interface (CLI).

```shell
python  ./staver_pipeline.py \
        --thread_numbers < The CPU worker numbers, Default to [nmax-2] > \
        --input < The DIA data input directory > \
        --output_peptide < The processed DIA peptide data output directory > \
        --output_protein < The processed DIA protein data output directory > \
        --fdr_threshold < Default to 0.01 > \
        --count_cutoff_same_libs < Default to 1 > \
        --count_cutoff_diff_libs < Default to 2 > \
        --proteins_cv_thresh < Default to 0.3 > \
        --na_threshold < Default to 0.3 > \
        --top_precursor_ions < Default to 6 > \
        --file_suffix < Default to "_F1_R1" >  \
```

## Documentation
To gain a comprehensive understanding of STAVER's functionality and parameters available in the software, we highly recommend exploring the [STAVER documentation](https://staver.readthedocs.io/en/latest/index.html). This documentation is crafted to be comprehensive and user-friendly, offering a step-by-step guide enriched with detailed instructions. Each feature is illustrated with practical examples and supported by clear, concise explanations, enabling users to effectively use and maximize the software's capabilities. 

## How to Contribute
We welcome the contribution from the open-source community to improve the library!

To add a new explanation method/feature into the library, please follow the template and steps demonstrated in this 
[contribution guidelines](https://staver.readthedocs.io/en/latest/contributing.html).

## Contact Us
If you have any questions, comments or suggestions, please do not hesitate to contact us at 21112030023@m.fudan.edu.cn

## License
The STAVER project licensed under the [MIT License](https://opensource.org/licenses/MIT), granting users open access and the freedom to employ, adapt, and share the software as needed, while preserving the original copyright and license acknowledgements.


Release notes
=============
0.1.3 (2023-11-14)
------------------

Enhancements:

* Updated and made some improvements to the README file

Bug fixes:

* Fixed the non-functional links that direct users to the STAVER Documentation. 


0.1.2 (2023-11-12)
------------------

Enhancements:

* Optimized the computational speed of the protein inference module
* Added a detailed documentation for using the `STAVER` pipeline

Bug fixes:

* Fixed a bug where the ``I/O`` module outputs numerous warnings
* Fixed bug in ``setup.py`` that prevented installation.


0.1.1 (2023-03-25)
------------------

* First release on PyPI.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Ran485/STAVER",
    "name": "staver",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "staver",
    "author": "PengRan",
    "author_email": "21112030023@m.fudan.edu.cn",
    "download_url": "https://files.pythonhosted.org/packages/44/7d/5a6fcdd1cfb8ceff69535c3eaa1a6db75abd9738d6e9769645082ce80711/staver-0.1.3.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <br>\n    <img src=\"https://github.com/Ran485/STAVER/raw/main/docs/_static/STAVER_logo.svg\" width=\"400\"/>\n    <br>\n    <h2 align=\"center\">\n    STAVER: A Standardized Dataset-Based Algorithm for Efficient Variation Reduction\n    </h2>\n<p>\n\n\n<div align=\"center\">\n  <a href=\"#\">\n  <a href=\"https://github.com/Ran485/STAVER/stargazers\">\n  <img alt=\"Downloads\" src=\"https://img.shields.io/github/stars/Ran485/STAVER?logo=GitHub&color=red\">\n  </a>\n  <img src=\"https://img.shields.io/badge/Python-3.7+-blue\">\n  </a>\n  <a href=\"https://github.com/dwyl/esta/issues\">\n  <img alt=\"PRs welcome\" src=\"https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat\">\n  </a>\n  <a href=\"https://opensource.org/licenses/MIT\">\n  <img alt=\"DOI\" src=\"https://img.shields.io/badge/License-MIT-yellow.svg\">\n  </a>\n</div>\n\n## Table of Contents\n- [Table of Contents](#table-of-contents)\n- [Introduction](#introduction)\n- [Installation](#installation)\n- [Getting Started](#getting-started)\n- [Documentation](#documentation)\n- [How to Contribute](#how-to-contribute)\n- [Contact Us](#contact-us)\n- [License](#license)\n\n\n## Introduction\n\nSTAVER is Python library that presents a standardized dataset-based algorithm designed to reduce variation in large-scale data-independent acquisition (DIA) mass spectrometry (MS) data. By employing a reference dataset to standardize mass spectrometry signals, STAVER effectively reduces noise and enhances protein quantification accuracy, especially in the context of hybrid spectral library search. The effectiveness of STAVER is demonstrated in multiple large-scale DIA datasets from different platforms and laboratories, showing improved precision and reproducibility of protein quantification. STAVER, featuring a modular design, provides flexible compatibility with existing DIA-MS data analysis pipelines. The project aims to eliminate non-biological noise and variability in the large-scale DIA-MS study analyses, enhancing the quality and reliability of DIA proteomics data through the open-source STAVER software package. A comprehensive overview of the research workflow and STAVER algorithm architecture are summarized in the following figure: ![alt text](https://github.com/Ran485/STAVER/raw/main/docs/_static/STAVER_pipeline.png)\n\n## Installation\n\nYou can install ``staver`` package from PyPI by calling the following command: \n``` shell\npip install staver\n```\nYou may install from source by cloning the STAVER repo, navigating to the root directory and using one of the following commands ``pip install .``, or ``pip install -e .`` to install in editable mode:\n``` shell\n# clone the source repo\ngit clone https://github.com/Ran485/STAVER.git\n\n# install the package in editable mode\npip install .\n\n# or using the following command\npip install -e .\n```\nYou may install additional environmental dependencies:\n\n``` shell\npip install -r requirements_dev.txt\npip install -r requirements.txt\n```\nInstalling within a [conda environment](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) is recommended.\n\n## Getting Started\n\nTo get started with `STAVER`, see the the installation guided walkthrough in [here](https://staver.readthedocs.io/en/latest/installation.html#). For example code and an introduction to the library, please refer to the detailed discriptions in\n[tutorials](https://staver.readthedocs.io/en/latest/tutorials.html#). The following block presents an easy-to-follow guide and quick start for running the STAVER workflow using the Command-Line Interface (CLI).\n\n```shell\npython  ./staver_pipeline.py \\\n        --thread_numbers < The CPU worker numbers, Default to [nmax-2] > \\\n        --input < The DIA data input directory > \\\n        --output_peptide < The processed DIA peptide data output directory > \\\n        --output_protein < The processed DIA protein data output directory > \\\n        --fdr_threshold < Default to 0.01 > \\\n        --count_cutoff_same_libs < Default to 1 > \\\n        --count_cutoff_diff_libs < Default to 2 > \\\n        --proteins_cv_thresh < Default to 0.3 > \\\n        --na_threshold < Default to 0.3 > \\\n        --top_precursor_ions < Default to 6 > \\\n        --file_suffix < Default to \"_F1_R1\" >  \\\n```\n\n## Documentation\nTo gain a comprehensive understanding of STAVER's functionality and parameters available in the software, we highly recommend exploring the [STAVER documentation](https://staver.readthedocs.io/en/latest/index.html). This documentation is crafted to be comprehensive and user-friendly, offering a step-by-step guide enriched with detailed instructions. Each feature is illustrated with practical examples and supported by clear, concise explanations, enabling users to effectively use and maximize the software's capabilities. \n\n## How to Contribute\nWe welcome the contribution from the open-source community to improve the library!\n\nTo add a new explanation method/feature into the library, please follow the template and steps demonstrated in this \n[contribution guidelines](https://staver.readthedocs.io/en/latest/contributing.html).\n\n## Contact Us\nIf you have any questions, comments or suggestions, please do not hesitate to contact us at 21112030023@m.fudan.edu.cn\n\n## License\nThe STAVER project licensed under the [MIT License](https://opensource.org/licenses/MIT), granting users open access and the freedom to employ, adapt, and share the software as needed, while preserving the original copyright and license acknowledgements.\n\n\nRelease notes\n=============\n0.1.3 (2023-11-14)\n------------------\n\nEnhancements:\n\n* Updated and made some improvements to the README file\n\nBug fixes:\n\n* Fixed the non-functional links that direct users to the STAVER Documentation. \n\n\n0.1.2 (2023-11-12)\n------------------\n\nEnhancements:\n\n* Optimized the computational speed of the protein inference module\n* Added a detailed documentation for using the `STAVER` pipeline\n\nBug fixes:\n\n* Fixed a bug where the ``I/O`` module outputs numerous warnings\n* Fixed bug in ``setup.py`` that prevented installation.\n\n\n0.1.1 (2023-03-25)\n------------------\n\n* First release on PyPI.\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "A Python library that presents a standardized dataset-based algorithm designed to reduce variation in large-scale data-independent acquisition (DIA) mass spectrometry data.",
    "version": "0.1.3",
    "project_urls": {
        "Homepage": "https://github.com/Ran485/STAVER"
    },
    "split_keywords": [
        "staver"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13e1785064c95dbefb11c047b71a4fff5373b4a1ac1aa80f9079333a9a6ef666",
                "md5": "3513eedbaf3af18a4e4826897233f807",
                "sha256": "d6c06de5656b9c023c945b0b60f5221ca0e5a035b49e19879f24640fc814f898"
            },
            "downloads": -1,
            "filename": "staver-0.1.3-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3513eedbaf3af18a4e4826897233f807",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 71309,
            "upload_time": "2023-11-14T02:06:20",
            "upload_time_iso_8601": "2023-11-14T02:06:20.820955Z",
            "url": "https://files.pythonhosted.org/packages/13/e1/785064c95dbefb11c047b71a4fff5373b4a1ac1aa80f9079333a9a6ef666/staver-0.1.3-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "447d5a6fcdd1cfb8ceff69535c3eaa1a6db75abd9738d6e9769645082ce80711",
                "md5": "237775de1a32388e117fad4350ddbd87",
                "sha256": "78df0c86ed834518709f92924fb3b5503d77b57f244804358a2f7b722d3154ec"
            },
            "downloads": -1,
            "filename": "staver-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "237775de1a32388e117fad4350ddbd87",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 8762682,
            "upload_time": "2023-11-14T02:06:47",
            "upload_time_iso_8601": "2023-11-14T02:06:47.510105Z",
            "url": "https://files.pythonhosted.org/packages/44/7d/5a6fcdd1cfb8ceff69535c3eaa1a6db75abd9738d6e9769645082ce80711/staver-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-14 02:06:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Ran485",
    "github_project": "STAVER",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "staver"
}
        
Elapsed time: 0.17221s