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 12, 2024
1 parent d7e33c2 commit 39e732e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion phables/phables.VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.3
1.4.0
2 changes: 1 addition & 1 deletion phables/workflow/scripts/phables.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
__author__ = "Vijini Mallawaarachchi"
__copyright__ = "Copyright 2022, Phables Project"
__license__ = "MIT"
__version__ = "1.3.3"
__version__ = "1.4.0"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "viji.mallawaarachchi@gmail.com"
__status__ = "Stable Release"
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.3.3")
logger = logging.getLogger("phables 1.4.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.3.3")
logger = logging.getLogger("phables 1.4.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.3.3")
logger = logging.getLogger("phables 1.4.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.3.3")
logger = logging.getLogger("phables 1.4.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.3.3")
logger = logging.getLogger("phables 1.4.0")


def resolve_short(
Expand Down

0 comments on commit 39e732e

Please sign in to comment.