Skip to content

Commit 3422993

Browse files
authored
Prepare for release v1.1.1 (#91)
1 parent 75131da commit 3422993

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ ntJoin assemble target=my_scaffolds.fa target_weight=1 reference_config=config_f
125125

126126
#### Installing ntJoin using Conda
127127
```sh
128-
conda install -c bioconda -c conda-forge ntjoin=1.1.0
128+
conda install -c bioconda -c conda-forge ntjoin=1.1.1
129129
```
130130

131131
#### Installing ntJoin using Brew
@@ -136,7 +136,7 @@ brew install brewsci/bio/ntjoin
136136

137137
#### Installing ntJoin from the source code
138138
```sh
139-
curl -L --output ntJoin-1.1.0.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.0/ntJoin-1.1.0.tar.gz && tar xvzf ntJoin-1.1.0.tar.gz
139+
curl -L --output ntJoin-1.1.1.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.1/ntJoin-1.1.1.tar.gz && tar xvzf ntJoin-1.1.1.tar.gz
140140
```
141141

142142
## Dependencies

bin/ntjoin_assemble.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def parse_arguments():
983983
"increasing/decreasing to assign contig orientation [90]\n "
984984
"Note: Only used with --mkt is NOT specified", default=90, type=int)
985985
parser.add_argument('-t', help="Number of threads for multiprocessing [1]", default=1, type=int)
986-
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.0')
986+
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.1')
987987
parser.add_argument("--agp", help="Output AGP file describing scaffolds", action="store_true")
988988
parser.add_argument("--no_cut", help="Do not cut input contigs, place in most representative path",
989989
action="store_true")
@@ -1030,7 +1030,7 @@ def print_parameters(self):
10301030

10311031
def main(self):
10321032
"Run ntJoin graph stage"
1033-
print("Running ntJoin v1.1.0 ...\n")
1033+
print("Running ntJoin v1.1.1 ...\n")
10341034
self.print_parameters()
10351035

10361036
# 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.1.0
5+
# ntJoin v1.1.1
66

77
# Input files
88
target=None
@@ -116,7 +116,7 @@ endif
116116
help:
117117
@echo ""
118118
@echo "ntJoin: Scaffolding assemblies using reference assemblies and minimizer graphs"
119-
@echo "ntJoin v1.1.0"
119+
@echo "ntJoin v1.1.1"
120120
@echo "Usage: ntJoin assemble target=<target scaffolds> references='List of reference assemblies' reference_weights='List of weights per reference assembly'"
121121
@echo ""
122122
@echo "Options:"
@@ -184,7 +184,7 @@ ifeq ($(ref), None)
184184
endif
185185

186186
version:
187-
@echo "ntJoin v1.1.0"
187+
@echo "ntJoin v1.1.1"
188188
@echo "Written by Lauren Coombe ([email protected])"
189189

190190
check_install:

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

0 commit comments

Comments
 (0)