Skip to content

Commit 6252891

Browse files
authored
Prepare for release v1.1.4 (#105)
1 parent f0083f3 commit 6252891

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

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.3
128+
conda install -c bioconda -c conda-forge ntjoin=1.1.4
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.3.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.3/ntJoin-1.1.3.tar.gz && tar xvzf ntJoin-1.1.3.tar.gz
139+
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
140140
```
141141

142142
## 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.3')
38+
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.4')
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.3
5+
# ntJoin v1.1.4
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.3"
120+
@echo "ntJoin v1.1.4"
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.3"
189+
@echo "ntJoin v1.1.4"
190190
@echo "Written by Lauren Coombe (lcoombe@bcgsc.ca)"
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.3",
8+
version="1.1.4",
99
author="Lauren Coombe",
1010
author_email="lcoombe@bcgsc.ca",
1111
description="Genome assembly scaffolder using minimizer graphs",

0 commit comments

Comments
 (0)