Binette


NameBinette JSON
Version 1.0.0 PyPI version JSON
download
home_page
SummaryBinette: accurate binning refinement tool to constructs high quality MAGs.
upload_time2024-01-29 22:20:14
maintainerJean Mainguy
docs_urlNone
authorJean Mainguy
requires_python>=3.8
license
keywords bioinformatics prokaryote binning refinement metagenomics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![install with bioconda](https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg?style=flat)](http://bioconda.github.io/recipes/binette/README.html)  [![Anaconda-Server Badge](https://anaconda.org/bioconda/binette/badges/downloads.svg)](https://anaconda.org/bioconda/binette)
[![Anaconda-Server Badge](https://anaconda.org/bioconda/binette/badges/license.svg)](https://anaconda.org/bioconda/binette) 
[![Anaconda-Server Badge](https://anaconda.org/bioconda/binette/badges/version.svg)](https://anaconda.org/bioconda/binette)
[![PyPI version](https://badge.fury.io/py/Binette.svg)](https://badge.fury.io/py/Binette)

[![Test Coverage](https://genotoul-bioinfo.github.io/Binette/coverage-badge.svg)](https://genotoul-bioinfo.github.io/Binette/) 
[![CI Status](https://github.com/genotoul-bioinfo/Binette/actions/workflows/binette_ci.yml/badge.svg)](https://github.com/genotoul-bioinfo/Binette/actions/workflows)
[![Documentation Status](https://readthedocs.org/projects/binette/badge/?version=latest)](https://binette.readthedocs.io/en/latest/?badge=latest)


# Binette 

Binette is a fast and accurate binning refinement tool to constructs high quality MAGs from the output of multiple binning tools.

From the input bin sets, Binette constructs new hybrid bins. A bin can be seen as a set of contigs. When at least two bins overlap, meaning they share at least one contig, Binette utilizes basic set operations to create new bins.
- Intersection bin: This bin consists of the contigs that are shared by the overlapping bins. 
- Difference bin: This bin contains the contigs that are exclusively found in one bin and not present in the others.
- Union bin: The union bin includes all the contigs contained within the overlapping bins

It then uses CheckM2 to assess bins quality to finally select the best bins possible.

Binette is inspired from the metaWRAP bin-refinement tool but it effectively solves all the problems from that very tool. 
- Enhanced Speed: Binette significantly improves the speed of the refinement process. It achieves this by launching the initial steps of CheckM2, such as Prodigal and Diamond runs, only once on all contigs. These intermediate results are then utilized to assess the quality of any given bin, eliminating redundant computations and accelerating the refinement process.
- No Limit on Input Bin Sets: Unlike its predecessor, Binette is not constrained by the number of input bin sets. It can handle and process multiple bin sets simultaneously.
<!-- - Bin selection have been improved. It selects the best bins in a more accurate and elegant manner.
- It is easier to use. -->

# Installation

## With Bioconda

Binette can be esailly installed with conda 

```bash
conda create -c bioconda -c defaults -c conda-forge -n binette binette
conda activate binette
```

Binette should be able to run :

```
binette -h
```


## From a conda environnement

Clone this repository: 
```
git clone https://github.com/genotoul-bioinfo/Binette
cd Binette
```

Then create a Conda environment using the `binette.yaml` file:
```
conda env create -n binette -f binette.yaml
conda activate binette 
```

Finally install Binette with pip

```
pip install .
```

Binette should be able to run :

```
binette -h
```


## Downloading the CheckM2 database

Before using Binette, it is necessary to download the CheckM2 database:

```bash
checkm2 database --download --path <checkm2/database/>
```

Make sure to replace `<checkm2/database/>` with the desired path where you want to store the CheckM2 database.


# Usage 

## Input Formats

Binette supports two input formats for bin sets: 

1. **Contig2bin Tables:** You can provide bin sets using contig2bin tables, which establish the relationship between each contig and its corresponding bin. In this format, you need to specify the `--contig2bin_tables` argument. 

For example, consider the following two `contig2bin_tables`:

- `bin_set1.tsv`:

    ```tsv
    contig_1   binA
    contig_8   binA
    contig_15  binB
    contig_9   binC
    ```
    
- `bin_set2.tsv`:

    ```tsv
    contig_1   bin.0
    contig_8   bin.0
    contig_15  bin.1
    contig_9   bin.2
    contig_10  bin.0
    ```
    
    The `binette` command to process this input would be:
    
    ```bash
    binette --contig2bin_tables bin_set1.tsv bin_set2.tsv --contigs assembly.fasta
    ```

2. **Bin Directories:** Alternatively, you can use bin directories, where each bin is represented by a separate FASTA file. For this format, you need to provide the `--bin_dirs` argument. Here's an example of two bin directories:

    ```
    bin_set1/
    ├── binA.fa: contains sequences of contig_1, contig_8
    ├── binB.fa: contains sequences of contig_15
    └── binC.fa: contains sequences of contig_9
    ```
    
    ```
    bin_set2/
    ├── binA.fa: contains sequences of contig_1, contig_8, contig_10
    ├── binB.fa: contains sequences of contig_15
    └── binC.fa: contains sequences of contig_9
    ```
    
    The `binette` command to process this input would be:
    
    ```bash
    binette --bin_dirs bin_set1 bin_set2 --contigs assembly.fasta
    ```

In both formats, the `--contigs` argument should specify a FASTA file containing all the contigs found in the bins. Typically, this file would be the assembly FASTA file used to generate the bins. In these exemple the `assembly.fasta` file should contain at least the five contigs mentioned in the `contig2bin_tables` files or in the bin fasta files: `contig_1`, `contig_8`, `contig_15`, `contig_9`, and `contig_10`.

## Outputs

Binette results are stored in the `results` directory. You can specify a different directory using the `--outdir` option.

In this directory you will find:
- `final_bins_quality_reports.tsv`: This is a TSV (tab-separated values) file containing quality information about the final selected bins.
- `final_bins/`: This directory stores all the selected bins in fasta format.
- `temporary_files/`: This directory contains intermediate files. If you choose to use the `--resume` option, Binette will utilize files in this directory to prevent the recomputation of time-consuming steps.


The `final_bins_quality_reports.tsv` file contains the following columns:
| Column Name         | Description                                                                                                  |
|---------------------|--------------------------------------------------------------------------------------------------------------|
| **bin_id**          | This column displays the unique ID of the bin.                                                             |
| **origin**          | Indicates the source or origin of the bin, specifying from which bin set it originates or the intermediate set operation that created it. |
| **name**            | The name of the bin.                                                                                        |
| **completeness**    | The completeness of the bin, determined by CheckM2.                                                         |
| **contamination**   | The contamination of the bin, determined by CheckM2.                                                       |
| **score**           | This column displays the computed score, which is calculated as: `completeness - contamination * weight`. You can customize the contamination weight using the `--contamination_weight` option. |
| **size**            | Represents the size of the bin in nucleotides.                                                              |
| **N50**             | Displays the N50 of the bin.                                                                                |
| **contig_count**    | The number of contigs contained within the bin.                                                             |

# Feature requests and bug reporting

Please submit bug reports and feature requests by opening an [issue](https://github.com/genotoul-bioinfo/Binette/issues). 


# Licence

This program is released as an open source software under the terms of [MIT License](https://forgemia.inra.fr/jean.mainguy/binette/-/raw/main/LICENSE).


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "Binette",
    "maintainer": "Jean Mainguy",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "Bioinformatics,Prokaryote,Binning,Refinement,Metagenomics",
    "author": "Jean Mainguy",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/5d/b1/42821c97c15a63506e8a689cf552d8689ae2c6573a396e29f4b4fa8c02ba/Binette-1.0.0.tar.gz",
    "platform": null,
    "description": "[![install with bioconda](https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg?style=flat)](http://bioconda.github.io/recipes/binette/README.html)  [![Anaconda-Server Badge](https://anaconda.org/bioconda/binette/badges/downloads.svg)](https://anaconda.org/bioconda/binette)\n[![Anaconda-Server Badge](https://anaconda.org/bioconda/binette/badges/license.svg)](https://anaconda.org/bioconda/binette) \n[![Anaconda-Server Badge](https://anaconda.org/bioconda/binette/badges/version.svg)](https://anaconda.org/bioconda/binette)\n[![PyPI version](https://badge.fury.io/py/Binette.svg)](https://badge.fury.io/py/Binette)\n\n[![Test Coverage](https://genotoul-bioinfo.github.io/Binette/coverage-badge.svg)](https://genotoul-bioinfo.github.io/Binette/) \n[![CI Status](https://github.com/genotoul-bioinfo/Binette/actions/workflows/binette_ci.yml/badge.svg)](https://github.com/genotoul-bioinfo/Binette/actions/workflows)\n[![Documentation Status](https://readthedocs.org/projects/binette/badge/?version=latest)](https://binette.readthedocs.io/en/latest/?badge=latest)\n\n\n# Binette \n\nBinette is a fast and accurate binning refinement tool to constructs high quality MAGs from the output of multiple binning tools.\n\nFrom the input bin sets, Binette constructs new hybrid bins. A bin can be seen as a set of contigs. When at least two bins overlap, meaning they share at least one contig, Binette utilizes basic set operations to create new bins.\n- Intersection bin: This bin consists of the contigs that are shared by the overlapping bins. \n- Difference bin: This bin contains the contigs that are exclusively found in one bin and not present in the others.\n- Union bin: The union bin includes all the contigs contained within the overlapping bins\n\nIt then uses CheckM2 to assess bins quality to finally select the best bins possible.\n\nBinette is inspired from the metaWRAP bin-refinement tool but it effectively solves all the problems from that very tool. \n- Enhanced Speed: Binette significantly improves the speed of the refinement process. It achieves this by launching the initial steps of CheckM2, such as Prodigal and Diamond runs, only once on all contigs. These intermediate results are then utilized to assess the quality of any given bin, eliminating redundant computations and accelerating the refinement process.\n- No Limit on Input Bin Sets: Unlike its predecessor, Binette is not constrained by the number of input bin sets. It can handle and process multiple bin sets simultaneously.\n<!-- - Bin selection have been improved. It selects the best bins in a more accurate and elegant manner.\n- It is easier to use. -->\n\n# Installation\n\n## With Bioconda\n\nBinette can be esailly installed with conda \n\n```bash\nconda create -c bioconda -c defaults -c conda-forge -n binette binette\nconda activate binette\n```\n\nBinette should be able to run :\n\n```\nbinette -h\n```\n\n\n## From a conda environnement\n\nClone this repository: \n```\ngit clone https://github.com/genotoul-bioinfo/Binette\ncd Binette\n```\n\nThen create a Conda environment using the `binette.yaml` file:\n```\nconda env create -n binette -f binette.yaml\nconda activate binette \n```\n\nFinally install Binette with pip\n\n```\npip install .\n```\n\nBinette should be able to run :\n\n```\nbinette -h\n```\n\n\n## Downloading the CheckM2 database\n\nBefore using Binette, it is necessary to download the CheckM2 database:\n\n```bash\ncheckm2 database --download --path <checkm2/database/>\n```\n\nMake sure to replace `<checkm2/database/>` with the desired path where you want to store the CheckM2 database.\n\n\n# Usage \n\n## Input Formats\n\nBinette supports two input formats for bin sets: \n\n1. **Contig2bin Tables:** You can provide bin sets using contig2bin tables, which establish the relationship between each contig and its corresponding bin. In this format, you need to specify the `--contig2bin_tables` argument. \n\nFor example, consider the following two `contig2bin_tables`:\n\n- `bin_set1.tsv`:\n\n    ```tsv\n    contig_1   binA\n    contig_8   binA\n    contig_15  binB\n    contig_9   binC\n    ```\n    \n- `bin_set2.tsv`:\n\n    ```tsv\n    contig_1   bin.0\n    contig_8   bin.0\n    contig_15  bin.1\n    contig_9   bin.2\n    contig_10  bin.0\n    ```\n    \n    The `binette` command to process this input would be:\n    \n    ```bash\n    binette --contig2bin_tables bin_set1.tsv bin_set2.tsv --contigs assembly.fasta\n    ```\n\n2. **Bin Directories:** Alternatively, you can use bin directories, where each bin is represented by a separate FASTA file. For this format, you need to provide the `--bin_dirs` argument. Here's an example of two bin directories:\n\n    ```\n    bin_set1/\n    \u251c\u2500\u2500 binA.fa: contains sequences of contig_1, contig_8\n    \u251c\u2500\u2500 binB.fa: contains sequences of contig_15\n    \u2514\u2500\u2500 binC.fa: contains sequences of contig_9\n    ```\n    \n    ```\n    bin_set2/\n    \u251c\u2500\u2500 binA.fa: contains sequences of contig_1, contig_8, contig_10\n    \u251c\u2500\u2500 binB.fa: contains sequences of contig_15\n    \u2514\u2500\u2500 binC.fa: contains sequences of contig_9\n    ```\n    \n    The `binette` command to process this input would be:\n    \n    ```bash\n    binette --bin_dirs bin_set1 bin_set2 --contigs assembly.fasta\n    ```\n\nIn both formats, the `--contigs` argument should specify a FASTA file containing all the contigs found in the bins. Typically, this file would be the assembly FASTA file used to generate the bins. In these exemple the `assembly.fasta` file should contain at least the five contigs mentioned in the `contig2bin_tables` files or in the bin fasta files: `contig_1`, `contig_8`, `contig_15`, `contig_9`, and `contig_10`.\n\n## Outputs\n\nBinette results are stored in the `results` directory. You can specify a different directory using the `--outdir` option.\n\nIn this directory you will find:\n- `final_bins_quality_reports.tsv`: This is a TSV (tab-separated values) file containing quality information about the final selected bins.\n- `final_bins/`: This directory stores all the selected bins in fasta format.\n- `temporary_files/`: This directory contains intermediate files. If you choose to use the `--resume` option, Binette will utilize files in this directory to prevent the recomputation of time-consuming steps.\n\n\nThe `final_bins_quality_reports.tsv` file contains the following columns:\n| Column Name         | Description                                                                                                  |\n|---------------------|--------------------------------------------------------------------------------------------------------------|\n| **bin_id**          | This column displays the unique ID of the bin.                                                             |\n| **origin**          | Indicates the source or origin of the bin, specifying from which bin set it originates or the intermediate set operation that created it. |\n| **name**            | The name of the bin.                                                                                        |\n| **completeness**    | The completeness of the bin, determined by CheckM2.                                                         |\n| **contamination**   | The contamination of the bin, determined by CheckM2.                                                       |\n| **score**           | This column displays the computed score, which is calculated as: `completeness - contamination * weight`. You can customize the contamination weight using the `--contamination_weight` option. |\n| **size**            | Represents the size of the bin in nucleotides.                                                              |\n| **N50**             | Displays the N50 of the bin.                                                                                |\n| **contig_count**    | The number of contigs contained within the bin.                                                             |\n\n# Feature requests and bug reporting\n\nPlease submit bug reports and feature requests by opening an [issue](https://github.com/genotoul-bioinfo/Binette/issues). \n\n\n# Licence\n\nThis program is released as an open source software under the terms of [MIT License](https://forgemia.inra.fr/jean.mainguy/binette/-/raw/main/LICENSE).\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Binette: accurate binning refinement tool to constructs high quality MAGs.",
    "version": "1.0.0",
    "project_urls": {
        "Documentation": "https://binette.readthedocs.io",
        "Repository": "https://github.com/genotoul-bioinfo/Binette"
    },
    "split_keywords": [
        "bioinformatics",
        "prokaryote",
        "binning",
        "refinement",
        "metagenomics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6652542a9af7cf17ad63af614299d80f8dccba933e80ff6d428aa4521467c2e4",
                "md5": "8c497fc03ddb225bc00d2e2c0eb4f60c",
                "sha256": "8f00b740f84de12ebab807a812c97522b65ed286d3cf7db640965ecc6b90c3b3"
            },
            "downloads": -1,
            "filename": "Binette-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8c497fc03ddb225bc00d2e2c0eb4f60c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 21872,
            "upload_time": "2024-01-29T22:20:12",
            "upload_time_iso_8601": "2024-01-29T22:20:12.813263Z",
            "url": "https://files.pythonhosted.org/packages/66/52/542a9af7cf17ad63af614299d80f8dccba933e80ff6d428aa4521467c2e4/Binette-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5db142821c97c15a63506e8a689cf552d8689ae2c6573a396e29f4b4fa8c02ba",
                "md5": "6a745e08fab7ab6f9b1e40991d7839c4",
                "sha256": "e1eec04be8ed88f15dedb804ebb3d875e3e242a02446bccc8d61436d8ec82db5"
            },
            "downloads": -1,
            "filename": "Binette-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6a745e08fab7ab6f9b1e40991d7839c4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 60913,
            "upload_time": "2024-01-29T22:20:14",
            "upload_time_iso_8601": "2024-01-29T22:20:14.282387Z",
            "url": "https://files.pythonhosted.org/packages/5d/b1/42821c97c15a63506e8a689cf552d8689ae2c6573a396e29f4b4fa8c02ba/Binette-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-29 22:20:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "genotoul-bioinfo",
    "github_project": "Binette",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "binette"
}
        
Elapsed time: 0.17121s