bio-polyploid-tools 0.5.0 → 0.5.1
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/VERSION +1 -1
- data/bio-polyploid-tools.gemspec +2 -2
- data/lib/bio/db/primer3.rb +3 -3
- 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: 7f6fc0cb8a06ea95fd357b4666135e112791f8bc
|
|
4
|
+
data.tar.gz: b25e3a15320a41139d95e0dc4b5807d076276429
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: facba68ff747f1f18feb74589eab9d0d9b20c906fd72f30ce5b344bcad01b54f1601d0da517435f819d728cee1a946e8676c12115549316b066a860d1d6b498f
|
|
7
|
+
data.tar.gz: 62b5b0d5dcb82f6789b1c5103047556a1b64f39dc2e630653d6b5c67cfa646c0ad17504d1b9dd0562254bbad1109cd7efb2c3b508bb80925b2a6bfcaaabb8cb4
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.1
|
data/bio-polyploid-tools.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: bio-polyploid-tools 0.5.
|
|
5
|
+
# stub: bio-polyploid-tools 0.5.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "bio-polyploid-tools"
|
|
9
|
-
s.version = "0.5.
|
|
9
|
+
s.version = "0.5.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
data/lib/bio/db/primer3.rb
CHANGED
|
@@ -302,9 +302,9 @@ module Bio::DB::Primer3
|
|
|
302
302
|
raise Primer3Exception.new "#{primer3record.line} is not recognized (#{line_1}, #{line_2})"
|
|
303
303
|
end
|
|
304
304
|
else
|
|
305
|
-
primer3_errors << "#{primer3record.line}(#{primer3record.orientation}):#{primer3record.primer_left_explain}"
|
|
306
|
-
primer3_errors << "common(#{primer3record.orientation}#{primer3record.type}):#{primer3record.primer_right_explain}"
|
|
307
|
-
primer3_errors << "pair(#{primer3record.orientation}#{primer3record.type}):#{primer3record.primer_pair_explain}"
|
|
305
|
+
primer3_errors << "#{primer3record.line}(#{primer3record.orientation}):#{primer3record.primer_left_explain.gsub!(',',';')}"
|
|
306
|
+
primer3_errors << "common(#{primer3record.orientation}#{primer3record.type}):#{primer3record.primer_right_explain.gsub!(',',';')}"
|
|
307
|
+
primer3_errors << "pair(#{primer3record.orientation}#{primer3record.type}):#{primer3record.primer_pair_explain.gsub!(',',';')}"
|
|
308
308
|
end
|
|
309
309
|
end
|
|
310
310
|
end
|