Commit b31915d1 authored by Steffen Möller's avatar Steffen Möller
Browse files

New upstream version 0.15.0.1+ds

parent 6136085e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ addons:
    - g++

script:
  - ./run_tests_travis.sh
  - ./devtools/run_tests_travis.sh

notifications:
  email:
+11 −0
Original line number Diff line number Diff line
@@ -5,6 +5,17 @@ http://pysam.readthedocs.io/en/latest/release.html
Release notes
=============

Release 0.15.0
==============

This release wraps htslib/samtools/bcftools version 1.9.0.

* [#673] permit dash in chromosome name of region string
* [#656] Support `text` when opening a SAM file for writing
* [#658] return None in get_forward_sequence if sequence not in record
* [#683] allow lower case bases in MD tags
* Ensure that = and X CIGAR ops are treated the same as M

Release 0.14.1
==============

+3 −2
Original line number Diff line number Diff line
@@ -15,7 +15,8 @@ includes an interface for tabix_.
If you are using the conda packaging manager (e.g. miniconda or anaconda),
you can install pysam from the `bioconda channel <https://bioconda.github.io/>`_::

   conda config --add channels r
   conda config --add channels defaults
   conda config --add channels conda-forge
   conda config --add channels bioconda
   conda install pysam

@@ -29,7 +30,7 @@ Pysam is available through `pypi

   pip install pysam

Pysam documentation is available through https://readthedocs.org/ from
Pysam documentation is available
`here <http://pysam.readthedocs.org/en/latest/>`_

Questions and comments are very welcome and should be sent to the

bcftools/LICENSE

0 → 100644
+725 −0

File added.

Preview size limit exceeded, changes collapsed.

bcftools/README

0 → 100644
+5 −0
Original line number Diff line number Diff line
BCFtools implements utilities for variant calling (in conjunction with
SAMtools) and manipulating VCF and BCF files.  The program is intended
to replace the Perl-based tools from vcftools.

See INSTALL for building and installation instructions.
Loading