Difference between revisions of "C++ Library: general Change Log"

From Genome Analysis Wiki
Jump to navigationJump to search
Line 4: Line 4:
  
 
== Enhancements/Updates/Fixes ==
 
== Enhancements/Updates/Fixes ==
 +
=== 5/3/2010 ===
 +
* Updated BGZF Files to check for the empty BGZF block at the end when being opened.  The open fails if the block is not there unless the static method to not require it is called: BgzfFileType::setRequireEofBlock(false);
 +
  
 
=== 4/5/2010 ===
 
=== 4/5/2010 ===

Revision as of 17:48, 3 May 2010

libcsg Change Log

This page tracks the updates/enhancements that have been updated in the git repository. It is primarily used to track the user interface changes, so users can see what bugs have been fixed, or what new features have been added.


Enhancements/Updates/Fixes

5/3/2010

  • Updated BGZF Files to check for the empty BGZF block at the end when being opened. The open fails if the block is not there unless the static method to not require it is called: BgzfFileType::setRequireEofBlock(false);


4/5/2010

  • Modified IFILE class methods ifread & readFromFile to return an int rather than unsigned int. This aligns with the return values of gzread & fread.
  • Modified the FileType classes method read to return int rather than unsigned int. This aligns with the return values of gzread & fread.
  • Modified the String::ReadLine to return an int status rather than a String& to the class. A return value <= to 0 is an error. A positive return value is success.
  • Modified FastQFile.cpp, lanecheck.cpp, StringHash.cpp to reflect the updated ReadLine return value.


Known Issues