Skip to content

Commit

Permalink
set called even when aggro is false
Browse files Browse the repository at this point in the history
  • Loading branch information
arq5x committed Jan 21, 2012
1 parent f95c106 commit 0a67ab6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,7 @@ def __init__(self, site, sample, data):
self.sample = sample
self.data = data
self.gt_nums = self.data['GT']
# FIXME: this assumes aggro is True
self.called = self.gt_nums is not None
self.called = self.gt_nums is not None and self.gt_nums is not "./."

def __repr__(self):
return "Call(sample=%s, GT=%s)" % (self.sample, self.gt_nums)
Expand Down

0 comments on commit 0a67ab6

Please sign in to comment.