bio-polyploid-tools 0.9.2 → 0.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 80492a2607af467274ac7ca76979826e09dade8e59cba047a557c98448d71406
4
- data.tar.gz: 94c59ed53e14840eb52ac2a628ba96a8bff6cc45f1490b66cb5bed8522eddafe
2
+ SHA1:
3
+ metadata.gz: bfb72b7ca83304ff8327c9be9983bb1b61b1fee7
4
+ data.tar.gz: ee55c1474c0861a054aecd3b42248b750039fb95
5
5
  SHA512:
6
- metadata.gz: f5e03604ce62a488b6053655f475583a2579e1c6b22effc0dbba069c6b469fc92294ec4c5674bf73644b8704f4441651652e45117bb6db7bbdb0ed6d5a8ff86e
7
- data.tar.gz: 54ca702eb2348297f0a26d56f6fbb963da7dddf09a78a5783b9d4f6faac3b42e8213b814080852b2ce4f3c8dc61bad3233c2995660553d75ee77eb2f2e073290
6
+ metadata.gz: 1303cb00a3776edffe3a76f2fcb2bccd4dd7d66e29bd252a370312a60e8b8a83fe8ff94dac17a23f68d8ddfc658f289c24b0c4401cf1af1b458d75568a59c718
7
+ data.tar.gz: c2c622498e3537cc5ad16e5eba447d8b957bfd4d1ce0e4ca05f6f539a53e6b82f30b428736b17e1c4a799e12fafb22e96b229a49f53e33a0acd750c4dc0c63d8
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.2
1
+ 0.9.3
@@ -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.2 ruby lib
5
+ # stub: bio-polyploid-tools 0.9.3 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "bio-polyploid-tools".freeze
9
- s.version = "0.9.2"
9
+ s.version = "0.9.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]
13
13
  s.authors = ["Ricardo H. Ramirez-Gonzalez".freeze]
14
- s.date = "2018-08-17"
14
+ s.date = "2018-08-18"
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]
@@ -154,6 +154,7 @@ Gem::Specification.new do |s|
154
154
  "test/data/chr1A_G540414846C/chr1A_G540414846C.csv",
155
155
  "test/data/chr1A_G540414846C/chr1A_G540414846C.fa",
156
156
  "test/data/chr1A_T517634750C/chr1A_T517634750C.csv",
157
+ "test/data/chr2D_C112180134A/chr2D_C112180134A.csv",
157
158
  "test/data/chr4D_C14473543T/chr4D_C14473543T.csv",
158
159
  "test/data/chr4D_C14473543T/chr4D_C14473543T.fa",
159
160
  "test/data/headerMergeed.txt",
@@ -180,7 +181,7 @@ Gem::Specification.new do |s|
180
181
  ]
181
182
  s.homepage = "http://github.com/tgac/bioruby-polyploid-tools".freeze
182
183
  s.licenses = ["MIT".freeze]
183
- s.rubygems_version = "2.7.4".freeze
184
+ s.rubygems_version = "2.6.14".freeze
184
185
  s.summary = "Tool to work with polyploids, NGS and molecular biology".freeze
185
186
 
186
187
  if s.respond_to? :specification_version then
@@ -13,7 +13,6 @@ module Bio::PolyploidTools
13
13
  def initialize
14
14
  @parents=Hash.new
15
15
  @snp_map = Hash.new
16
- @snp_contigs
17
16
  @primer_3_min_seq_length = 50
18
17
  @max_hits = 10
19
18
  end
@@ -219,7 +218,7 @@ module Bio::PolyploidTools
219
218
  def remove_alignments_over_max_hits
220
219
  @snp_map.each_pair do | gene, snp_array|
221
220
  snp_array.each do |snp|
222
- total_hits = snp.exon_list.size
221
+ total_hits = snp.exon_list.map { |e| e.size }.inject(:+)
223
222
  snp.hit_count = total_hits
224
223
  if total_hits > max_hits
225
224
  snp.exon_list = {}
@@ -0,0 +1 @@
1
+ chr2D_C112180134A,2D,aaacataaaggaatgagcaaaagggtcccggcctttctgtgggcggaagtactactgcgagaaaacgcccataaaaacgctcgctatgcgaactctttgc[C/A]tgtactgttgtgtgtatagcgtctaggttcacgcccgcaaccaaatgcggcatgcatgccatgtcacgtgggcggtgaaaatcacgcccaaatattacaa
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.2
4
+ version: 0.9.3
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-17 00:00:00.000000000 Z
11
+ date: 2018-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bio
@@ -274,6 +274,7 @@ files:
274
274
  - test/data/chr1A_G540414846C/chr1A_G540414846C.csv
275
275
  - test/data/chr1A_G540414846C/chr1A_G540414846C.fa
276
276
  - test/data/chr1A_T517634750C/chr1A_T517634750C.csv
277
+ - test/data/chr2D_C112180134A/chr2D_C112180134A.csv
277
278
  - test/data/chr4D_C14473543T/chr4D_C14473543T.csv
278
279
  - test/data/chr4D_C14473543T/chr4D_C14473543T.fa
279
280
  - test/data/headerMergeed.txt
@@ -317,7 +318,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
317
318
  version: '0'
318
319
  requirements: []
319
320
  rubyforge_project:
320
- rubygems_version: 2.7.4
321
+ rubygems_version: 2.6.14
321
322
  signing_key:
322
323
  specification_version: 4
323
324
  summary: Tool to work with polyploids, NGS and molecular biology