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 +1 -1
- data/lib/lederhosen/tasks/uc_filter.rb +5 -2
- data/lib/lederhosen/version.rb +2 -2
- metadata +4 -4
data/lederhosen.gemspec
CHANGED
@@ -46,13 +46,16 @@ module Lederhosen
|
|
46
46
|
|
47
47
|
File.open(input) do |handle|
|
48
48
|
handle.each do |line|
|
49
|
-
|
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
|
data/lib/lederhosen/version.rb
CHANGED
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:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 3
|
9
|
+
- 0
|
10
|
+
version: 0.3.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Austin G. Davis-Richardson
|