-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·27 lines (25 loc) · 1.48 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
import os
__version__ = os.environ.get("VERSION", "3.1")
setup(
name = "pipits",
version = __version__,
packages = ["pipits"],
scripts = ["bin/pipits_diffseqs",
"bin/pipits_funguild.py",
"bin/pipits_funits",
"bin/pipits_getsamplelistfromfasta",
"bin/pipits_phylotype_biom",
"bin/pipits_process",
"bin/pipits_reformatRDPTaxonomy",
"bin/pipits_reformatVSintaxTaxonomy",
"bin/pipits_rereplicate",
"bin/pipits_retrain_rdp",
"bin/pipits_uc2otutable"],
description = "PIPITS: An automated pipeline for analyses of fungal ITS sequences from the Illumina sequencing platform",
long_description = "An open source stand-alone suite of software for automated processing of Illumina MiSeq sequences for fungal community analysis. PIPITS exploits a number of state of the art applications including manipulating paired end reads; automated ITS subregion filtering; OTU picking; and notably is the first pipeline to employ the sensitive RDP Classifier to taxonomically assign sequences against the taxonomically curated fungal ITS UNITE database,. We provide detailed descriptions of the pipeline and show its utility in the analysis of fungal ITS sequences generated on the MiSeq platform.",
author = "Hyun Soon Gweon",
author_email = "[email protected]",
url = "https://github.com/hsgweon/pipits",
license = "GPA"
)