Skip to content

Commit 1104d52

Browse files
authored
Release v1.0.5 (#53)
1 parent c613af1 commit 1104d52

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.4')
1013+
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.0.5')
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.4 ...\n")
1043+
print("Running ntJoin v1.0.5 ...\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.4
5+
# ntJoin v1.0.5
66

77
# Input files
88
target=None
@@ -92,7 +92,7 @@ endif
9292
help:
9393
@echo ""
9494
@echo "ntJoin: Scaffolding assemblies using reference assemblies and minimizer graphs"
95-
@echo "ntJoin v1.0.4"
95+
@echo "ntJoin v1.0.5"
9696
@echo "Usage: ntJoin assemble target=<target scaffolds> references='List of reference assemblies' reference_weights='List of weights per reference assembly'"
9797
@echo ""
9898
@echo "Options:"
@@ -152,7 +152,7 @@ ifeq ($(ref), None)
152152
endif
153153

154154
version:
155-
@echo "ntJoin v1.0.4"
155+
@echo "ntJoin v1.0.5"
156156
@echo "Written by Lauren Coombe ([email protected])"
157157

158158
.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.4",
8+
version="1.0.5",
99
author="Lauren Coombe",
1010
author_email="[email protected]",
1111
description="Genome assembly scaffolder using minimizer graphs",

0 commit comments

Comments
 (0)