Skip to content
Commits on Source (4)
# NCBI External Developer Release:
## SRA Toolkit 2.9.2
**July 23, 2018**
**kfg, vfs**: Introduced enhanced handling of download-only NGC files that lack read/decrypt permissions
## SRA Toolkit 2.9.1-2
**July 17, 2018**
**bam-load**: fixed a bug preventing early termination on error
## SRA Toolkit 2.9.1-1
**June 26, 2018**
......
......@@ -23,4 +23,4 @@
# ===========================================================================
# SRA-TOOLS and library version
VERSION = 2.9.1
VERSION = 2.9.2
sra-sdk (2.9.2+dfsg-1) UNRELEASED; urgency=medium
* New upstream version
* Standards-Version: 4.2.1
-- Andreas Tille <tille@debian.org> Mon, 10 Sep 2018 08:24:17 +0200
sra-sdk (2.9.1-1+dfsg-2) unstable; urgency=medium
* Team upload.
......
......@@ -13,7 +13,7 @@ Build-Depends: debhelper (>= 11~),
libmagic-dev,
libxml2-dev,
python
Standards-Version: 4.1.4
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/med-team/sra-sdk
Vcs-Git: https://salsa.debian.org/med-team/sra-sdk.git
Homepage: https://github.com/ncbi/sra-tools/
......
#define TOOLKIT_VERS 0x02090001
#define TOOLKIT_VERS 0x02090002
......@@ -2622,6 +2622,8 @@ WRITE_ALIGNMENT:
break;
if (rc == 0)
*had_sequences = true;
else
break;
}
if (bamread_thread != NULL && bamq != NULL) {
KQueueSeal(bamq);
......