Skip to content

Commit d76bf6e

Browse files
authored
Prepare for release v1.2.8 (#111)
1 parent fc77081 commit d76bf6e

10 files changed

+11
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ make -C src
5454
```
5555
or
5656
```
57-
curl -L https://github.com/bcgsc/tigmint/releases/download/v1.2.7/tigmint-1.2.7.tar.gz | tar xz && cd tigmint-1.2.7
57+
curl -L https://github.com/bcgsc/tigmint/releases/download/v1.2.8/tigmint-1.2.8.tar.gz | tar xz && cd tigmint-1.2.8
5858
make -C src
5959
```
6060

bin/tigmint-cut

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def get_span(filename):
258258

259259
def main():
260260
parser = argparse.ArgumentParser(description="Find misassembled regions in assembly using Chromium molecule extents")
261-
parser.add_argument("--version", action="version", version="tigmint-cut 1.2.7")
261+
parser.add_argument("--version", action="version", version="tigmint-cut 1.2.8")
262262
parser.add_argument("fasta", type=str, help="Reference genome fasta file (must have FAI index generated)")
263263
parser.add_argument("bed", type=str, help="Sorted bed file of molecule extents")
264264
parser.add_argument("-o", "--fastaout", type=str, help="The output FASTA file.", required=True)

bin/tigmint-filter-paf

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ def main() -> None:
2121
"output molecule extents BED")
2222
parser.add_argument("PAF", help="Input PAF file")
2323
parser.add_argument("-m", help="Minimum size of output extents (bp)", default=2000, type=int)
24+
parser.add_argument('--version', action='version', version='tigmint-filter-paf 1.2.8')
25+
2426
args = parser.parse_args()
2527

2628
args.PAF = "/dev/stdin" if args.PAF == "-" else args.PAF

bin/tigmint-make

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ help:
154154
@echo 'For more information see https://bcgsc.github.io/tigmint/'
155155

156156
version:
157-
@echo "Tigmint 1.2.7"
157+
@echo "Tigmint 1.2.8"
158158
@echo "Written by Shaun Jackman @sjackman."
159159

160160
all: tigmint arcs

bin/tigmint-ntlink-map

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def main():
4949
"if not in PATH", type=str)
5050
parser.add_argument("-m", help="Minimum size for mapping block (bp) [2000]", default=2000, type=int)
5151
parser.add_argument("--span", help="Span value specified for tigmint-cut", required=True)
52+
parser.add_argument('--version', action='version', version='tigmint-ntlink-map 1.2.8')
5253

5354
args = parser.parse_args()
5455

bin/tigmint_estimate_dist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def main():
4444
required=False)
4545
parser.add_argument("-v", "--version",
4646
action="version",
47-
version="tigmint_estimate_dist.py 1.2.7")
47+
version="tigmint_estimate_dist.py 1.2.8")
4848

4949
args = parser.parse_args()
5050

bin/tigmint_molecule.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def parse_arguments(self):
243243
"Read a SAM/BAM file and output a TSV file. "
244244
"The SAM/BAM file must be sorted by BX tag and then by position.")
245245
parser.add_argument(
246-
'--version', action='version', version='tigmint-molecule 1.2.7')
246+
'--version', action='version', version='tigmint-molecule 1.2.8')
247247
parser.add_argument(
248248
metavar="BAM", dest="in_bam_filename",
249249
help="Input BAM file sorted by BX tag then position, - for stdin")

bin/tigmint_molecule_paf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def parse_arguments(self):
102102
parser = argparse.ArgumentParser(
103103
description="Group linked reads simulated from long reads into molecules. "
104104
"Read a PAF file and output a BED file.")
105-
parser.add_argument('--version', action='version', version='tigmint_molecule_paf.py 1.2.7')
105+
parser.add_argument('--version', action='version', version='tigmint_molecule_paf.py 1.2.8')
106106
parser.add_argument(metavar="PAF", dest="PAF", help="Input PAF file, - for stdin")
107107
parser.add_argument("-o", "--output", dest="out_molecules_filename",
108108
help="Output molecule BED file [stdout]",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="tigmint",
8-
version="1.2.7",
8+
version="1.2.8",
99
author="Shaun Jackman",
1010
author_email="[email protected]",
1111
description="Correct misassemblies using linked or long reads",

src/long-to-linked-pe.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <vector>
2222

2323
const static std::string PROGNAME = "long-to-linked-pe";
24-
const static std::string VERSION = "v1.2.7";
24+
const static std::string VERSION = "v1.2.8";
2525
const static size_t MAX_THREADS = 6;
2626

2727
static void

0 commit comments

Comments
 (0)