Metadata-Version: 2.0
Name: ymp
Version: 0.0.5
Summary: Flexible multi-omic pipeline system
Home-page: https://github.com/epruesse/ymp
Author: Elmar Pruesse
Author-email: elmar.pruesse@ucdenver.edu
License: GPL-3
Project-URL: Documentation, https://ymp.readthedocs.io
Project-URL: Source, https://github.com/epruesse/ymp
Keywords: bioinformatics pipeline rnaseq metagenomics conda bioconda snakemake
Platform: linux
Platform: macos
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: snakemake
Requires-Dist: Click
Requires-Dist: Click-completion
Requires-Dist: ruamel.yaml (>0.15)
Requires-Dist: drmaa
Requires-Dist: pandas (>=0.20)
Requires-Dist: networkx (>=2)
Requires-Dist: coloredlogs
Requires-Dist: xdg

# ymp - flexible omics pipeline

[![CircleCI](https://img.shields.io/circleci/project/github/epruesse/ymp.svg?label=CircleCI)](https://circleci.com/gh/epruesse/ymp)
[![Read the Docs](https://img.shields.io/readthedocs/ymp/latest.svg)](https://ymp.readthedocs.io/en/latest)
[![Codacy grade](https://img.shields.io/codacy/grade/07ec32ae80194ec8b9184e1f6b5e6649.svg)](https://app.codacy.com/app/elmar/ymp)
[![Codecov](https://img.shields.io/codecov/c/github/epruesse/ymp.svg)](https://codecov.io/gh/epruesse/ymp)


YMP is an omics pipeline designed to simplify processing large numbers of
read files while remaining flexible and easily extented.

YMP relies upon Bioconda to provide all necessary tools in up-to-date versions
and Snakemake to handle task execution.

Please refer to the [manual](http://ymp.readthedocs.io/) for more help.

## Github development version

### 1. Install from github

1. Check out repo
  ```
  git clone https://github.com/epruesse/ymp.git
  ```
  or (requires ssh key set up)
  ```
  git clone git@github.com:epruesse/ymp.git
  ```

2. Create and activate conda environment for YMP
  ```
  conda env create -n ymp --file environment.yaml
  source activate ymp
  ```

3. Install YMP into conda environment
  ```
  pip install -e .
  ```

4. Check that Ymp runs
  ```
  source activate ymp
  ymp --help
  ```

### 2. Update github installation

Usually, all you need to do is a pull:

  ```
  git pull
  ```

If you see errors before jobs are executed, the core requirements may have changed.
Try updating the conda environment:

  ```
  source activate ymp
  conda env update --file environment.yaml
  ```

If something changed in `setup.py`, a re-install may be necessary:

  ```
  source activate ymp
  pip install -U -e . 
  ```




