Metadata-Version: 2.1
Name: microbiome-toolbox
Version: 0.0.4
Summary: Microbiome Toolbox
Home-page: UNKNOWN
Author: Jelena Banjac
Author-email: msjelenabanjac@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: seaborn
Requires-Dist: ipyvolume
Requires-Dist: xgboost
Requires-Dist: certifi (==2020.6.20)
Requires-Dist: cycler (==0.10.0)
Requires-Dist: kiwisolver (==1.2.0)
Requires-Dist: matplotlib (==2.2.2)
Requires-Dist: pyparsing (==2.4.7)
Requires-Dist: seaborn (==0.11.0)
Requires-Dist: sip (==4.19.24)
Requires-Dist: backcall (==0.2.0)
Requires-Dist: colorama (==0.4.4)
Requires-Dist: decorator (==4.4.2)
Requires-Dist: icc-rt (==2019.0.0)
Requires-Dist: ipykernel (==5.3.4)
Requires-Dist: ipython (==7.16.1)
Requires-Dist: ipython-genutils (==0.2.0)
Requires-Dist: jedi (==0.17.2)
Requires-Dist: joblib (==0.17.0)
Requires-Dist: jupyter-client (==6.1.7)
Requires-Dist: jupyter-core (==4.6.3)
Requires-Dist: mkl-service (==2.3.0)
Requires-Dist: mkl-fft (==1.2.0)
Requires-Dist: mkl-random (==1.1.1)
Requires-Dist: numpy (==1.19.1)
Requires-Dist: pandas (==1.1.3)
Requires-Dist: parso (==0.7.0)
Requires-Dist: pickleshare (==0.7.5)
Requires-Dist: pip (==20.2.3)
Requires-Dist: prompt-toolkit (==3.0.8)
Requires-Dist: pygments (==2.7.1)
Requires-Dist: python-dateutil (==2.8.1)
Requires-Dist: pytz (==2020.1)
Requires-Dist: pywin32 (==227)
Requires-Dist: pyzmq (==19.0.2)
Requires-Dist: scikit-learn (==0.23.2)
Requires-Dist: scipy (==1.5.2)
Requires-Dist: setuptools (==50.3.0)
Requires-Dist: six (==1.15.0)
Requires-Dist: threadpoolctl (==2.1.0)
Requires-Dist: tornado (==6.0.4)
Requires-Dist: traitlets (==4.3.3)
Requires-Dist: wcwidth (==0.2.5)
Requires-Dist: wheel (==0.35.1)
Requires-Dist: wincertstore (==0.2)

<div align="center">
  <p>
  <img src="https://image.freepik.com/free-vector/pathogen-microorganisms-set_74855-5909.jpg" alt="https://www.freepik.com/pch-vector" width="270" />
  </p>
  <p>
    <a href="">
      <img alt="First release" src="https://img.shields.io/badge/release-v1.0-brightgreen.svg" />
    </a>
  </p>

  <p>
    <strong>Microbiome Toolbox</strong>
  </p>

  <p>
    <a href="https://microbiome-toolbox.herokuapp.com">
      Website
    </a>
  </p>
</div>


# Microbiome Toolbox



Install your package from the real PyPI using python3 -m pip install [your-package].

**Note:**
```bash
# building package
#python setup.py sdist bdist_wheel
python setup.py develop
```

## Songbird

```
source activate microbiome

# These instructions are identical to the Linux (64-bit) instructions (or download manually from the link)
wget https://data.qiime2.org/distro/core/qiime2-2020.11-py36-linux-conda.yml
conda env create -n qiime2-2020.11 --file qiime2-2020.11-py36-linux-conda.yml
# OPTIONAL CLEANUP
rm qiime2-2020.11-py36-linux-conda.yml

pip install songbird==0.8.2

songbird multinomial \
	--input-biom ../../temp2/data/oral-collapsed-table.biom \
	--metadata-file ../../temp2/data/oral_trimmed_metadata.txt \
	--formula "C(label, Treatment('other'))" \
	--epochs 10000 \
	--differential-prior 0.5 \
	--training-column Test \
	--summary-interval 1 \
	--summary-dir results
```

```
songbird multinomial --input-biom ../../temp2/data/oral-collapsed-table.biom --metadata-file ../../temp2/data/oral_trimmed_metadata.txt --formula "C(label, Treatment('other'))" --epochs 10000 --differential-prior 0.5 --training-column Test --summary-interval 1 --summary-dir results
```


