Skip to content

Commit e5b8437

Browse files
authored
Release v1.0.6 (#62)
1 parent 9c9e58d commit e5b8437

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

bin/ntjoin_assemble.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ def parse_arguments():
10101010
"increasing/decreasing to assign contig orientation [90]\n "
10111011
"Note: Only used with --mkt is NOT specified", default=90, type=int)
10121012
parser.add_argument('-t', help="Number of threads [1]", default=1, type=int)
1013-
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.0.5')
1013+
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.0.6')
10141014
parser.add_argument("--agp", help="Output AGP file describing scaffolds", action="store_true")
10151015
parser.add_argument("--no_cut", help="Do not cut input contigs, place in most representative path",
10161016
action="store_true")
@@ -1040,7 +1040,7 @@ def print_parameters(self):
10401040

10411041
def main(self):
10421042
"Run ntJoin graph stage"
1043-
print("Running ntJoin v1.0.5 ...\n")
1043+
print("Running ntJoin v1.0.6 ...\n")
10441044
self.print_parameters()
10451045

10461046
# Parse the weights of each input reference assembly

ntJoin

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ntJoin: Scaffold assemblies using reference assemblies and minimizer graphs
44
# Written by Lauren Coombe @lcoombe
5-
# ntJoin v1.0.5
5+
# ntJoin v1.0.6
66

77
# Input files
88
target=None
@@ -103,7 +103,7 @@ endif
103103
help:
104104
@echo ""
105105
@echo "ntJoin: Scaffolding assemblies using reference assemblies and minimizer graphs"
106-
@echo "ntJoin v1.0.5"
106+
@echo "ntJoin v1.0.6"
107107
@echo "Usage: ntJoin assemble target=<target scaffolds> references='List of reference assemblies' reference_weights='List of weights per reference assembly'"
108108
@echo ""
109109
@echo "Options:"
@@ -171,7 +171,7 @@ ifeq ($(ref), None)
171171
endif
172172

173173
version:
174-
@echo "ntJoin v1.0.5"
174+
@echo "ntJoin v1.0.6"
175175
@echo "Written by Lauren Coombe ([email protected])"
176176

177177
.PHONY: help all version analysis assemble check_params jupiter

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="ntJoin",
8-
version="1.0.5",
8+
version="1.0.6",
99
author="Lauren Coombe",
1010
author_email="[email protected]",
1111
description="Genome assembly scaffolder using minimizer graphs",

0 commit comments

Comments
 (0)