• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

cbmi / varify / 356 / 2
32%
master: 39%

Build:
Build:
LAST BUILD BRANCH: issue-389
DEFAULT BRANCH: master
Ran 27 Feb 2014 07:42PM UTC
Files 107
Run time –
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

27 Feb 2014 07:04PM UTC coverage: 32.118%. First build
DJANGO=1.5.5

push

travis-ci

naegelyd
Fix bad data lookups on PyVCF call objects

Originally, all these lookups were done using explicit indexing of the form call['GT'] for example. This caused AttributeErrors when the key was not present. The move was made to getattr(call, 'GQ', None) to try to safely access those attributes. This unknowingly resulted in all None values being returned because the call object does not hold this data directly, it is all on its data property which is what is read in explicit indexing because PyVCF overrides the __getitem__ method(https://github.com/cbmi/PyVCF/blob/master/vcf/model.py#L90-L92). To avoid AttributeErrors, we now use a safe lookup on call.data instead of call which will read the data in a safe manner unlike the explicit indexing case because PyVCF always assumes the key is valid when calling getattr.

1286 of 4004 relevant lines covered (32.12%)

0.32 hits per line

Source Files on job 356.2 (DJANGO=1.5.5)
  • Tree
  • List 0
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 356
  • Travis Job 356.2
  • b4cf3e71 on github
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc