bio-polyploid-tools 0.8.8 → 0.8.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b98553fa53cce305003462d095b3327d5fe6a4e8
4
- data.tar.gz: 54a35758a75bfdda5b273263a9ea83b59e22f0e6
2
+ SHA256:
3
+ metadata.gz: 5e84c23b6cdb94ec8e7537de6d6a85bb5c807e99417aee64f300f567f9ed06fa
4
+ data.tar.gz: 5f597fa54fc9d9be8a10efb27ecbacf261d4285a950a24c2b49b8f6ad09f954a
5
5
  SHA512:
6
- metadata.gz: c34087c86bacba08816ca113e7ebadd396d8f6fcc26fc1cc9224f69f1d5896a3e75cc680c6934d8f43d9c735f48ce305b77bfd9e509a993e7342ce63ac2f6438
7
- data.tar.gz: 37f133ee490484fb946f759a4fd6b3bce3967f36d56c1cece5a530d15261d2ff204933fce9d6b114c24688f308e09b7c1ea031fc8832fb49a40f16ab21044d2b
6
+ metadata.gz: 56ffd2291cb36799fcf1c96790a08fb82a58bd98480fc4315fcf26b34df87c5bbc048b2f88be5e7788ab382b95aee78b9d88c4389ca1ee12e88a84c8326e143d
7
+ data.tar.gz: 13f38b6eb9a175f48bd04d8ae2b58070c21055c64dcd68d3cca4d691587b0392876a5f5c5fe5d801f1b61e73d8f6104b5515a8348c8e6ab914ab978bdae3c2cb
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.8
1
+ 0.8.9
@@ -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.8.8 ruby lib
5
+ # stub: bio-polyploid-tools 0.8.9 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "bio-polyploid-tools".freeze
9
- s.version = "0.8.8"
9
+ s.version = "0.8.9"
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-10"
14
+ s.date = "2018-08-16"
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]
@@ -113,7 +113,7 @@ Gem::Specification.new do |s|
113
113
  "test/data/BS00068396_51_contigs.nin",
114
114
  "test/data/BS00068396_51_contigs.nsq",
115
115
  "test/data/BS00068396_51_exonerate.tab",
116
- "test/data/BS00068396_51_for_polymarker.fa",
116
+ "test/data/BS00068396_51_for_polymarker.txt",
117
117
  "test/data/BS00068396_51_genes.txt",
118
118
  "test/data/IWGSC_CSS_1AL_scaff_1455974.fa",
119
119
  "test/data/IWGSC_CSS_1AL_scaff_1455974_aln_contigs.fa",
@@ -180,7 +180,7 @@ Gem::Specification.new do |s|
180
180
  ]
181
181
  s.homepage = "http://github.com/tgac/bioruby-polyploid-tools".freeze
182
182
  s.licenses = ["MIT".freeze]
183
- s.rubygems_version = "2.6.14".freeze
183
+ s.rubygems_version = "2.7.4".freeze
184
184
  s.summary = "Tool to work with polyploids, NGS and molecular biology".freeze
185
185
 
186
186
  if s.respond_to? :specification_version then
@@ -342,10 +342,9 @@ module Bio::PolyploidTools
342
342
  errors << "The sequence (#{seq_original.size}) is shorter than #{primer_3_min_seq_length}"
343
343
  return primer_3_propertes
344
344
  end
345
- hit_count = exon_list.size
346
- puts exon_list.inspect
347
- if hit_count > max_hits
348
- errors << "The marker maps to #{exon_list.size} positions (max_hits: #{max_hits}). "
345
+ @hit_count = exon_list.size
346
+ if @hit_count > max_hits
347
+ errors << "The marker maps to #{@hit_count} positions (max_hits: #{max_hits}). "
349
348
  repetitive = true
350
349
  return primer_3_propertes
351
350
  end
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.8.8
4
+ version: 0.8.9
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-10 00:00:00.000000000 Z
11
+ date: 2018-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bio
@@ -233,7 +233,7 @@ files:
233
233
  - test/data/BS00068396_51_contigs.nin
234
234
  - test/data/BS00068396_51_contigs.nsq
235
235
  - test/data/BS00068396_51_exonerate.tab
236
- - test/data/BS00068396_51_for_polymarker.fa
236
+ - test/data/BS00068396_51_for_polymarker.txt
237
237
  - test/data/BS00068396_51_genes.txt
238
238
  - test/data/IWGSC_CSS_1AL_scaff_1455974.fa
239
239
  - test/data/IWGSC_CSS_1AL_scaff_1455974_aln_contigs.fa
@@ -317,7 +317,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
317
317
  version: '0'
318
318
  requirements: []
319
319
  rubyforge_project:
320
- rubygems_version: 2.6.14
320
+ rubygems_version: 2.7.4
321
321
  signing_key:
322
322
  specification_version: 4
323
323
  summary: Tool to work with polyploids, NGS and molecular biology