vcf 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/vcf.rb +1 -1
  2. metadata +3 -3
data/lib/vcf.rb CHANGED
@@ -13,7 +13,7 @@ public
13
13
  end
14
14
 
15
15
  def parse_line(line, sample_names=nil)
16
- return false if line[0] == '#'
16
+ return false if line[0,1] == '#'
17
17
 
18
18
  f = line.chomp.split("\t", -1)
19
19
  raise "VCF lines must have at least 8 fields" if f.size < 8
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: vcf
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.4
5
+ version: 0.0.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jesse Rodriguez
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-08-31 00:00:00 Z
13
+ date: 2011-09-21 00:00:00 Z
14
14
  dependencies: []
15
15
 
16
16
  description: Lightweight VCF (Variant Call Format) interface for ruby
@@ -23,7 +23,7 @@ extra_rdoc_files: []
23
23
 
24
24
  files:
25
25
  - lib/vcf.rb
26
- homepage: http://rubygems.org/gems/vcf
26
+ homepage: https://github.com/jesserod/vcfruby
27
27
  licenses: []
28
28
 
29
29
  post_install_message: