-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix entry point bug and amend version file
- Loading branch information
jlli6t
committed
Aug 4, 2020
1 parent
39793ab
commit 3fb32cd
Showing
8 changed files
with
25 additions
and
27 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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
# Author: Jie Li <[email protected]> | ||
# License: GNU v3.0 | ||
# Copyrigth: 2019 | ||
|
||
import matplotlib | ||
matplotlib.use('Agg') | ||
|
File renamed without changes.
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
# Author: Jie Li <[email protected]> | ||
# License: GNU v3.0 | ||
# Copyrigth: 2018 | ||
|
||
import os | ||
from biosut.gt_path import abs_path | ||
|
@@ -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)) |
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 |
---|---|---|
|
@@ -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 = [ | ||
|