Skip to content

Commit

Permalink
- Fixed biod#328
Browse files Browse the repository at this point in the history
- Updated to BioD latest and added RELEASE NOTES
  • Loading branch information
pjotrp committed Feb 7, 2018
1 parent bebb8f6 commit 1447403
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ large files. See also [performance](https://github.com/biod/sambamba/blob/master
+ Fixed Makefile for general use, see #332
+ Started benchmarking, see #283 and https://github.com/biod/sambamba/blob/master/test/benchmark/stats.org
+ Readded [Travis-ci support](https://travis-ci.org/biod/sambamba) for Linux (MacOS is disabled #338)
+ Updated BioD to latest https://github.com/biod/BioD/commit/5e56b2bb45324af2194b3339d298fd827c8003ae
+ Bug fixes:
* #328 Debug version: SAM output of CRAM file is populated with debug on pipe
* #331 Segmentation fault attempting to view header in json format
* #335 Intel Xeon bug may segfault Sambamba - this was tracked down to an Intel Xeon bug
+ Documentation updates
4 changes: 2 additions & 2 deletions cram/wrappers.d
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct RcPtr(T, alias Free) {
this(this)
{
static if (is(T == cram_slice)) {
debug writeln("COPIED #", data.payload_id + 1);
debug stderr.writeln("COPIED #", data.payload_id + 1);
}
}

Expand Down Expand Up @@ -159,7 +159,7 @@ struct CramContainerRange {
auto err_msg = "Failed to read container header";
while (true) {
// read container header
debug writeln("cram_read_container");
debug stderr.writeln("cram_read_container");
auto ptr = nullChecked!cram_read_container(err_msg, _fd);
if (ptr is null) {
empty = true;
Expand Down

0 comments on commit 1447403

Please sign in to comment.