gatk3的最后一个经典版本3.8
 
 
 
 
Go to file
John Wallace 8fc631b7ae Fix for mis-sorted VCF files in CatVariants
When using CatVariants, VCF files were being sorted solely on the base
pair position of the first record, ignoring the chromosome.  This can
become problematic when merging files from different chromosomes,
espeically if you have multiple VCFs per chromosome.

As an example, assume the following 3 lines are all in separate files:
1       10
1       100
2       20

The merged VCF from CatVariants (without -assumeSorted) would read:
1       10
2       20
1       100

This has the potential to break tools that expect chromosomes to be
contiguous within a VCF file.

This commit changes the comparator from one of Pair<Integer, File> to
one of Pair<VariantContext, File>.  We construct a
VariantContextComparator from the provided reference, which will sort
the first record by chromosome and position properly.  Additionally, if
-assumeSorted is given, we simply use a null VariantContext as the first
record, which will all be equal (as all will be null)
2015-07-14 14:12:31 -04:00
licensing Updated license information 2014-10-14 17:10:12 -04:00
protected Merge pull request #1029 from broadinstitute/rhl_vqslod_definition 2015-07-06 19:52:15 -04:00
public Fix for mis-sorted VCF files in CatVariants 2015-07-14 14:12:31 -04:00
settings/helpTemplates Numerous doc fixes; mostly formatting and clarifications 2015-05-03 00:28:46 +02:00
.gitignore Fixed bug using GraphBased due to infinite likelihoods resulting from the calculation of alignment cost of very long insertion or deletions (done in linear scale) 2014-04-01 16:14:52 -04:00
README.md Update README file for the 2.6 release 2013-06-20 13:08:29 -04:00
ant-bridge.sh Added faster built executable, non-packaged jars. 2014-11-05 00:30:46 +08:00
intellij_example.tar.bz2 Removed the intellij files from the root and made an example package for new users. This allows users to start at the same page and then change it as they see fit without interfering with the repo (thanks guillermo!) 2012-09-27 11:04:56 -04:00
pom.xml Update pom versions to mark the start of GATK 3.5 development 2015-05-15 00:44:54 -04:00

README.md

The Genome Analysis Toolkit

See http://www.broadinstitute.org/gatk/