Skip to content

Commit 3f25f2a

Browse files
authored
v1.2.3 release (#55)
* Tigmint v1.2.3 * Preparing for v1.2.3 release * azure-pipelines.yml: Update environment * Expected outputs: update molecule BED file (ubuntu-latest sort)
1 parent b321673 commit 3f25f2a

9 files changed

+11
-13
lines changed

azure-pipelines.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
jobs:
44
- job:
5-
displayName: ubuntu-16.04
5+
displayName: ubuntu-latest
66
pool:
7-
vmImage: 'ubuntu-16.04'
7+
vmImage: 'ubuntu-latest'
88

99
steps:
1010
- script: echo "##vso[task.prependpath]$CONDA/bin"
@@ -16,9 +16,7 @@ jobs:
1616
curl https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
1717
sudo apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-11 main"
1818
sudo apt-get update
19-
sudo apt-get install -y --no-install-recommends clang-format-11 clang-tidy-11
20-
sudo ln -sf clang-format-11 /usr/bin/clang-format
21-
sudo ln -sf clang-tidy-11 /usr/bin/clang-tidy
19+
sudo apt-get install -y --no-install-recommends clang-format clang-tidy
2220
displayName: Install clang-format and clang-tidy
2321
- script: make -C src all
2422
displayName: Compile C++ executables

bin/tigmint-cut

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

243243
def main():
244244
parser = argparse.ArgumentParser(description="Find misassembled regions in assembly using Chromium molecule extents")
245-
parser.add_argument("--version", action="version", version="tigmint-cut 1.2.2")
245+
parser.add_argument("--version", action="version", version="tigmint-cut 1.2.3")
246246
parser.add_argument("fasta", type=str, help="Reference genome fasta file (must have FAI index generated)")
247247
parser.add_argument("bed", type=str, help="Sorted bed file of molecule extents")
248248
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
@@ -123,7 +123,7 @@ help:
123123
@echo 'For more information see https://bcgsc.github.io/tigmint/'
124124

125125
version:
126-
@echo "Tigmint 1.2.2"
126+
@echo "Tigmint 1.2.3"
127127
@echo "Written by Shaun Jackman @sjackman."
128128

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

2727
static void

tests/test_installation/expected_outputs/test_contig_long.test_longreads.cut500.molecule.size2000.bed

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ test_misassembly 2447 6369 18 8
2424
test_misassembly 2447 6499 41 9
2525
test_misassembly 2447 6542 100 9
2626
test_misassembly 2447 6551 101 9
27-
test_misassembly 2447 6551 72 9
2827
test_misassembly 2447 6551 7 9
28+
test_misassembly 2447 6551 72 9
2929
test_misassembly 2451 6527 87 9
3030
test_misassembly 2455 5626 14 7
3131
test_misassembly 2455 6523 73 9

0 commit comments

Comments
 (0)