Skip to content

Commit

Permalink
test setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tjiangHIT committed Sep 24, 2019
1 parent 38a4f9f commit 487bcd6
Show file tree
Hide file tree
Showing 20 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion INSTALL.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# !/usr/bin/bash

ln -s src/rMETL.py rMETL.py
ln -s src/rMETL/rMETL rMETL

24 changes: 13 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

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.
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(
Expand All @@ -19,9 +19,11 @@
author = "Jiang Tao",
author_email = "[email protected]",
url = "https://github.com/tjiangHIT/rMETL",
license = "MIT Licence",
packages = find_packages('src'),
package_dir = {'': 'src'},
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']
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added src/rMETL/rMETL_MEIcalling.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/rMETL/rMETL_cmdRunner.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/rMETL/rMETL_concensus.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/rMETL/rMETL_extraction.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/rMETL/rMETL_genotype.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/rMETL/rMETL_realign.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/rMETL/rMETL_utils.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/rMETL/rMETL_version.pyc
Binary file not shown.

0 comments on commit 487bcd6

Please sign in to comment.