Skip to content

Commit

Permalink
GIT: Merge branch 'main' into JOSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Sep 18, 2024
2 parents 1e6ac4c + 260de18 commit 2c124cd
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 6 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ conda create -n gbintk
# activate conda environment
conda activate gbintk

# install graphbin
# install gbintk
conda install -c bioconda gbintk

# check graphbin installation
# check gbintk installation
gbintk --help
```

Expand All @@ -51,7 +51,11 @@ gbintk --help
You can install GraphBin-Tk using `pip` from the [PyPI](https://pypi.org/project/gbintk/) distribution.

```shell
# install gbintk
pip install gbintk

# check gbintk installation
gbintk --help
```

### For development
Expand Down
34 changes: 30 additions & 4 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

GraphBin-Tk is now available on [bioconda](https://anaconda.org/bioconda/gbintk) and [PyPI](https://pypi.org/project/gbintk/).

### Using conda
## Using conda

You can install GraphBin-Tk using the [bioconda](https://anaconda.org/bioconda/gbintk) distribution. You can download
[Anaconda](https://www.anaconda.com/distribution/) or [Miniconda](https://docs.conda.io/en/latest/miniconda.html) which contains `conda`. You can also use [`mamba`](https://mamba.readthedocs.io/en/latest/index.html) instead of `conda`.
Expand All @@ -19,17 +19,43 @@ conda create -n gbintk
# activate conda environment
conda activate gbintk

# install graphbin
# install gbintk
conda install -c bioconda gbintk

# check graphbin installation
# check gbintk installation
gbintk --help
```

### Using pip
## Using pip

You can install GraphBin-Tk using `pip` from the [PyPI](https://pypi.org/project/gbintk/) distribution.

```shell
# install gbintk
pip install gbintk

# check gbintk installation
gbintk --help
```

## Available subcommands

Run `gbintk --help` or `gbintk -h` to list the help message for GraphBin-Tk.

```shell
Usage: gbintk [OPTIONS] COMMAND [ARGS]...

gbintk (GraphBin-Tk): Assembly graph-based metagenomic binning toolkit

Options:
-v, --version Show the version and exit.
-h, --help Show this message and exit.

Commands:
graphbin GraphBin: Refined Binning of Metagenomic Contigs using...
graphbin2 GraphBin2: Refined and Overlapped Binning of Metagenomic...
metacoag MetaCoAG: Binning Metagenomic Contigs via Composition,...
prepare Format the initial binning result from an existing binning tool
visualise Visualise binning and refinement results
evaluate Evaluate the binning results given a ground truth
```

0 comments on commit 2c124cd

Please sign in to comment.