Skip to content

Commit 5c31a9a

Browse files
authored
Prepare for release v1.1.2 (#99)
* Prepare for release v1.1.2 * Remove btllib constraint
1 parent 40c697e commit 5c31a9a

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
tests/*dot
2+
tests/*path
3+
tests/*agp
4+
tests/*fai
5+
tests/*assigned*fa
6+
tests/*all*fa
7+
tests/*tsv
8+
tests/*bed
9+
tests/*time
10+
*tar.gz

README.md

Lines changed: 3 additions & 3 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.1
128+
conda install -c bioconda -c conda-forge ntjoin=1.1.2
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.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
139+
curl -L --output ntJoin-1.1.2.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.2/ntJoin-1.1.2.tar.gz && tar xvzf ntJoin-1.1.2.tar.gz
140140
```
141141

142142
## Dependencies
@@ -145,7 +145,7 @@ curl -L --output ntJoin-1.1.1.tar.gz https://github.com/bcgsc/ntJoin/releases/do
145145
* [bedtools v2.29.2+](https://bedtools.readthedocs.io/en/latest/)
146146
* [samtools](https://github.com/samtools/samtools)
147147
* [zlib](https://www.zlib.net/)
148-
* [btllib](https://github.com/bcgsc/btllib) v1.4.10 or lower
148+
* [btllib](https://github.com/bcgsc/btllib)
149149

150150
Python dependencies can be installed with:
151151
```sh

bin/ntjoin_assemble.py

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

10291029
def main(self):
10301030
"Run ntJoin graph stage"
1031-
print("Running ntJoin v1.1.1 ...\n")
1031+
print("Running ntJoin v1.1.2 ...\n")
10321032
self.print_parameters()
10331033

10341034
# 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.1
5+
# ntJoin v1.1.2
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.1"
119+
@echo "ntJoin v1.1.2"
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.1"
187+
@echo "ntJoin v1.1.2"
188188
@echo "Written by Lauren Coombe ([email protected])"
189189

190190
check_install:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
python-igraph
22
pybedtools
33
pymannkendall
4-
btllib <=1.4.10
4+
btllib

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

0 commit comments

Comments
 (0)