Skip to content

Commit 6f535ce

Browse files
authored
Prepare for release v1.3.7 (#75)
* Prepare for release v1.3.7 * Bump version on couple more files
1 parent c1233c6 commit 6f535ce

10 files changed

Lines changed: 13 additions & 13 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ To only run the pairing stage of `ntLink` (the stage where the long reads are ma
112112

113113
Installing from source code:
114114
```
115-
curl -L --output ntLink-1.3.6.tar.gz https://github.com/bcgsc/ntLink/releases/download/v1.3.6/ntLink-1.3.6.tar.gz && tar xvzf ntLink-1.3.6.tar.gz
115+
curl -L --output ntLink-1.3.7.tar.gz https://github.com/bcgsc/ntLink/releases/download/v1.3.7/ntLink-1.3.7.tar.gz && tar xvzf ntLink-1.3.7.tar.gz
116116
```
117117

118118
#### Testing your installation

bin/ntlink_filter_sequences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def main():
5151
parser.add_argument("-f", help="Fudge factor for estimated overlap [0.5]", type=float, default=0.5)
5252
parser.add_argument("-g", help="Minimum gap size (bp) [20]", required=False, type=int, default=20)
5353
parser.add_argument("-t", help="Number of threads", default=8, type=int)
54-
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.6')
54+
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.7')
5555

5656
args = parser.parse_args()
5757

bin/ntlink_liftover_mappings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def main() -> None:
143143
parser.add_argument("-a", "--agp", help="Path to the AGP file", required=True)
144144
parser.add_argument("-o", "--output", help="Output file name", required=True)
145145
parser.add_argument("-k", "--kmer", help="Kmer size", required=True, type=int)
146-
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.6')
146+
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.7')
147147
args = parser.parse_args()
148148

149149
# Read in the AGP file

bin/ntlink_overlap_sequences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ def parse_arguments():
511511
parser.add_argument("-p", help="Output file prefix [ntlink_merge]", default="ntlink_merge", type=str)
512512
parser.add_argument("-v", help="Verbose output logging", action="store_true")
513513
parser.add_argument("--trim_info", help="Verbose log of trimming info", action="store_true")
514-
parser.add_argument("--version", action='version', version='ntLink v1.3.6')
514+
parser.add_argument("--version", action='version', version='ntLink v1.3.7')
515515

516516
return parser.parse_args()
517517

bin/ntlink_pair.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ def parse_arguments():
528528
parser.add_argument("--sensitive", help="Run more sensitive read mapping", action="store_true")
529529
parser.add_argument("--repeat-filter", help="Remove repetitive minimizers within a long read's sketch",
530530
action="store_true")
531-
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.6')
531+
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.7')
532532
parser.add_argument("--verbose", help="Verbose output logging", action='store_true')
533533

534534
return parser.parse_args()

bin/ntlink_patch_gaps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ def main() -> None:
779779
parser.add_argument("--sensitive", help="Run more sensitive read mapping", action="store_true")
780780
parser.add_argument("--verbose", help="Verbose logging - print out trimmed scaffolds without gaps",
781781
action="store_true")
782-
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.6')
782+
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.7')
783783
args = parser.parse_args()
784784

785785
print_parameters(args)

bin/ntlink_stitch_paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def parse_arguments():
469469
parser.add_argument("--transitive", help="Require transitive support for edges?", action="store_true")
470470
parser.add_argument("--conservative", help="Conservative mode - take optimal N50 paths, no stitching",
471471
action="store_true")
472-
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.6')
472+
parser.add_argument("-v", "--version", action='version', version='ntLink v1.3.7')
473473

474474
return parser.parse_args()
475475

ntLink

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ntLink: Scaffold assemblies using long reads and minimizers
44
# Written by Lauren Coombe @lcoombe
5-
# ntLink v1.3.6
5+
# ntLink v1.3.7
66

77
# Input files
88
target=None
@@ -110,7 +110,7 @@ endif
110110
help:
111111
@echo ""
112112
@echo "ntLink: Scaffolding assemblies using long reads"
113-
@echo "ntLink v1.3.6"
113+
@echo "ntLink v1.3.7"
114114
@echo "Usage: ntLink scaffold target=<target scaffolds> reads='List of long read files'"
115115
@echo ""
116116
@echo "To additionally run gap-filling (fill gap regions with raw read sequence):"
@@ -177,7 +177,7 @@ ifneq ($(shell command -v 'python3 -c "import btllib"'),)
177177
endif
178178

179179
version:
180-
@echo "ntLink v1.3.6"
180+
@echo "ntLink v1.3.7"
181181
@echo "Written by Lauren Coombe (lcoombe@bcgsc.ca)"
182182

183183

ntLink_rounds

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ntLink: Scaffold assemblies using long reads and minimizers - launching ntLink rounds
44
# Written by Lauren Coombe @lcoombe
5-
# ntLink v1.3.6
5+
# ntLink v1.3.7
66

77
# Window size
88
w=100
@@ -47,7 +47,7 @@ ntlink_path=$(shell dirname $(realpath $(MAKEFILE_LIST)))
4747
help:
4848
@echo ""
4949
@echo "ntLink: Scaffolding assemblies using long reads - running iterative rounds of ntLink"
50-
@echo "ntLink v1.3.6"
50+
@echo "ntLink v1.3.7"
5151
@echo "Running rounds of ntLink - no gap-filling"
5252
@echo "Usage: ntLink run_rounds target=<target scaffolds> reads='List of long read files' rounds=<Number>"
5353
@echo ""

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="ntLink",
8-
version="1.3.6",
8+
version="1.3.7",
99
author="Lauren Coombe",
1010
author_email="lcoombe@bcgsc.ca",
1111
description="Genome assembly scaffolder using long reads",

0 commit comments

Comments
 (0)