Skip to content

Commit

Permalink
Prepare for release v1.0.8 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcoombe authored Oct 6, 2021
1 parent a8d508d commit 542a6b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bin/ntjoin_assemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def parse_arguments():
"increasing/decreasing to assign contig orientation [90]\n "
"Note: Only used with --mkt is NOT specified", default=90, type=int)
parser.add_argument('-t', help="Number of threads [1]", default=1, type=int)
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.0.7')
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.0.8')
parser.add_argument("--agp", help="Output AGP file describing scaffolds", action="store_true")
parser.add_argument("--no_cut", help="Do not cut input contigs, place in most representative path",
action="store_true")
Expand Down Expand Up @@ -905,7 +905,7 @@ def print_parameters(self):

def main(self):
"Run ntJoin graph stage"
print("Running ntJoin v1.0.7 ...\n")
print("Running ntJoin v1.0.8 ...\n")
self.print_parameters()

# Parse the weights of each input reference assembly
Expand Down
6 changes: 3 additions & 3 deletions ntJoin
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# ntJoin: Scaffold assemblies using reference assemblies and minimizer graphs
# Written by Lauren Coombe @lcoombe
# ntJoin v1.0.7
# ntJoin v1.0.8

# Input files
target=None
Expand Down Expand Up @@ -103,7 +103,7 @@ endif
help:
@echo ""
@echo "ntJoin: Scaffolding assemblies using reference assemblies and minimizer graphs"
@echo "ntJoin v1.0.7"
@echo "ntJoin v1.0.8"
@echo "Usage: ntJoin assemble target=<target scaffolds> references='List of reference assemblies' reference_weights='List of weights per reference assembly'"
@echo ""
@echo "Options:"
Expand Down Expand Up @@ -170,7 +170,7 @@ ifeq ($(ref), None)
endif

version:
@echo "ntJoin v1.0.7"
@echo "ntJoin v1.0.8"
@echo "Written by Lauren Coombe ([email protected])"

.PHONY: help all version analysis assemble check_params jupiter
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ntJoin",
version="1.0.7",
version="1.0.8",
author="Lauren Coombe",
author_email="[email protected]",
description="Genome assembly scaffolder using minimizer graphs",
Expand Down

0 comments on commit 542a6b6

Please sign in to comment.