-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix nonstandard RG tag leading to segfault [CW-5364] See merge request epi2melabs/fastcat!79
- Loading branch information
Showing
6 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,20 +113,22 @@ mem_check_fastcat_demultiplex: fastcat | |
$(VALGRIND) --error-exitcode=1 --tool=memcheck --leak-check=full --show-leak-kinds=all -s \ | ||
./fastcat test/data/*.fastq.gz --demultiplex demultiplex > /dev/null | ||
|
||
.PHONY: mem_check_fastcat_demultiplex | ||
mem_check_fastcat_demultiplex: fastcat | ||
rm -rf demultiplex | ||
$(VALGRIND) --error-exitcode=1 --tool=memcheck --leak-check=full --show-leak-kinds=all -s \ | ||
./fastcat test/data/*.fastq.gz --demultiplex demultiplex > /dev/null | ||
|
||
.PHONY: mem_check_bamstats | ||
mem_check_bamstats: bamstats | ||
@echo "Memcheck bamstats with good data" | ||
rm -rf bamstats-histograms | ||
$(VALGRIND) --error-exitcode=1 --tool=memcheck --leak-check=full --show-leak-kinds=all -s \ | ||
./bamstats test/parse_rg/[email protected] > /dev/null | ||
@echo "Memcheck bamstats with bad data" | ||
@echo "" | ||
rm -rf bamstats-histograms | ||
$(VALGRIND) --error-exitcode=1 --tool=memcheck --leak-check=full --show-leak-kinds=all -s \ | ||
./bamstats test/bamstats/400ecoli-with-qcfail.bam | ||
./bamstats test/parse_rg/bad-ones.bam > /dev/null | ||
@echo "" | ||
@echo "Memcheck bamstats with qcfails" | ||
rm -rf bamstats-histograms | ||
$(VALGRIND) --error-exitcode=1 --tool=memcheck --leak-check=full --show-leak-kinds=all -s \ | ||
./bamstats test/parse_rg/[email protected].bam | ||
./bamstats test/bamstats/400ecoli-with-qcfail.bam > /dev/null | ||
|
||
.PHONY: mem_check_bamstats_duplex | ||
mem_check_bamstats_duplex: bamstats | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.