Skip to content

Commit 4d4aca5

Browse files
authored
Prepare for release v1.1.5 (#114)
1 parent cb61d15 commit 4d4aca5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

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

128128
#### Installing ntJoin using Conda
129129
```sh
130-
conda install -c bioconda -c conda-forge ntjoin=1.1.4
130+
conda install -c bioconda -c conda-forge ntjoin=1.1.5
131131
```
132132

133133
#### Installing ntJoin using Brew
@@ -138,7 +138,7 @@ brew install brewsci/bio/ntjoin
138138

139139
#### Installing ntJoin from the source code
140140
```sh
141-
curl -L --output ntJoin-1.1.4.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.4/ntJoin-1.1.4.tar.gz && tar xvzf ntJoin-1.1.4.tar.gz
141+
curl -L --output ntJoin-1.1.5.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.5/ntJoin-1.1.5.tar.gz && tar xvzf ntJoin-1.1.5.tar.gz
142142
```
143143

144144
## Dependencies

bin/ntjoin_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def parse_arguments():
3535
"increasing/decreasing to assign contig orientation [90]\n "
3636
"Note: Only used with --mkt is NOT specified", default=90, type=int)
3737
parser.add_argument('-t', help="Number of threads for multiprocessing [1]", default=1, type=int)
38-
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.4')
38+
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.5')
3939
parser.add_argument("--agp", help="Output AGP file describing scaffolds", action="store_true")
4040
parser.add_argument("--no_cut", help="Do not cut input contigs, place in most representative path",
4141
action="store_true")

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.4
5+
# ntJoin v1.1.5
66

77
# Input files
88
target=None
@@ -117,7 +117,7 @@ endif
117117
help:
118118
@echo ""
119119
@echo "ntJoin: Scaffolding assemblies using reference assemblies and minimizer graphs"
120-
@echo "ntJoin v1.1.4"
120+
@echo "ntJoin v1.1.5"
121121
@echo "Usage: ntJoin assemble target=<target scaffolds> references='List of reference assemblies' reference_weights='List of weights per reference assembly'"
122122
@echo ""
123123
@echo "Options:"
@@ -186,7 +186,7 @@ ifeq ($(ref), None)
186186
endif
187187

188188
version:
189-
@echo "ntJoin v1.1.4"
189+
@echo "ntJoin v1.1.5"
190190
@echo "Written by Lauren Coombe ([email protected])"
191191

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

0 commit comments

Comments
 (0)