Metadata-Version: 2.1
Name: metagenomix
Version: 3.0
Summary: metagenomix is a pipeline of pipelines to conduct metagenomic analyses on Slurm/Torque
Home-page: https://github.com/FranckLejzerowicz/metagenomix
Author: Franck Lejzerowicz
Author-email: franck.lejzerowicz@gmail.com
Maintainer: Franck Lejzerowicz
Maintainer-email: franck.lejzerowicz@gmail.com
License: BSD
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: biom-format
Requires-Dist: scikit-bio
Requires-Dist: scipy
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: tabulate
Requires-Dist: pyyaml
Requires-Dist: seaborn
Requires-Dist: Xhpc (==2.9.1)

# metagenomix

`metagenomix` is a pipeline
[creator](https://github.com/FranckLejzerowicz/metagenomix/blob/main/metagenomix/doc/creating.md),
[monitor](https://github.com/FranckLejzerowicz/metagenomix/blob/main/metagenomix/doc/monitoring.md),
[manager](https://github.com/FranckLejzerowicz/metagenomix/blob/main/metagenomix/doc/managing.md),
[exporter](https://github.com/FranckLejzerowicz/metagenomix/blob/main/metagenomix/doc/exporting.md)
and 
[merger](https://github.com/FranckLejzerowicz/metagenomix/blob/main/metagenomix/doc/merging.md)
that takes care of writing the command-lines for any shotgun metagenomics 
software, either as bash scripts or
[Slurm](https://slurm.schedmd.com/documentation.html)
/
[Torque](http://docs.adaptivecomputing.com/torque/4-0-2/help.htm)
jobs (incl. scratch space usage), based on user-defined
[configurations](https://github.com/FranckLejzerowicz/metagenomix/wiki/Configurations)
for databases, co-assemblies, strain foci, as well as software-specific or 
computing resource parameters (incl. memory, scratch relocations, modules 
and conda environments). 

Outputs are scripts that the user needs to run sequentially, which typically 
can be handled by packages such as
[snakemake](https://snakemake.readthedocs.io/en/stable/): this is not (yet) 
used here as `metagenomix` is only meant to facilitate the creation, 
monitoring, management and access of shotgun metagenomic analyses results for 
personalized pipelines including any software.

Any software? Well, if not already in the
[softwares list](https://github.com/FranckLejzerowicz/metagenomix/wiki/Softwares),
someone will need to add it to metagenomix, following the instructions to 
[contribute code](https://github.com/FranckLejzerowicz/metagenomix/wiki/Contributing).

In a nutshell, 

Please read the full documentation for more details, using the
[Wiki pages](https://github.com/FranckLejzerowicz/metagenomix/wiki)

## Installation

```
pip install metagenomix
```

or

```
pip install --upgrade git+https://github.com/FranckLejzerowicz/metagenomix.git
```

### Depencencies

While a container solution with all the softwares and conda environments is 
being develop, it currently is the responsibility of the user to install all 
the databases and softwares that the pipeline will allow you to prepare 
command-lines for. Some softwares necessitate to be present either as a 
single binary file or with an entire folder (e.g., pre-trained models or 
scripts). Since some softwares require the user to edit configurations 
after install, some level of manual installation/tuning will be needed 
before usage.

## Usage

```
Usage: metagenomix [OPTIONS] COMMAND [ARGS]...

  Metagenomix command line manager

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

Commands:
  create   Write jobs for your pipeline configuration.
  export   Prepare an archive for specific pipeline outputs.
  manage   Edit the contents of your pipeline output folder.
  monitor  Check IO/job status of your pipeline configuration.
  merge    Combine the per-sample outputs into feature tables.
```

Detailed explanations for each command at
[Running](https://github.com/FranckLejzerowicz/metagenomix/wiki/Running)
Wiki page

