Metadata-Version: 2.1
Name: magcluster
Version: 0.1.3
Summary: Magnetosome gene cluster annotation, screening and mapping tool
Home-page: https://github.com/RunJiaJi/magcluster
Author: Runjia Ji
Author-email: jirunjia@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# magcluster
Magnetosome gene cluster annotation, screening and mapping tool
## Installation
We recommend creating a ***new environment*** for the magcluster release being installed through conda.
```bash
wget https://github.com/RunJiaJi/magcluster/releases/download/0.1.3/magcluster-0.1.3.yml

conda env create -n magcluster --file magcluster-0.1.3.yml

# OPTIONAL CLEANUP
rm magcluster-0.1.3.yml
```
Alternatively, you can install magcluster through pip in an existing environment. In this way, please make sure you have prokka installed.
```bash
#Prokka installation
conda install -c conda-forge -c bioconda -c defaults prokka
```
```bash
pip install magcluster
```

## General Usage
```bash
usage: magcluster [options]

Magnetosome Gene Cluster Analysis Tool

optional arguments:
  -h, --help            show this help message and exit
  -v, --version         show magcluster version number and exit

Options:
  {prokka,mgc_screen,clinker}
    prokka              Genome annotation with Prokka
    mgc_screen          Magnetosome gene cluster screening with magscreen
    clinker             Magnetosome gene cluster mapping with Clinker

General usage
-------------
Magnetosome gene annotation:
  $ magcluster prokka XXX.fa

Magnetosome gene screen:
  $ magcluster mgc_screen XXX.gbk

Magnetosome gene cluster mapping:
  $ magcluster clinker XXX_screened.gbk

Runjia, 2021
```

