Make the whining from Khalid's office stop already

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2079 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2009-11-19 03:04:48 +00:00
parent 85bc9d3e91
commit 7b957d3e2e
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class PrintReadsWalker extends ReadWalker<SAMRecord, SAMFileWriter> {
// check the read group
if ( readGroup != null ) {
SAMReadGroupRecord myReadGroup = read.getReadGroup();
if ( myReadGroup == null || !readGroup.equals(myReadGroup) )
if ( myReadGroup == null || !readGroup.equals(myReadGroup.getReadGroupId()) )
return false;
}