Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Aug 7, 2020
1 parent 7be11f1 commit 53b74f4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion graphbin
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ __author__ = "Vijini Mallawaarachchi, Anuradha Wickramarachchi, and Yu Lin"
__copyright__ = "Copyright 2020, GraphBin Project"
__credits__ = "Benjamin Kaehler and Gavin Huttley"
__license__ = "GPL"
__version__ = "1.2"
__version__ = "1.3"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "vijini.mallawaarachchi@anu.edu.au"
__status__ = "Stable Release"
Expand Down
2 changes: 1 addition & 1 deletion graphbin_utils/graphbin_Canu.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run(args):
# Setup logger
#-----------------------

logger = logging.getLogger('GraphBin 1.2')
logger = logging.getLogger('GraphBin 1.3')
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
consoleHeader = logging.StreamHandler()
Expand Down
2 changes: 1 addition & 1 deletion graphbin_utils/graphbin_Flye.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
def run(args):
# Setup logger
#-----------------------
logger = logging.getLogger('GraphBin 1.2')
logger = logging.getLogger('GraphBin 1.3')
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
consoleHeader = logging.StreamHandler()
Expand Down
2 changes: 1 addition & 1 deletion graphbin_utils/graphbin_MEGAHIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run(args):
# Setup logger
#-----------------------

logger = logging.getLogger('GraphBin 1.2')
logger = logging.getLogger('GraphBin 1.3')
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
consoleHeader = logging.StreamHandler()
Expand Down
2 changes: 1 addition & 1 deletion graphbin_utils/graphbin_Miniasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run(args):
# Setup logger
#-----------------------

logger = logging.getLogger('GraphBin 1.2')
logger = logging.getLogger('GraphBin 1.3')
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
consoleHeader = logging.StreamHandler()
Expand Down
2 changes: 1 addition & 1 deletion graphbin_utils/graphbin_SGA.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run(args):
# Setup logger
#-----------------------

logger = logging.getLogger('GraphBin 1.2')
logger = logging.getLogger('GraphBin 1.3')
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
consoleHeader = logging.StreamHandler()
Expand Down
2 changes: 1 addition & 1 deletion graphbin_utils/graphbin_SPAdes.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
def run(args):
# Setup logger
#-----------------------
logger = logging.getLogger('GraphBin 1.2')
logger = logging.getLogger('GraphBin 1.3')
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
consoleHeader = logging.StreamHandler()
Expand Down
4 changes: 2 additions & 2 deletions graphbin_utils/labelpropagation/labelprop.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import logging

# create logger
logger = logging.getLogger('GraphBin 1.2')
logger = logging.getLogger('GraphBin 1.3')

class Edge():
def __init__(self, src, dest, weight):
Expand All @@ -18,7 +18,7 @@ def __init__(self, src, dest, weight):
class LabelProp():

def __init__(self):
self.logger = logging.getLogger('GraphBin 1.2')
self.logger = logging.getLogger('GraphBin 1.3')
self.logger.info('Creating an instance of LabelProp')
self.initialize_env()

Expand Down

0 comments on commit 53b74f4

Please sign in to comment.