lederhosen 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source :rubygems
2
2
 
3
- gem 'dna'
3
+ gem 'dna', '0.0.12'
4
4
  gem 'progressbar'
5
5
  gem 'thor'
6
6
 
data/LICENSE.txt ADDED
@@ -0,0 +1,7 @@
1
+ Copyright (C) 2012 Austin G. Davis-Richardson
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -17,7 +17,7 @@ require 'rake'
17
17
  require 'jeweler'
18
18
  Jeweler::Tasks.new do |gem|
19
19
  gem.name = "lederhosen"
20
- gem.homepage = "http://github.com/audy/lederhosen"
20
+ gem.homepage = "http://audy.github.com/lederhosen"
21
21
  gem.license = "MIT"
22
22
  gem.summary = "OTU Clustering"
23
23
  gem.description = "Various tools for OTU clustering"
data/lederhosen.gemspec CHANGED
@@ -5,18 +5,22 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "lederhosen"
8
- s.version = "0.3.0"
8
+ s.version = "0.3.1"
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"]
12
- s.date = "2012-08-08"
12
+ s.date = "2012-08-12"
13
13
  s.description = "Various tools for OTU clustering"
14
14
  s.email = "harekrishna@gmail.com"
15
15
  s.executables = ["lederhosen"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE.txt"
18
+ ]
16
19
  s.files = [
17
20
  ".rspec",
18
21
  ".rvmrc",
19
22
  "Gemfile",
23
+ "LICENSE.txt",
20
24
  "Rakefile",
21
25
  "bin/lederhosen",
22
26
  "examples/hierarchical_clustering.sh",
@@ -55,7 +59,7 @@ Gem::Specification.new do |s|
55
59
  "spec/misc_spec.rb",
56
60
  "spec/spec_helper.rb"
57
61
  ]
58
- s.homepage = "http://github.com/audy/lederhosen"
62
+ s.homepage = "http://audy.github.com/lederhosen"
59
63
  s.licenses = ["MIT"]
60
64
  s.require_paths = ["lib"]
61
65
  s.rubygems_version = "1.8.24"
@@ -65,14 +69,14 @@ Gem::Specification.new do |s|
65
69
  s.specification_version = 3
66
70
 
67
71
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
68
- s.add_runtime_dependency(%q<dna>, [">= 0"])
72
+ s.add_runtime_dependency(%q<dna>, ["= 0.0.12"])
69
73
  s.add_runtime_dependency(%q<progressbar>, [">= 0"])
70
74
  s.add_runtime_dependency(%q<thor>, [">= 0"])
71
75
  s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
72
76
  s.add_development_dependency(%q<bundler>, [">= 0"])
73
77
  s.add_development_dependency(%q<jeweler>, [">= 0"])
74
78
  else
75
- s.add_dependency(%q<dna>, [">= 0"])
79
+ s.add_dependency(%q<dna>, ["= 0.0.12"])
76
80
  s.add_dependency(%q<progressbar>, [">= 0"])
77
81
  s.add_dependency(%q<thor>, [">= 0"])
78
82
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
@@ -80,7 +84,7 @@ Gem::Specification.new do |s|
80
84
  s.add_dependency(%q<jeweler>, [">= 0"])
81
85
  end
82
86
  else
83
- s.add_dependency(%q<dna>, [">= 0"])
87
+ s.add_dependency(%q<dna>, ["= 0.0.12"])
84
88
  s.add_dependency(%q<progressbar>, [">= 0"])
85
89
  s.add_dependency(%q<thor>, [">= 0"])
86
90
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
@@ -2,7 +2,7 @@ module Lederhosen
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
- PATCH = 0
5
+ PATCH = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, PATCH].join('.')
8
8
  end
data/readme.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Cluster raw Illumina 16S rRNA amplicon data to generate OTUs.
4
4
 
5
+ ## Who can use Lederhosen?
6
+
7
+ Lederhosen is free and open source under the [MIT open source license](http://opensource.org/licenses/mit-license.php/)
8
+
5
9
  ## How do I get Lederhosen?
6
10
 
7
11
  0. Obtain & Install [UCLUST](http://www.drive5.com/) (64-bit)
data/spec/cli_spec.rb CHANGED
@@ -37,7 +37,7 @@ describe Lederhosen::CLI do
37
37
  end
38
38
 
39
39
  it 'should build OTU abundance matrices' do
40
- `./bin/lederhosen otu_table --clusters=#{$test_dir}/clusters.uc --output=#{$test_dir}/test_tables --joined=#{$test_dir}/joined.fasta`
40
+ `./bin/lederhosen otu_table --clusters=#{$test_dir}/clusters.uc --output=#{$test_dir}/test_tables`
41
41
  $?.success?.should be_true
42
42
  end
43
43
 
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: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 0
10
- version: 0.3.0
9
+ - 1
10
+ version: 0.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Austin G. Davis-Richardson
@@ -15,19 +15,21 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-08-08 00:00:00 Z
18
+ date: 2012-08-12 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  type: :runtime
22
22
  requirement: &id001 !ruby/object:Gem::Requirement
23
23
  none: false
24
24
  requirements:
25
- - - ">="
25
+ - - "="
26
26
  - !ruby/object:Gem::Version
27
- hash: 3
27
+ hash: 7
28
28
  segments:
29
29
  - 0
30
- version: "0"
30
+ - 0
31
+ - 12
32
+ version: 0.0.12
31
33
  version_requirements: *id001
32
34
  name: dna
33
35
  prerelease: false
@@ -108,12 +110,13 @@ executables:
108
110
  - lederhosen
109
111
  extensions: []
110
112
 
111
- extra_rdoc_files: []
112
-
113
+ extra_rdoc_files:
114
+ - LICENSE.txt
113
115
  files:
114
116
  - .rspec
115
117
  - .rvmrc
116
118
  - Gemfile
119
+ - LICENSE.txt
117
120
  - Rakefile
118
121
  - bin/lederhosen
119
122
  - examples/hierarchical_clustering.sh
@@ -151,7 +154,7 @@ files:
151
154
  - spec/helpers_spec.rb
152
155
  - spec/misc_spec.rb
153
156
  - spec/spec_helper.rb
154
- homepage: http://github.com/audy/lederhosen
157
+ homepage: http://audy.github.com/lederhosen
155
158
  licenses:
156
159
  - MIT
157
160
  post_install_message: