bio-polyploid-tools 0.9.0 → 0.9.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 +3 -3
- data/lib/bio/PolyploidTools/SNP.rb +3 -3
- data/lib/bio/db/primer3.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1dde0f369e105d6603efae5e1312d89233cf2e3601938093c57d2ebc408deeb
|
|
4
|
+
data.tar.gz: f580aebdf6e6713c450008006dc5cfd371aff4ab443b6e9d12bc623661a22d54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 508347342dc0147269cc96a67a79f479d264ebd91d45d1b70d6fa7c484a4ea6a5cc7e481822bdf25910a8a2f9d5961e988b76f0244151c1052aa5a0333db8c22
|
|
7
|
+
data.tar.gz: 060b9a465213d0447fa5e35e4b0ae9bc27cc3754e92615d6ac5b1214e902f11f95fbb002dd088e845efdb2c3bd9402b2f40ccad52d584dc6cbeac72fa97cf433
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.1
|
data/bio-polyploid-tools.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
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.9.
|
|
5
|
+
# stub: bio-polyploid-tools 0.9.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "bio-polyploid-tools".freeze
|
|
9
|
-
s.version = "0.9.
|
|
9
|
+
s.version = "0.9.1"
|
|
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]
|
|
13
13
|
s.authors = ["Ricardo H. Ramirez-Gonzalez".freeze]
|
|
14
|
-
s.date = "2018-08-
|
|
14
|
+
s.date = "2018-08-17"
|
|
15
15
|
s.description = "Repository of tools developed at Crop Genetics in JIC to work with polyploid wheat".freeze
|
|
16
16
|
s.email = "ricardo.ramirez-gonzalez@jic.ac.uk".freeze
|
|
17
17
|
s.executables = ["bfr.rb".freeze, "blast_triads.rb".freeze, "blast_triads_promoters.rb".freeze, "count_variations.rb".freeze, "filter_blat_by_target_coverage.rb".freeze, "filter_exonerate_by_identity.rb".freeze, "find_best_blat_hit.rb".freeze, "find_best_exonerate.rb".freeze, "find_homoeologue_variations.rb".freeze, "get_longest_hsp_blastx_triads.rb".freeze, "hexaploid_primers.rb".freeze, "homokaryot_primers.rb".freeze, "mafft_triads.rb".freeze, "mafft_triads_promoters.rb".freeze, "map_markers_to_contigs.rb".freeze, "markers_in_region.rb".freeze, "mask_triads.rb".freeze, "polymarker.rb".freeze, "polymarker_capillary.rb".freeze, "snp_position_to_polymarker.rb".freeze, "snps_between_bams.rb".freeze, "tag_stats.rb".freeze, "vcfLineToTable.rb".freeze]
|
|
@@ -64,7 +64,7 @@ module Bio::PolyploidTools
|
|
|
64
64
|
@primer_3_min_seq_length = 50
|
|
65
65
|
@variation_free_region = 0
|
|
66
66
|
@contig = false
|
|
67
|
-
@max_hits =
|
|
67
|
+
@max_hits = 8
|
|
68
68
|
@exon_list = Hash.new {|hsh, key| hsh[key] = [] }
|
|
69
69
|
@errors = Array.new
|
|
70
70
|
@repetitive = false
|
|
@@ -340,8 +340,8 @@ module Bio::PolyploidTools
|
|
|
340
340
|
return primer_3_propertes
|
|
341
341
|
end
|
|
342
342
|
|
|
343
|
-
if hit_count > max_hits
|
|
344
|
-
errors << "The marker maps to #{hit_count} positions (max_hits: #{max_hits}). "
|
|
343
|
+
if @hit_count > @max_hits
|
|
344
|
+
errors << "The marker maps to #{@hit_count} positions (max_hits: #{@max_hits}). "
|
|
345
345
|
repetitive = true
|
|
346
346
|
return primer_3_propertes
|
|
347
347
|
end
|
data/lib/bio/db/primer3.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bio-polyploid-tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ricardo H. Ramirez-Gonzalez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-08-
|
|
11
|
+
date: 2018-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bio
|