]> git.donarmstrong.com Git - samtools.git/blobdiff - NEWS
added quality filtering
[samtools.git] / NEWS
diff --git a/NEWS b/NEWS
index 296504621b3efe763cf413403e8917317b98c80a..946ba7b4e98d584081b846105bde5f438f6e3ba1 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,30 @@
-Beta release 0.1.13 (28 February, 2011)
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Beta release 0.1.14 (16 March, 2011)
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+This release implements a method for testing associations for case-control
+data. The method does not call genotypes but instead sums over all genotype
+configurations to compute a chi^2 based test statistics. It can be potentially
+applied to comparing a pair of samples (e.g. a tumor-normal pair), but this
+has not been evaluated on real data.
+
+Another new feature is to make X chromosome variant calls when female and male
+samples are both present. The user needs to provide a file indicating the
+ploidy of each sample.
+
+Other new features:
+
+ * Added `samtools mpileup -L' to skip INDEL calling in regions with
+   excessively high coverage. Such regions dramatically slow down mpileup.
+
+ * Added `bcftools view -F' to parse BCF files generated by samtools r921 or
+   older which encode PL in a different way.
+
+(0.1.14: 16 March 2011, r930:163)
+
+
+
+Beta release 0.1.13 (1 March, 2011)
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 The most important though largely invisible modification is the change of the
 order of genotypes in the PL VCF/BCF tag. This is to conform the upcoming VCF
@@ -11,16 +36,14 @@ version number.
 Single Individual Haplotyping (SIH) is added as an experimental feature. It
 originally aims to produce haploid consensus from fosmid pool sequencing, but
 also works with short-read data. For short reads, phased blocks are usually too
-short to be useful in most applications, but phasing can be powerful for ruling
-out some SNPs close to INDELs and some of clustered spurious SNPs between copies
-of CNVs. On one data set, phasing based SNP calling is better in terms of both
-sensitivity and specificity than the standard methods.
+short to be useful in many applications, but they can help to rule out part of
+SNPs close to INDELs or between copies of CNVs.
 
 
 Other notable changes in samtools:
 
- * Construct per-sample consensus to reduced the effect of nearby SNPs in INDEL
-   calling. This may reduce the power, but improves specificity.
+ * Construct per-sample consensus to reduce the effect of nearby SNPs in INDEL
+   calling. This reduces the power but improves specificity.
 
  * Improved sorting order checking in indexing. Now indexing is the preferred way
    to check if a BAM is sorted.
@@ -31,7 +54,7 @@ Other notable changes in samtools:
 
  * Added `mpileup -A' to allow to use reads in anomalous pairs in SNP calling.
 
- * Added `mpileup -m' to allow fine control of INDEL candidates.
+ * Added `mpileup -m' to allow fine control of the collection of INDEL candidates.
 
  * Added `mpileup -S' to compute per-sample strand bias P-value.
 
@@ -40,7 +63,7 @@ Other notable changes in samtools:
  * Fixed segfault in indel calling related to unmapped and refskip reads.
 
  * Fixed an integer overflow in INDEL calling. This bug produces wrong INDEL
-   genotypes for longer INDELs, typically over 10bp.
+   genotypes for longer short INDELs, typically over 10bp.
 
  * Fixed a bug in tview on big-endian machines.
 
@@ -50,6 +73,7 @@ Other notable changes in samtools:
 
  * Fixed a compiling error when the knetfile library is not used. Fixed a
    library compiling error due to the lack of bam_nt16_nt4_table[] table.
+   Suppress a compiling warning related to the latest zlib.
 
 
 Other notable changes in bcftools:
@@ -57,7 +81,7 @@ Other notable changes in bcftools:
  * Updated the BCF spec.
 
  * Added the `FQ' VCF INFO field, which gives the phred-scaled probability
-   of all samples being the samei (identical to the reference or all homozygous
+   of all samples being the same (identical to the reference or all homozygous
    variants). Option `view -f' has been dropped.
 
  * Implementated of "vcfutils.pl vcf2fq" to generate a consensus sequence
@@ -76,7 +100,7 @@ Other notable changes in bcftools:
  * Fixed a minor bug in Fisher's exact test; the results are rarely changed.
 
 
-(0.1.13: 28 February 2011, r926+130)
+(0.1.13: 1 March 2011, r926:134)