Skip to content

Commit 542a6b6

Browse files
authored
Prepare for release v1.0.8 (#79)
1 parent a8d508d commit 542a6b6

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

bin/ntjoin_assemble.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ def parse_arguments():
875875
"increasing/decreasing to assign contig orientation [90]\n "
876876
"Note: Only used with --mkt is NOT specified", default=90, type=int)
877877
parser.add_argument('-t', help="Number of threads [1]", default=1, type=int)
878-
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.0.7')
878+
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.0.8')
879879
parser.add_argument("--agp", help="Output AGP file describing scaffolds", action="store_true")
880880
parser.add_argument("--no_cut", help="Do not cut input contigs, place in most representative path",
881881
action="store_true")
@@ -905,7 +905,7 @@ def print_parameters(self):
905905

906906
def main(self):
907907
"Run ntJoin graph stage"
908-
print("Running ntJoin v1.0.7 ...\n")
908+
print("Running ntJoin v1.0.8 ...\n")
909909
self.print_parameters()
910910

911911
# 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.7
5+
# ntJoin v1.0.8
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.7"
106+
@echo "ntJoin v1.0.8"
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:"
@@ -170,7 +170,7 @@ ifeq ($(ref), None)
170170
endif
171171

172172
version:
173-
@echo "ntJoin v1.0.7"
173+
@echo "ntJoin v1.0.8"
174174
@echo "Written by Lauren Coombe (lcoombe@bcgsc.ca)"
175175

176176
.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.7",
8+
version="1.0.8",
99
author="Lauren Coombe",
1010
author_email="lcoombe@bcgsc.ca",
1111
description="Genome assembly scaffolder using minimizer graphs",

0 commit comments

Comments
 (0)