bio-polyploid-tools 0.9.10 → 0.10.0
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 +5 -5
- data/.travis.yml +1 -2
- data/VERSION +1 -1
- data/bin/polymarker.rb +14 -4
- data/bin/vcfToPolyMarker.rb +2 -2
- data/bio-polyploid-tools.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e5c0d7a867bd4272b6457d4a742d9cea42bbd5086def51870cd10e3c351843f7
|
4
|
+
data.tar.gz: 49332a5bea0a00006eaa8ddaaa29c5ed73f6fbb6972eca5c7e83b6ae1eceaa3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b9fb60b9396e2c89dae20bdccc9c24371ffa6fea9e3274a75a15e5f2a8931b58cdf792ddb4a2332815ef52bb137dcbc9fe1b18f3fba05aeca08af96329cae37
|
7
|
+
data.tar.gz: 172abc52a0e56a4c37ea71ab35d20009171f250ef175cb8f31eb296164b7cd437cc890d932085131ae1bc187220928e21090df55f34dc1f20b589bae47d65fc3
|
data/.travis.yml
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.10.0
|
data/bin/polymarker.rb
CHANGED
@@ -149,8 +149,8 @@ if options[:primer_3_preferences][:primer_product_size_range]
|
|
149
149
|
options[:flanking_size] = max
|
150
150
|
end
|
151
151
|
|
152
|
-
p options
|
153
|
-
p ARGV
|
152
|
+
#p options
|
153
|
+
#p ARGV
|
154
154
|
|
155
155
|
|
156
156
|
#TODO: Use temporary files somewhere in the file system and add traps to delete them/forward them as a result.
|
@@ -192,6 +192,17 @@ def write_status(status)
|
|
192
192
|
f.close
|
193
193
|
end
|
194
194
|
|
195
|
+
Signal.trap("ABRT") do
|
196
|
+
write_status "ERROR: Job aborted. Please try a small number of primers."
|
197
|
+
Signal.trap("SIGABRT", "DEFAULT") # restore handler
|
198
|
+
Process.kill("ABRT", 0)
|
199
|
+
end
|
200
|
+
|
201
|
+
Signal.trap("TERM") do
|
202
|
+
write_status "ERROR: Job terminated. Please try a small number of primers."
|
203
|
+
Signal.trap("SIGTERM", "DEFAULT") # restore handler
|
204
|
+
Process.kill("TERM", 0) # kill this process with correct signal
|
205
|
+
end
|
195
206
|
|
196
207
|
snps = Array.new
|
197
208
|
|
@@ -377,8 +388,7 @@ end
|
|
377
388
|
kasp_container.add_primers_file(primer_3_output) if added_exons > 0
|
378
389
|
header = "Marker,SNP,RegionSize,chromosome,total_contigs,contig_regions,SNP_type,#{original_name},#{snp_in},common,primer_type,orientation,#{original_name}_TM,#{snp_in}_TM,common_TM,selected_from,product_size,errors,repetitive,total_hits"
|
379
390
|
File.open(output_primers, 'w') { |f| f.write("#{header}\n#{kasp_container.print_primers}") }
|
380
|
-
|
381
|
-
File.open(output_to_order, "w") { |io| io.write(kasp_container.print_primers_with_tails()) }
|
391
|
+
File.open(output_to_order, "w") { |io| io.write(kasp_container.print_primers_with_tails())}
|
382
392
|
|
383
393
|
write_status "DONE"
|
384
394
|
rescue StandardError => e
|
data/bin/vcfToPolyMarker.rb
CHANGED
@@ -16,7 +16,7 @@ options[:arm_selection] = Bio::PolyploidTools::ChromosomeArm.getArmSelection("nr
|
|
16
16
|
|
17
17
|
|
18
18
|
OptionParser.new do |opts|
|
19
|
-
opts.banner = "Usage:
|
19
|
+
opts.banner = "Usage: vcfToPolyMarker.rb [options]"
|
20
20
|
|
21
21
|
opts.on("-c", "--reference FILE", "File with genome reference to use as database") do |o|
|
22
22
|
options[:path_to_contigs] = o
|
@@ -75,7 +75,7 @@ $stdin.each do |line|
|
|
75
75
|
end
|
76
76
|
line.chomp!
|
77
77
|
#puts line
|
78
|
-
snp = Bio::PolyploidTools::SNP.parseVCF( line , options[:arm_selection])
|
78
|
+
snp = Bio::PolyploidTools::SNP.parseVCF( line , chr_arm_parser: options[:arm_selection])
|
79
79
|
#puts snp.inspect
|
80
80
|
snp.setTemplateFromFastaFile(fasta_reference_db, flanking_size: 100)
|
81
81
|
puts [snp.gene, snp.chromosome ,snp.to_polymarker_sequence(100)].join(",")
|
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.
|
5
|
+
# stub: bio-polyploid-tools 0.10.0 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bio-polyploid-tools".freeze
|
9
|
-
s.version = "0.
|
9
|
+
s.version = "0.10.0"
|
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 = "2019-03-
|
14
|
+
s.date = "2019-03-28"
|
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, "marker_to_vcf.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, "vcfToPolyMarker.rb".freeze]
|
@@ -185,7 +185,7 @@ Gem::Specification.new do |s|
|
|
185
185
|
]
|
186
186
|
s.homepage = "http://github.com/tgac/bioruby-polyploid-tools".freeze
|
187
187
|
s.licenses = ["MIT".freeze]
|
188
|
-
s.rubygems_version = "2.
|
188
|
+
s.rubygems_version = "2.7.7".freeze
|
189
189
|
s.summary = "Tool to work with polyploids, NGS and molecular biology".freeze
|
190
190
|
|
191
191
|
if s.respond_to? :specification_version then
|
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.
|
4
|
+
version: 0.10.0
|
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: 2019-03-
|
11
|
+
date: 2019-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bio
|
@@ -324,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
324
324
|
version: '0'
|
325
325
|
requirements: []
|
326
326
|
rubyforge_project:
|
327
|
-
rubygems_version: 2.
|
327
|
+
rubygems_version: 2.7.7
|
328
328
|
signing_key:
|
329
329
|
specification_version: 4
|
330
330
|
summary: Tool to work with polyploids, NGS and molecular biology
|