-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (27 loc) · 1.4 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
28
29
30
# coding=utf-8
from setuptools import setup, find_packages
LONG_DESCRIPTION = '''Mobile element insertion (MEI) is a major category of structure variations (SVs). \
The rapid development of long read sequencing provides the opportunity to sensitively discover MEIs. \
However, the signals of MEIs implied by noisy long reads are highly complex, due to the repetitiveness \
of mobile elements as well as the serious sequencing errors. Herein, we propose Realignment-based \
Mobile Element insertion detection Tool for Long read (rMETL). rMETL takes advantage of \
its novel chimeric read re-alignment approach to well handle complex MEI signals. \
Benchmarking results on simulated and real datasets demonstrated that rMETL has the ability \
to more sensitivity discover MEIs as well as prevent false positives. \
It is suited to produce high quality MEI callsets in many genomics studies.'''
setup(
name = "rMETL",
version = "1.0.4",
description = "realignment-based Mobile Element insertion detection Tool for Long read",
author = "Jiang Tao",
author_email = "tjiang@hit.edu.cn",
url = "https://github.com/tjiangHIT/rMETL",
license = "MIT",
packages = find_packages("src"),
package_dir = {"": "src"},
data_files = [("", ["LICENSE"])],
scripts=['src/rMETL/rMETL'],
long_description = LONG_DESCRIPTION,
zip_safe = False,
install_requires = ['pysam', 'Biopython', 'Cigar']
)