Skip to content

Commit

Permalink
Fix asan (#18)
Browse files Browse the repository at this point in the history
* Remove asan from building

* Update README.md

* Update __version__.py
  • Loading branch information
seryrzu authored Oct 13, 2021
1 parent 5c71918 commit c75f12e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ TEST_REFERENCE = $(SD_DIR)/test_data/final_decomposition_fc89af8.tsv

build:
mkdir -p $(BIN_DIR)
${CXX} -o $(BIN_DIR)/dp $(SRC_DIR)/main.cpp $(SRC_DIR)/edlib.cpp -fopenmp --std=c++11 -O2 -Wall -Wextra -pedantic -Wshadow -Wfloat-equal -fsanitize=address
${CXX} -o $(BIN_DIR)/dp $(SRC_DIR)/main.cpp $(SRC_DIR)/edlib.cpp -fopenmp --std=c++11 -O2 -Wall -Wextra -pedantic -Wshadow -Wfloat-equal

test_launch: build
bin/stringdecomposer $(TEST_QUERY) $(TEST_MONOMERS) -o $(TEST_OUTDIR) --second-best
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# StringDecomposer

## Version 1.1.1
## Version 1.1.2

As an input StringDecomposer algorithm takes the set of monomers (typically, alpha satellites) and a genomic segment (assembly, Oxford Nanopore or a PacBio HiFi read) that contains a tandem repeat consisting of the given monomers.
StringDecomposer partitions this segment into distinct monomers, providing an accurate translation from the nucleotide alphabet into the monomer alphabet.
Expand Down Expand Up @@ -110,6 +110,10 @@ Optional arguments:

## Latest updates

### StringDecomposer 1.1.2 release (12 Oct 2021)

* Remove building with Address Sanitizer by default

### StringDecomposer 1.1.1 release (20 July 2021)

* git hash is disabled to enable execution outside of git repo
Expand Down
2 changes: 1 addition & 1 deletion stringdecomposer/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.1"
__version__ = "1.1.2"

0 comments on commit c75f12e

Please sign in to comment.