Skip to content

Commit

Permalink
fix entry point bug and amend version file
Browse files Browse the repository at this point in the history
  • Loading branch information
jlli6t committed Aug 4, 2020
1 parent 39793ab commit 3fb32cd
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 27 deletions.
7 changes: 0 additions & 7 deletions VERSION

This file was deleted.

12 changes: 6 additions & 6 deletions gccov/Main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env python3
"""
The :mod:`gccov.main` pileup the workflow.
"""

__author__ = 'Jie Li'
__copyright__ = 'Copyright 2019'
__credits__ = ['Jie Li']
__email__ = '[email protected]'
__status__ = 'Development'
# Author: Jie Li <[email protected]>
# License: GNU v3.0
# Copyrigth: 2019

import os
import sys
Expand Down
12 changes: 7 additions & 5 deletions gccov/coverm.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

###########################################################
#
# coverm.py - use this to pileup coverm from bam files ###
#
###########################################################
"""
The :mod:`gccov.coverm` plot scatter bubbles.
"""

# Author: Jie Li <[email protected]>
# License: GNU v3.0
# Copyrigth: 2019

import os
import sys
Expand Down
12 changes: 6 additions & 6 deletions gccov/main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env python3
"""
The :mod:`gccov.main` pileup the workflow.
"""

__author__ = 'Jie Li'
__copyright__ = 'Copyright 2019'
__credits__ = ['Jie Li']
__email__ = '[email protected]'
__status__ = 'Development'
# Author: Jie Li <[email protected]>
# License: GNU v3.0
# Copyrigth: 2019

import os
import sys
Expand Down
1 change: 1 addition & 0 deletions gccov/scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

# Author: Jie Li <[email protected]>
# License: GNU v3.0
# Copyrigth: 2019

import matplotlib
matplotlib.use('Agg')
Expand Down
File renamed without changes.
4 changes: 3 additions & 1 deletion gccov/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

# Author: Jie Li <[email protected]>
# License: GNU v3.0
# Copyrigth: 2018

import os
from biosut.gt_path import abs_path
Expand All @@ -20,4 +21,5 @@ def get_version():
@classmethod
def show_version(cls):
ver = cls.get_version()
print('\n\n\t\tgccov version * %s *\n\n' % ver)
name = os.path.split(os.path.dirname(__file__))[1]
print('\n\n\t\t%s version * %s *\n\n' % (name, ver))
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
description = 'Visualize gc & coverage.',
version = Version.get_version(),
url = 'https://github.com/jlli6t/gccov',
author = 'M.M Jie Li',
author = 'Jie Li',
author_email = '[email protected]',
maintainer = 'M.M Jie Li',
maintainer = 'Jie Li',
maintainer_email = '[email protected]',

classifiers = [
Expand Down

0 comments on commit 3fb32cd

Please sign in to comment.