Up to [cvs.NetBSD.org] / pkgsrc / biology / samtools
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
biology/samtools: Update to 1.21 Numerous bug fixes and enhancements since 1.17 Changes: https://github.com/samtools/samtools/releases Reported by: portscout
biology/samtools: Update to 1.17 Numerous enhancements and bug fixes Changes: https://github.com/samtools/samtools/releases
samtools: updated to 1.16.1 1.16.1 Bug fixes: Fixed a bug with the template-coordinate sort which caused incorrect ordering when using threads, or processing large files that don't fit completely in memory. Fixed a crash that occurred when trying to use samtools merge in template-coordinate mode. 1.16 New work and changes: samtools reference command added. This subcommand extracts the embedded reference out of a CRAM file. samtools import now adds grouped by query-name to the header. Made samtools view read error messages more generic. Former error message would claim that there was a "truncated file or corrupt BAM index file" with no real justification. Also reset errno in stream_view which could lead to confusing error messages. Make samtools view -p also clear mqual, tlen and cigar. Add bedcov option -c to report read count. Add UMI/barcode handling to samtools markdup. Add a new template coordinate sort order to samtools sort and samtools merge. This is useful when working with unique molecular identifiers (UMIs). Rename mpileup --ignore-overlaps to --ignore-overlaps-removal or --disable-overlap-removal. The previous name was ambiguous and was often read as an option to enable removal of overlapping bases, while in reality this is on by default and the option turns off the ability to remove overlapping bases. The dict command can now read BWA's .alt file and add AH:* tags indicating reference sequences that represent alternate loci. The samtools index command can now accept multiple alignment filenames with the new -M option, and will index each of them separately. (Specifying the output index filename via out.index or the new -o option is currently only applicable when there is only one alignment file to be indexed.) Allow samtools fastq -T "*". This allows all tags from SAM records to be written to fastq headers. This is a counterpart to samtools import -T "*". Bug Fixes: Re-enable --reference option for samtools depth. The reference is not used but this makes the command line usage compatible with older releases. Fix regex coordinate bug in samtools markdup. Fix divide by zero in plot-bamstats -m, on unmapped data. Fix missing RG headers when using samtools merge -r. Fix a possible unaligned access in samtools reference. Documentation: Add documentation on CRAM compression profiles and some of the newer options that appear in CRAM 3.1 and above. Add sclen filter expression keyword documentation. Extend FILTER EXPRESSION man page section to match the changes made in HTSlib. Non user-visible changes and build improvements: Ensure generated test files are ignored (by git) and cleaned (by make testclean)
biology/samtools: Update to 1.15 Several minor enhancements and bug fixes Changes: https://github.com/samtools/samtools/tags
biology/samtools: Update to 1.14 Numerous fixes and enhancements since 1.12 Changes: https://github.com/samtools/samtools/tags
biology: Replace RMD160 checksums with BLAKE2s checksums All checksums have been double-checked against existing RMD160 and SHA512 hashes
biology: Remove SHA1 hashes for distfiles
biology/htslib: Update to 1.12 biology/bcftools: Update to 1.12 biology/samtools: Update to 1.12 Numerous enhancements, performance improvements, and bug fixes since 1.10 Minimized pkgsrc patches in all three packages Moved htslib to custom tarball since Github-generated distfiles are incomplete
biology/samtools: Upgrade to 1.10 Numerous performance and feature improvements and several bug fixes since 1.9
samtools: updated to 1.9 Release 1.9: * Samtools mpileup VCF and BCF output is now deprecated. It is still functional, but will warn. Please use bcftools mpileup instead. * Samtools mpileup now handles the '-d' max_depth option differently. There is no longer an enforced minimum, and '-d 0' is interpreted as limitless (no maximum - warning this may be slow). The default per-file depth is now 8000, which matches the value mpileup used to use when processing a single sample. To get the previous default behaviour use the higher of 8000 divided by the number of samples across all input files, or 250. * Samtools stats new features: - The '--remove-overlaps' option discounts overlapping portions of templates when computing coverage and mapped base counting. - When a target file is in use, the number of bases inside the target is printed and the percentage of target bases with coverage above a given threshold specified by the '--cov-threshold' option. - Split base composition and length statistics by first and last reads. * Samtools faidx new features: - Now takes long options. - Now warns about zero-length and truncated sequences due to the requested range being beyond the end of the sequence. - Gets a new option (--continue) that allows it to carry on when a requested sequence was not in the index. - It is now possible to supply the list of regions to output in a text file using the new '--region-file' option. - New '-i' option to make faidx return the reverse complement of the regions requested. - faidx now works on FASTQ (returning FASTA) and added a new fqidx command to index and return FASTQ. * Samtools collate now has a fast option '-f' that only operates on primary pairs, dropping secondary and supplementary. It tries to write pairs to the final output file as soon as both reads have been found. * Samtools bedcov gets a new '-j' option to make it ignore deletions (D) and reference skips (N) when computing coverage. * Small speed up to samtools coordinate sort, by converting it to use radix sort. * Samtools idxstats now works on SAM and CRAM files, however this isn't fast due to some information lacking from indices. * Compression levels may now be specified with the level=N output-fmt-option. E.g. with -O bam,level=3. * Various documentation improvements. * Bug-fixes: - Improved error reporting in several places. - Various test improvements. - Fixed failures in the multi-region iterator (view -M) when regions provided via BED files include overlaps - Samtools stats now counts '=' and 'X' CIGAR operators when counting mapped bases. - Samtools stats has fixes for insert size filtering (-m, -i). - Samtools stats -F now longer negates an earlier -d option. - Fix samtools stats crash when using a target region. - Samtools sort now keeps to a single thread when the -@ option is absent. Previously it would spawn a writer thread, which could cause the CPU usage to go slightly over 100%. - Fixed samtools phase '-A' option which was incorrectly defined to take a parameter. - Fixed compilation problems when using C_INCLUDE_PATH. - Fixed --version when built from a Git repository. - Use noenhanced mode for title in plot-bamstats. Prevents unwanted interpretation of characters like underscore in gnuplot version 5. - blast2sam.pl now reports perfect match hits (no indels or mismatches). - Fixed bug in fasta and fastq subcommands where stdout would not be flushed correctly if the -0 option was used. - Fixed invalid memory access in mpileup and depth on alignment records where the sequence is absent.
biology/samtools: import samtools-1.8 Samtools implements various utilities for post-processing alignments in the SAM, BAM, and CRAM formats, including indexing, variant calling (in conjunction with bcftools), and a simple alignment viewer. OK wiz@