The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2015-12-16 | 6.0 kB | |
samtools-1.3.tar.bz2 | 2015-12-15 | 4.0 MB | |
htslib-1.3.tar.bz2 | 2015-12-15 | 952.9 kB | |
bcftools-1.3.tar.bz2 | 2015-12-15 | 1.6 MB | |
Totals: 4 Items | 6.6 MB | 2 |
Noteworthy changes in Samtools:
- The obsolete
samtools sort in.bam out.prefix
usage has been removed. If you are still using‑f
,‑o
, orout.prefix
, convert to use-T PREFIX
and/or-o FILE
instead. (#295, #349, #356, #418, PR #441; see also discussions in #171, #213.) - The
bamshuf
command has been renamed tocollate
(hence the term bamshuf no longer appears in the documentation, though it still works on the command line for compatibility with existing scripts). - The
mpileup
command now outputs the unseen allele in VCF/BCF as<*>
rather thanX
or<X>
as previously, and now has AD, ADF, ADR, INFO/AD, INFO/ADF, INFO/ADR--output-tags
annotations that largely supersede the existing DV, DP4, DPR annotations. - The
mpileup
command now applies BAQ calculations at all base positions, regardless of which-l
or-r
options are used (previously with-l
it was not applied to the first few tens of bases of each chromosome, leading to different mpileup results with-l
vs.-r
; #79, #125, #286, #407). - Samtools now has a configure script which checks your build environment and facilitates choosing which HTSlib to build against. See INSTALL for details.
- Samtools's Makefile now fully supports the standard convention of allowing CC/CPPFLAGS/CFLAGS/LDFLAGS/LIBS to be overridden as needed. Previously it listened to
$(LDLIBS)
instead; if you were overriding that, you should now override LIBS rather than LDLIBS. - A new
addreplacerg
command that adds or alters@RG
headers andRG:Z
record tags has been added. - The
rmdup
command no longer immediately aborts (previously it always aborted with bam_get_library() not yet implemented), but remains not recommended for most use (#159, #252, #291, #393). - Merging files with millions of headers now completes in a reasonable amount of time (#337, #373, #419, #453; thanks to Nathan Weeks, Chris Smowton, Martin Pollard, Rob Davies).
- Samtools
index
's optional index output path argument works again (#199). - Fixed
calmd
,targetcut
, and potentialmpileup
segfaults when given broken alignments with POS far beyond the end of their reference sequences. - If you have source code using bam_md.c's
bam_fillmd1_core()
,bam_cap_mapQ()
, orbam_prob_realn_core()
functions, note that these now take an additionalref_len
parameter. (The versions named without_core
are unchanged.) - The
tview
command's colour scheme has been altered to be more suitable for users with colour blindness (#457). - Samtools
depad
command now handles CIGAR N operators and accepts CRAM files (#201, #404). - Samtools
stats
now outputs separate "N" and "other" columns in the ACGT content per cycle section (#376). - Added
-a
option tosamtools depth
to show all locations, including zero depth sites (#374). - New
samtools dict
command, which creates a sequence dictionary (as used by Picard) from a FASTA reference file. - Samtools
stats
--target-regions
option works again. - Added legacy API sam.h functions
sam_index_load()
andsamfetch()
providingbam_fetch()
-style iteration over either BAM or CRAM files. (In general we recommend recoding against the htslib API directly, but this addition may help existing libbam-using programs to be CRAM-enabled easily.) - Fixed legacy API's
samopen()
to write headers only with"wh"
when writing SAM files. Plain"w"
suppresses headers for SAM file output, but this was broken in 1.2. samtools fixmate - -
works in pipelines again; with 1.0 to 1.2, this failed with [bam_mating] cannot determine output format.- Restored previous
samtools calmd -u
behaviour of writing compression level 0 BAM files. Samtools 1.0 to 1.2 incorrectly wrote raw non-BGZF BAM files, which cannot be read by most other tools. (Samtools commands other thancalmd
were unaffected by this bug.) - Restored
bam_nt16_nt4_table[]
to legacy API header bam.h. - Fixed bugs #269, #305, #320, #328, #346, #353, #365, #392, #410, #445, #462, #475, and #495.
Noteworthy changes in BCFtools:
bcftools call
has new options--ploidy
and--ploidy-file
to make handling sample ploidy easier. See man page for details.stats
:-i
/-e
short options changed to-I
/-E
to be consistent with the filtering-i
/-e
(--include
/--exclude
) options used in other tools.- general
--threads
option to control the number of output compression threads used when outputting compressed VCF or BCF. cnv
andpolysomy
: new commands for detecting CNVs, aneuploidy, and contamination from SNP genotyping data.- various new options, plugins, and bug fixes, including #84, #201, #204, #205, #208, #211, #222, #225, #242, #243, #249, #282, #285, #289, #302, #311, #318, #336, and #338.
Noteworthy changes in HTSlib:
- Files can now be accessed via HTTPS and Amazon S3 in addition to HTTP and FTP, when HTSlib is configured to use libcurl for network file access rather than the included basic knetfile networking.
- HTSlib can be built to use remote access hFILE backends (such as iRODS and libcurl) via a plugin mechanism. This allows other backends to be easily added and facilitates building tools that use HTSlib, as they don't need to be linked with the backends' various required libraries.
fai_build()
andsamtools faidx
now accept initial whitespace in ">" headers (e.g., "> chr1 description" is taken to refer to "chr1").tabix --only-header
works again (was broken in 1.2.x; #249).- HTSlib's configure script and Makefile now fully support the standard convention of allowing CC/CPPFLAGS/CFLAGS/LDFLAGS/LIBS to be overridden as needed. Previously the Makefile listened to
$(LDLIBS)
instead; if you were overriding that, you should now override LIBS rather than LDLIBS. - Fixed bugs #168, #172, #176, #197, #206, #225, #245, #265, #295, and #296.
(Numbers in the form #NNN
refer to corresponding issue numbers in the relevant GitHub repository.)