-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,8 @@ | |
def main(): | ||
|
||
parser = argparse.ArgumentParser(prog='DCC',formatter_class=argparse.RawDescriptionHelpFormatter, fromfile_prefix_chars='@', description='Contact [email protected]') | ||
|
||
|
||
parser.add_argument('--version', action='version', version='%(prog)s 0.3.2') | ||
|
||
parser.add_argument('--version', action='version', version='%(prog)s 0.3.3') | ||
parser.add_argument("Input", metavar='Input', nargs="+", | ||
help="Input of the chimeric.out.junction file from STAR. Alternatively, a sample sheet specifying where your chimeric.out.junction files are, each sample per line, provide with @ prefix (e.g. @samplesheet).") | ||
#parser.add_argument("-O", "--output", dest="output", | ||
|
@@ -103,7 +102,7 @@ def main(): | |
#formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') | ||
#ch.setFormatter(formatter) | ||
#root.addHandler(ch) | ||
logging.info('version:0.3.2') | ||
logging.info('version: 0.3.3') | ||
logging.info(' '.join(sys.argv)) | ||
logging.info('DCC started') | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
""" | ||
|
||
# Always prefer setuptools over distutils | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
# To use a consistent encoding | ||
from codecs import open | ||
from os import path | ||
|
@@ -23,7 +23,7 @@ | |
# Versions should comply with PEP440. For a discussion on single-sourcing | ||
# the version across setup.py and the project code, see | ||
# https://packaging.python.org/en/latest/single_source_version.html | ||
version='0.3.1c', | ||
version='0.3.3', | ||
|
||
description='Detect circRNAs from chimeras', | ||
long_description=long_description, | ||
|
@@ -35,6 +35,9 @@ | |
author='Jun Cheng', | ||
author_email='[email protected]', | ||
|
||
maintainer='Tobias Jakobi', | ||
maintainer_email='[email protected]', | ||
|
||
# Choose your license | ||
license='GNU General Public License (GPL)', | ||
|
||
|
@@ -44,7 +47,7 @@ | |
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 4 - Beta', | ||
|
||
# Indicate who your project is intended for | ||
'Intended Audience :: Researchers', | ||
|