lederhosen 1.2.1 → 1.2.2
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/cluster.rb +3 -3
- data/lib/lederhosen/tasks/get_reps.rb +2 -2
- data/lib/lederhosen/tasks/join_otu_tables.rb +1 -1
- data/lib/lederhosen/tasks/otu_filter.rb +2 -2
- data/lib/lederhosen/tasks/split_fasta.rb +1 -1
- data/lib/lederhosen/version.rb +1 -1
- metadata +2 -2
data/lederhosen.gemspec
CHANGED
@@ -12,11 +12,11 @@ module Lederhosen
|
|
12
12
|
method_option :strand, :type => :string, :default => 'plus'
|
13
13
|
|
14
14
|
def cluster
|
15
|
-
input = options[:input]
|
16
|
-
database = options[:database]
|
15
|
+
input = File.expand_path(options[:input])
|
16
|
+
database = File.expand_path(options[:database])
|
17
17
|
threads = options[:threads]
|
18
18
|
identity = options[:identity]
|
19
|
-
output = options[:output]
|
19
|
+
output = File.expand_path(options[:output])
|
20
20
|
strand = options[:strand]
|
21
21
|
|
22
22
|
ohai "clustering #{input} to #{database} and saving to #{output}"
|
@@ -11,8 +11,8 @@ module Lederhosen
|
|
11
11
|
method_option :samples, :type => :numeric, :required => true
|
12
12
|
|
13
13
|
def otu_filter
|
14
|
-
input = options[:input]
|
15
|
-
output = options[:output]
|
14
|
+
input = File.expand_path(options[:input])
|
15
|
+
output = File.expand_path(options[:output])
|
16
16
|
reads = options[:reads]
|
17
17
|
min_samples = options[:samples]
|
18
18
|
|
data/lib/lederhosen/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lederhosen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -159,7 +159,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
159
159
|
version: '0'
|
160
160
|
segments:
|
161
161
|
- 0
|
162
|
-
hash:
|
162
|
+
hash: 3469551322698275047
|
163
163
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
164
|
none: false
|
165
165
|
requirements:
|