bio-polyploid-tools 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/SECURITY.md +16 -0
- data/VERSION +1 -1
- data/bio-polyploid-tools.gemspec +5 -4
- data/lib/bio/BIOExtensions.rb +1 -1
- data/lib/bio/PolyploidTools/NoSNPSequence.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4611c4e04774806f9f8f265eccc992f8221a8b3cb61ae50f4323cbd68c538a33
|
4
|
+
data.tar.gz: f180e87cc04f0ee67cf68dffda01c1a0be6686ab02cc1cbd536d4aad4ae4e298
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 441115704f6e6ed75b6bb40361393a5281cb256d4a9731abe1bb1056cc28d7c825232e198f4fa14c0cf4f5b4ce6b66872bfd34e01942db856a41c6945daa149a
|
7
|
+
data.tar.gz: 7b4a10b0268583e2459cc93d437393a7a89caa6cd201c50833203039e4f75eb204b512242c315569a09fd3be9f28db12e09db8a0550b4fbb014a15fa0bddc94c
|
data/SECURITY.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Security Policy
|
2
|
+
|
3
|
+
## Supported Versions
|
4
|
+
|
5
|
+
The following table shows the currently supported version.
|
6
|
+
|
7
|
+
| Version | Supported |
|
8
|
+
| ------- | ------------------ |
|
9
|
+
| 1.1.x | :white_check_mark: |
|
10
|
+
| 1.0.x | :x: |
|
11
|
+
| 0.x.x | :x: |
|
12
|
+
|
13
|
+
|
14
|
+
## Reporting a Vulnerability
|
15
|
+
|
16
|
+
If you find a vulneravility, please submit a comment in the security tab
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.2
|
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 1.1.
|
5
|
+
# stub: bio-polyploid-tools 1.1.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bio-polyploid-tools".freeze
|
9
|
-
s.version = "1.1.
|
9
|
+
s.version = "1.1.2"
|
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 = "
|
14
|
+
s.date = "2020-03-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, "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, "polymarker_deletions.rb".freeze, "snp_position_to_polymarker.rb".freeze, "snps_between_bams.rb".freeze, "tag_stats.rb".freeze, "vcfLineToTable.rb".freeze, "vcfToPolyMarker.rb".freeze]
|
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
"Gemfile",
|
24
24
|
"README.md",
|
25
25
|
"Rakefile",
|
26
|
+
"SECURITY.md",
|
26
27
|
"VERSION",
|
27
28
|
"bin/bfr.rb",
|
28
29
|
"bin/blast_triads.rb",
|
@@ -183,7 +184,7 @@ Gem::Specification.new do |s|
|
|
183
184
|
]
|
184
185
|
s.homepage = "http://github.com/tgac/bioruby-polyploid-tools".freeze
|
185
186
|
s.licenses = ["MIT".freeze]
|
186
|
-
s.rubygems_version = "
|
187
|
+
s.rubygems_version = "3.0.8".freeze
|
187
188
|
s.summary = "Tool to work with polyploids, NGS and molecular biology".freeze
|
188
189
|
|
189
190
|
if s.respond_to? :specification_version then
|
data/lib/bio/BIOExtensions.rb
CHANGED
@@ -222,7 +222,7 @@ module Bio::PolyploidTools
|
|
222
222
|
end
|
223
223
|
end
|
224
224
|
|
225
|
-
def primer_3_all_strings(target_chromosome, parental)
|
225
|
+
def primer_3_all_strings(target_chromosome, parental, max_specific_primers: nil)
|
226
226
|
#puts "primer_3_all_strings: #{target_chromosome} #{parental}"
|
227
227
|
pr = primer_region(target_chromosome, parental )
|
228
228
|
#puts pr.inspect
|
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: 1.1.
|
4
|
+
version: 1.1.2
|
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:
|
11
|
+
date: 2020-03-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bio
|
@@ -145,6 +145,7 @@ files:
|
|
145
145
|
- Gemfile
|
146
146
|
- README.md
|
147
147
|
- Rakefile
|
148
|
+
- SECURITY.md
|
148
149
|
- VERSION
|
149
150
|
- bin/bfr.rb
|
150
151
|
- bin/blast_triads.rb
|
@@ -321,8 +322,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
321
322
|
- !ruby/object:Gem::Version
|
322
323
|
version: '0'
|
323
324
|
requirements: []
|
324
|
-
|
325
|
-
rubygems_version: 2.7.7
|
325
|
+
rubygems_version: 3.0.8
|
326
326
|
signing_key:
|
327
327
|
specification_version: 4
|
328
328
|
summary: Tool to work with polyploids, NGS and molecular biology
|