Skip to content
Snippets Groups Projects
  1. Jan 05, 2010
  2. Jan 04, 2010
  3. Jan 03, 2010
  4. Jan 01, 2010
  5. Dec 30, 2009
    • Aaron's avatar
      Updated coverageBed and bedFile.cpp · d9fcb67c
      Aaron authored
      	1. Revised usage to 80 chars
      	2. GPL headers
      	3. Added new stdin logic
      	4. Changes logo.
      	5. Updated bedFile.cpp's loadBedIntoMapBin to support stdin.
      d9fcb67c
  6. Dec 29, 2009
    • Aaron's avatar
      Updated mergeBed and bedFile.cpp · ee63ec3b
      Aaron authored
      	1. Revised usage to 80 chars
      	2. GPL headers
      	3. Added new stdin logic
      	4. Changes logo.
      	5. Updated bedFile.cpp's loadBedIntoMapNoBin.  Bug in stdin logic.
      ee63ec3b
  7. Dec 20, 2009
    • Aaron's avatar
      GFF support seems to work. Improved bedFile.cpp. · c0d4e8a4
      Aaron authored
      	1. Got parseGffLine working
      	2. Added GFF support to the reportBed* methods.
      	3. Cleaned up the stdin / parsing logic and centralized it within bedFile.cpp.
      	This removes some of the complexity from each of the tools and tidies the codebase
      	overall.
      c0d4e8a4
  8. Dec 19, 2009
  9. Nov 18, 2009
  10. Nov 16, 2009
  11. Nov 14, 2009
  12. Nov 13, 2009
  13. Sep 18, 2009
    • Aaron's avatar
      Version 2.2.0 · 952c45ad
      Aaron authored
      === Notable changes in this release ===
      1.  coverageBed will optionally only count features in BED file A (e.g. sequencing reads) that overlap with
      	the intervals/windows in BED file B.  This has been requested several times recently and facilitates CHiP-Seq and
      	RNA-Seq experiments.
      
      2.  intersectBed can now require a minimum __reciprocal__ overlap between intervals in BED A and BED B.  For example,
      	previously, if one used -f 0.90, it required that a feature in B overlap 90% of the feature in A for the "hit"
      	to be reported.  If one adds the -r (reciprocal) option, the hit must also cover 90% of the feature in B.  This helps
      	to exclude overlaps between say small features in A and large features in B:
      
      	A ==========
      	B  **********************************************************
      
      	-f 0.50 (Reported), whereas -f 0.50 -r (Not reported)
      
      3.  The score field has been changed to be a string.  While this deviates from the UCSC definition, it allows one to track
      	much more meaningful information about a feature/interval.  For example, score could now be:
      
      	7.31E-05  (a p-value)
      	0.334577  (mean enrichment)
      	2:2.2:40:2 (several values encoded in a string)
      
      4.  closestBed now, by default, reports __all__ intervals in B that overlap equally with an interval in A.  Previously, it
      	merely reported the first such feature that appeared in B.  Here's a cartoon explaining the difference.
      
      	**Prior behavior**
      
      	A	 ==============
      	B.1        				++++++++++++++
      	B.2       				++++++++++++++
      	B.3               				+++++++++
      
      	-----------------------------------------
      	Result = B.1 			++++++++++++++
      
      	**Current behavior**
      
      	A	 ==============
      	B.1        				++++++++++++++
      	B.2       				++++++++++++++
      	B.3               				+++++++++
      
      	-----------------------------------------
      	Result = B.1 			++++++++++++++
      			 B.2 			++++++++++++++
      
      	Using the -t option, one can also choose to report either the first or the last entry in B in the event of a tie.
      
      5.  Several other minor changes to the algorithms have been made to increase speed a bit.
      952c45ad
  14. Sep 17, 2009
    • Aaron's avatar
      VERSION 2.1.2 · 572c76e0
      Aaron authored
      1. Fixed yet another bug in the parsing of "track" or "browser" lines.  Sigh...
      2. Change the "score" column (i.e. column 5) to b stored as a string.  While this deviates
         from the UCSC convention, it allows significantly more information to be packed into the column.
      572c76e0
  15. Sep 15, 2009
  16. Sep 14, 2009
  17. Jul 22, 2009
    • Aaron's avatar
      Version 2.1.1 · 235f6e7a
      Aaron authored
      	1. Added limits.h to bedFile.h to prevent compilation errors on some systems.
      	2. Fixed the bedFile.cpp parsing logic to allow proper parsing of track and browser lines
      235f6e7a
  18. Jun 15, 2009
    • Aaron's avatar
      VERSION 2.1.0 · 23c77070
      Aaron authored
      	1. Fixed a bug in peIntersectBed that prevented -a from being correctly handled when passed via stdin.
      	2. Added new functionality to coverageBed that calculates the density of coverage.
      	3. Fixed bug in genomeCoverageBed.
      23c77070
  19. May 19, 2009
  20. May 11, 2009
  21. May 05, 2009
    • Aaron Quinlan's avatar
      Strandedness. reportBed in bedFile. peIntersect · ac52b452
      Aaron Quinlan authored
      	1. Added strandedness to relevant programs (e.g. intersectBed, mergeBed, etc.)
      	2. Moved reportBed and reportBedRange to bedFile.cpp to clean up code
      	3. Sped up file parsing.  Added lineFileUtilities.cpp
      	4. Added peIntersectBed
      ac52b452
  22. Apr 26, 2009
  23. Apr 24, 2009
    • Aaron Quinlan's avatar
      First public source release. Version 1.1 · ff4edaf0
      Aaron Quinlan authored
      	1.  Added a README for installation
      	2.  Modified intersectBed and windowBed to call one function for
      	    finding overlaps.  This function is now called when reading
      	    from cin or from a file.
      	3.  Added acknowledgements.
      	4.  Corrected the PROGRAM_NAME in coverageBed
      ff4edaf0
  24. Apr 21, 2009
  25. Apr 15, 2009
  26. Apr 09, 2009
Loading