Skip to content

Commit

Permalink
REL: update version number and status
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Jan 17, 2024
1 parent 882e12e commit 55b57d8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion phables/phables.VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.2
1.3.0
4 changes: 2 additions & 2 deletions phables/workflow/scripts/phables.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
__author__ = "Vijini Mallawaarachchi"
__copyright__ = "Copyright 2022, Phables Project"
__license__ = "MIT"
__version__ = "1.2.2"
__version__ = "1.3.0"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "[email protected]"
__status__ = "Development"
__status__ = "Stable Release"


# Phables main code
Expand Down
2 changes: 1 addition & 1 deletion phables/workflow/scripts/phables_utils/FD_Inexact.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import networkx as nx

# create logger
logger = logging.getLogger("phables 1.2.2")
logger = logging.getLogger("phables 1.3.0")


def read_input(graphfile, number_subpath):
Expand Down
2 changes: 1 addition & 1 deletion phables/workflow/scripts/phables_utils/edge_graph_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from igraph import Graph

# Create logger
logger = logging.getLogger("phables 1.2.2")
logger = logging.getLogger("phables 1.3.0")


class BidirectionalError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion phables/workflow/scripts/phables_utils/long_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
LEN_THRESHOLD = 0.95

# Create logger
logger = logging.getLogger("phables 1.2.2")
logger = logging.getLogger("phables 1.3.0")


def resolve_long(
Expand Down
2 changes: 1 addition & 1 deletion phables/workflow/scripts/phables_utils/output_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FASTA_LINE_LEN = 60

# Create logger
logger = logging.getLogger("phables 1.2.2")
logger = logging.getLogger("phables 1.3.0")


def write_unitigs(nodes, unitig_names, graph_unitigs, filename, output):
Expand Down
2 changes: 1 addition & 1 deletion phables/workflow/scripts/phables_utils/short_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
LEN_THRESHOLD = 0.95

# Create logger
logger = logging.getLogger("phables 1.2.2")
logger = logging.getLogger("phables 1.3.0")


def resolve_short(
Expand Down

0 comments on commit 55b57d8

Please sign in to comment.