Skip to content

Commit 028b0d7

Browse files
PuneetSSPuneet Sidhu
and
Puneet Sidhu
authored
Preparing for v1.2.5 release (#71)
Co-authored-by: Puneet Sidhu <[email protected]>
1 parent 8eb4f7f commit 028b0d7

7 files changed

+7
-7
lines changed

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.4")
261+
parser.add_argument("--version", action="version", version="tigmint-cut 1.2.5")
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-make

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

128128
version:
129-
@echo "Tigmint 1.2.4"
129+
@echo "Tigmint 1.2.5"
130130
@echo "Written by Shaun Jackman @sjackman."
131131

132132
all: tigmint arcs

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.4")
47+
version="tigmint_estimate_dist.py 1.2.5")
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.4')
246+
'--version', action='version', version='tigmint-molecule 1.2.5')
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.4')
105+
parser.add_argument('--version', action='version', version='tigmint_molecule_paf.py 1.2.5')
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.4",
8+
version="1.2.5",
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.4";
24+
const static std::string VERSION = "v1.2.5";
2525
const static size_t MAX_THREADS = 6;
2626

2727
static void

0 commit comments

Comments
 (0)