lederhosen 0.2.13 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lederhosen.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "lederhosen"
8
- s.version = "0.2.13"
8
+ s.version = "0.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Austin G. Davis-Richardson"]
@@ -46,13 +46,16 @@ module Lederhosen
46
46
 
47
47
  File.open(input) do |handle|
48
48
  handle.each do |line|
49
- pbar.inc
49
+ # output lederhosen filtering information because I often
50
+ # forget to write this down :)
51
+ out.puts "# filtered: #{input}"
52
+ out.puts "# #{reads} reads in at least #{samples} samples"
50
53
 
54
+ pbar.inc
51
55
  if line =~ /^#/
52
56
  out.print line
53
57
  next
54
58
  end
55
-
56
59
  total += 1
57
60
 
58
61
  # check if cluster is in surviving clusters
@@ -1,8 +1,8 @@
1
1
  module Lederhosen
2
2
  module Version
3
3
  MAJOR = 0
4
- MINOR = 2
5
- PATCH = 13
4
+ MINOR = 3
5
+ PATCH = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, PATCH].join('.')
8
8
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lederhosen
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 2
9
- - 13
10
- version: 0.2.13
8
+ - 3
9
+ - 0
10
+ version: 0.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Austin G. Davis-Richardson