gatk-3.8/java/src/org/broadinstitute/sting/utils
hanna 298cc24524 Fix minor bug introduced in filtration, and cleaned up the artificial sam records so that they use SAMRecord.NO_ALIGNMENT_REFERENCE_INDEX and SAMRecord.NO_ALIGNMENT_START rather than hardcoded -1's.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1296 348d0f76-0448-11de-a6fe-93d51630548a
2009-07-22 22:37:41 +00:00
..
cmdLine Better formatting of available walkers, and only output them along with help. Cleanup JVMUtils. 2009-07-21 22:23:28 +00:00
containers A priority-queue-like container that allows you to add a specified number of elements. When the limit has been reached, new additions replace the lower scoring elements. 2009-06-24 15:39:47 +00:00
duplicates Cleanup emergency fixes for out-of-bounds issues in reference retrieval. Fix spelling mistakes. 2009-07-06 15:41:30 +00:00
fasta Better handling of fasta files with non-standard extensions.x 2009-07-09 18:18:48 +00:00
genotype GLF rod as a AllelicVariant object. 2009-07-21 00:55:52 +00:00
io Package level documentation -- helps new users get acclimated to the codebase more quickly. 2009-06-17 16:27:48 +00:00
sam Fix minor bug introduced in filtration, and cleaned up the artificial sam records so that they use SAMRecord.NO_ALIGNMENT_REFERENCE_INDEX and SAMRecord.NO_ALIGNMENT_START rather than hardcoded -1's. 2009-07-22 22:37:41 +00:00
threading Package level documentation -- helps new users get acclimated to the codebase more quickly. 2009-06-17 16:27:48 +00:00
windowmaker template for windowmaker utility -- total non-functional 2009-05-07 18:13:03 +00:00
BaseUtils.java AlleleBalance and on/off primary base filters -- version 0.0.1 -- for experimental use only 2009-07-22 17:54:44 +00:00
BasicPileup.java AlleleBalance and on/off primary base filters -- version 0.0.1 -- for experimental use only 2009-07-22 17:54:44 +00:00
ComparableSAMRecord.java only compare pair position for paired end reads 2009-07-08 04:07:08 +00:00
ExpandingArrayList.java Updated version of the recalibration tool 2009-06-19 17:45:47 +00:00
FileProgressTracker.java moved a bunch of files over to the logging system. In some cases I ballparked the severity level of an error, so if you see something wrong feel free to make changes. 2009-03-27 14:02:55 +00:00
GenomeLoc.java Fixed genome loc to be immutable, the only way to now change it's values is through the GenomeLocParser. 2009-06-30 19:17:24 +00:00
GenomeLocParser.java performance improvement to GenomeLocParser -- moved regex pattern compile out of local field 2009-07-17 02:56:25 +00:00
GenomeLocSortedSet.java added a big speed-up for interval list input processing. With large interval sets this was taking way too long... 2009-07-13 22:00:00 +00:00
GenotypeUtils.java minor changes 2009-05-26 21:03:06 +00:00
JVMUtils.java Better formatting of available walkers, and only output them along with help. Cleanup JVMUtils. 2009-07-21 22:23:28 +00:00
ListUtils.java Added unit tests for function in ListUtils to randomly sample lists with replacement, updated AlleleFrequencyEstimate to provide a callType of HomRef, HetSNP, HomSNP, update indices in CoverageEval.py, and made a lot of changes to CoverageWalker biggest one being that it directly calls SingleSampleGenotyper instead of implementing some parts of SSG itself. 2009-07-08 02:05:40 +00:00
LogisticRegressor.java Several changes to CovariateCounter walker to print more tables (called vs. observed Q scores), bug fixes to LogisticRecalibrationWalker and LogisticRegressor, and print string functionality added to Pair. 2009-04-28 00:37:48 +00:00
MalformedGenomeLocException.java A fix for the 'rod blows up when it hits a GenomeLoc outside the reference' issu 2009-06-02 18:14:46 +00:00
MathUtils.java major restructuring of generalized variant analysis framework. Now trivally easy to add additional analyses. Easy partitioning of all analyses by features, such as singleton status. Now has transition/transversional bias, counting, dbSNP coverage, HWE violation, selecting of variants by presence/absense in dbs. Also restructured the ROD system to make it easier to add tracks. Also, added the interval track -- if you provide an interval list, then the system autoatmically makese this available to you as a bound rod -- you can always find out where you are in the interval at every site. Python scripts improved to handle more merging, etc, into population snps. 2009-06-05 23:34:37 +00:00
PackageUtils.java Switched to Reflections (http://code.google.com/p/reflections/) project for 2009-07-21 18:32:22 +00:00
Pair.java The building blocks for segmenting covariate counting data by read group. 2009-06-04 19:55:24 +00:00
PathUtils.java Added a method to refresh an NFS mount point (necessary to prevent NFS flakiness when running on the LSF farm. 2009-05-21 19:31:54 +00:00
Pileup.java General purpose pileup code -- you can use these features to obtain detailed pileup data from reads and offsets. Useful for all pileup based walkers. Expanded support for rodSAMPileup to enable the new ValidatingPileupWalker, which takes a samtools pileup output and checks that GATK gives identical output as samtools on a per base and per qual pileup. It's going to be a very useful validation tool. 2009-04-14 22:13:10 +00:00
Predicate.java Push core / playground lower into the tree. 2009-03-23 23:19:54 +00:00
PrimitivePair.java Push core / playground lower into the tree. 2009-03-23 23:19:54 +00:00
QualityUtils.java Version 0.2.1 (released) of the TableRecalibrator 2009-06-25 22:50:55 +00:00
ReadBackedPileup.java Behold MultiSampleCaller! 2009-06-16 20:03:24 +00:00
RefHanger.java Fixed genome loc to be immutable, the only way to now change it's values is through the GenomeLocParser. 2009-06-30 19:17:24 +00:00
StingException.java Changed Sting exception from a base exception to a runtime exception. This makes it so you can throw it without the consumer having to check it, and hopefully people will be more inclined to use it. 2009-04-29 22:09:41 +00:00
Utils.java Fix for GSA-90: System isn't failing with an error when you use the wrong reference. 2009-07-13 20:42:12 +00:00
package.html Package level documentation -- helps new users get acclimated to the codebase more quickly. 2009-06-17 16:27:48 +00:00
xReadLines.java Documentation and cleanup of xReadLines. 2009-03-25 15:36:21 +00:00