bio-polyploid-tools 0.8.2 → 0.8.3
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.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/README.md +5 -0
- data/VERSION +1 -1
- data/bio-polyploid-tools.gemspec +2 -2
- data/lib/bio/PolyploidTools/ChromosomeArm.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9acfc190624dec8c4d6e1831c71524c330ffdd2
|
|
4
|
+
data.tar.gz: 4307bf90f54200f65972ea596f94048d65edbcb1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b7f9875c56e9395d4c934b456b2332218d3a4e202addd1cab48adcb0c443ad9cef607452ee4ed8ff32994cd4c10bc2cd10b3b24f966de49c02657a961d0d3d0
|
|
7
|
+
data.tar.gz: a445e30d15f958c54424300250a481e470c47284f3842ba0a285138527f14cd0baaeb30547abf6f8fdd52c5c742e81b0cc875cbf783c6664fdd72c5d950bdcca
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -128,6 +128,11 @@ To use blast instead of exonerate, use the following command:
|
|
|
128
128
|
|
|
129
129
|
## Release Notes
|
|
130
130
|
|
|
131
|
+
### 0.8.3
|
|
132
|
+
|
|
133
|
+
* BUGFIX: ```ChromosomeArm.rb``` was fixed to conform the module assumptions for the package.
|
|
134
|
+
|
|
135
|
+
|
|
131
136
|
### 0.8.2
|
|
132
137
|
|
|
133
138
|
* FEATURE: The functions to select the chromosome arm are now in ```lib/bio/PolyploidTools/ChromosomeArm.rb``` and the help message is updated automatically with the valid options.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.3
|
data/bio-polyploid-tools.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: bio-polyploid-tools 0.8.
|
|
5
|
+
# stub: bio-polyploid-tools 0.8.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "bio-polyploid-tools".freeze
|
|
9
|
-
s.version = "0.8.
|
|
9
|
+
s.version = "0.8.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
module Bio::PolyploidTools
|
|
2
|
+
class ChromosomeArm
|
|
2
3
|
|
|
3
4
|
|
|
4
5
|
|
|
@@ -47,5 +48,5 @@ class Bio::PolyploidTools::ChromosomeArm
|
|
|
47
48
|
def self.getValidFunctions
|
|
48
49
|
@@arm_selection_functions.keys.map { |e| e.to_s }
|
|
49
50
|
end
|
|
50
|
-
|
|
51
|
+
end
|
|
51
52
|
end
|