Skip to content

Commit

Permalink
REL: Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Jun 7, 2024
1 parent 7d79278 commit 652caa8
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/metacoag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Vijini Mallawaarachchi and Yu Lin"
__copyright__ = "Copyright 2020, MetaCoAG Project"
__license__ = "GPL-3.0"
__version__ = "1.2.0"
__version__ = "1.2.1"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "[email protected]"
__status__ = "Stable Release"
2 changes: 1 addition & 1 deletion src/metacoag/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Vijini Mallawaarachchi and Yu Lin"
__copyright__ = "Copyright 2020, MetaCoAG Project"
__license__ = "GPL-3.0"
__version__ = "1.2.0"
__version__ = "1.2.1"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "[email protected]"
__status__ = "Stable Release"
Expand Down
4 changes: 2 additions & 2 deletions src/metacoag/metacoag_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__author__ = "Vijini Mallawaarachchi and Yu Lin"
__copyright__ = "Copyright 2020, MetaCoAG Project"
__license__ = "GPL-3.0"
__version__ = "1.2.0"
__version__ = "1.2.1"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "[email protected]"
__status__ = "Stable Release"
Expand Down Expand Up @@ -69,7 +69,7 @@ def run(args):
# Setup logger
# ------------------------------------------------------------------------

logger = logging.getLogger("MetaCoaAG 1.2.0")
logger = logging.getLogger("MetaCoaAG 1.2.1")
logger.setLevel(logging.DEBUG)
logging.captureWarnings(True)
formatter = logging.Formatter("%(asctime)s - %(levelname)s - %(message)s")
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Vijini Mallawaarachchi and Yu Lin"
__copyright__ = "Copyright 2020, MetaCoAG Project"
__license__ = "GPL-3.0"
__version__ = "1.2.0"
__version__ = "1.2.1"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "[email protected]"
__status__ = "Stable Release"
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/feature_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from Bio import SeqIO

# Create logger
logger = logging.getLogger("MetaCoaAG 1.2.0")
logger = logging.getLogger("MetaCoaAG 1.2.1")

# Set complements of each nucleotide
complements = {"A": "T", "C": "G", "G": "C", "T": "A"}
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/label_prop_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
MAX_WEIGHT = sys.float_info.max

# create logger
logger = logging.getLogger("MetaCoaAG 1.2.0")
logger = logging.getLogger("MetaCoaAG 1.2.1")


class DataWrap:
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/marker_gene_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pathlib

# create logger
logger = logging.getLogger("MetaCoaAG 1.2.0")
logger = logging.getLogger("MetaCoaAG 1.2.1")


# Modified from SolidBin
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/matching_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
MAX_WEIGHT = sys.float_info.max

# create logger
logger = logging.getLogger("MetaCoaAG 1.2.0")
logger = logging.getLogger("MetaCoaAG 1.2.1")


def normpdf(x, mean, sd):
Expand Down

0 comments on commit 652caa8

Please sign in to comment.