bio-ucsc-api 0.5.2 → 0.5.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.
- data/ChangeLog.md +3 -0
- data/Gemfile +6 -6
- data/Gemfile.lock +59 -30
- data/README.md +17 -13
- data/VERSION +1 -1
- data/bio-ucsc-api.gemspec +40 -45
- data/lib/bio-ucsc.rb +4 -3
- data/lib/bio-ucsc/drosim1.rb +1 -1
- data/lib/bio-ucsc/galgal4.rb +65 -0
- data/lib/bio-ucsc/hgfixed.rb +0 -1
- data/lib/bio-ucsc/rn5.rb +66 -0
- data/lib/bio-ucsc/rn5/chaincanfam2.rb +82 -0
- data/lib/bio-ucsc/{galgal3/chainmm9link.rb → rn5/chaincanfam2link.rb} +7 -9
- data/lib/bio-ucsc/{galgal3 → rn5}/chaincavpor3.rb +3 -6
- data/lib/bio-ucsc/rn5/chaincavpor3link.rb +81 -0
- data/lib/bio-ucsc/{galgal3 → rn5}/chaindanrer4.rb +3 -6
- data/lib/bio-ucsc/rn5/chaindanrer4link.rb +81 -0
- data/lib/bio-ucsc/rn5/chainequcab1.rb +81 -0
- data/lib/bio-ucsc/rn5/chainequcab1link.rb +81 -0
- data/lib/bio-ucsc/rn5/chaingalgal3.rb +81 -0
- data/lib/bio-ucsc/rn5/chaingalgal3link.rb +81 -0
- data/lib/bio-ucsc/{galgal3 → rn5}/chainmm9.rb +3 -6
- data/lib/bio-ucsc/rn5/chainmm9link.rb +81 -0
- data/lib/bio-ucsc/rn5/chainmondom4.rb +81 -0
- data/lib/bio-ucsc/rn5/chainmondom4link.rb +81 -0
- data/lib/bio-ucsc/{galgal3/chainfr2link.rb → rn5/chainpantro2.rb} +5 -8
- data/lib/bio-ucsc/{galgal3/chainrn4.rb → rn5/chainpantro2link.rb} +6 -8
- data/lib/bio-ucsc/rn5/chainrhemac2.rb +81 -0
- data/lib/bio-ucsc/rn5/chainrhemac2link.rb +81 -0
- data/lib/bio-ucsc/{galgal3 → rn5}/est.rb +2 -5
- data/lib/bio-ucsc/{galgal3 → rn5}/gap.rb +2 -5
- data/lib/bio-ucsc/{galgal3 → rn5}/gold.rb +2 -5
- data/lib/bio-ucsc/{galgal3 → rn5}/intronest.rb +2 -5
- data/lib/bio-ucsc/{galgal3 → rn5}/mrna.rb +2 -5
- data/lib/bio-ucsc/{galgal3 → rn5}/rmsk.rb +2 -5
- data/lib/bio-ucsc/taegut1/chaingalgal3.rb +1 -1
- data/lib/bio-ucsc/taegut1/chaingalgal3link.rb +1 -1
- data/lib/bio-ucsc/visigene.rb +0 -1
- metadata +55 -60
- data/lib/bio-ucsc/galgal3.rb +0 -56
- data/lib/bio-ucsc/galgal3/chainanocar1.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainanocar1link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainbraflo1.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainbraflo1link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chaincavpor3link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chaindanrer4link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainfr2.rb +0 -84
- data/lib/bio-ucsc/galgal3/chaingasacu1.rb +0 -84
- data/lib/bio-ucsc/galgal3/chaingasacu1link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainornana1.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainornana1link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainpetmar1.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainpetmar1link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainrn4link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chaintaegut1.rb +0 -84
- data/lib/bio-ucsc/galgal3/chaintaegut1link.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainxentro2.rb +0 -84
- data/lib/bio-ucsc/galgal3/chainxentro2link.rb +0 -84
@@ -9,16 +9,13 @@
|
|
9
9
|
|
10
10
|
module Bio
|
11
11
|
module Ucsc
|
12
|
-
module
|
12
|
+
module Rn4
|
13
13
|
|
14
|
-
class
|
15
|
-
|
16
|
-
|
14
|
+
class ChainPanTro2
|
15
|
+
KLASS = "ChainPanTro2"
|
16
|
+
KLASS_S = "chainPanTro2"
|
17
17
|
|
18
|
-
|
19
|
-
KLASS_S = KLASS[0..0].downcase + KLASS[1..-1]
|
20
|
-
|
21
|
-
Bio::Ucsc::GalGal3::CHROMS.each do |chr|
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
22
19
|
class_eval %!
|
23
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
24
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -9,16 +9,13 @@
|
|
9
9
|
|
10
10
|
module Bio
|
11
11
|
module Ucsc
|
12
|
-
module
|
12
|
+
module Rn4
|
13
13
|
|
14
|
-
class
|
15
|
-
|
16
|
-
|
14
|
+
class ChainPanTro2Link
|
15
|
+
KLASS = "ChainPanTro2Link"
|
16
|
+
KLASS_S = "chainPanTro2Link"
|
17
17
|
|
18
|
-
|
19
|
-
KLASS_S = KLASS[0..0].downcase + KLASS[1..-1]
|
20
|
-
|
21
|
-
Bio::Ucsc::GalGal3::CHROMS.each do |chr|
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
22
19
|
class_eval %!
|
23
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
24
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -74,6 +71,7 @@ AND (tEnd BETWEEN :zstart AND :zend))
|
|
74
71
|
|
75
72
|
def self.find_all_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
76
73
|
chrom = interval.chrom[0..0].upcase + interval.chrom[1..-1]
|
74
|
+
|
77
75
|
chr_klass = self.const_get("#{chrom}_#{KLASS}")
|
78
76
|
chr_klass.__send__(:find_all_by_interval, interval, opt)
|
79
77
|
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# Copyright::
|
2
|
+
# Copyright (C) 2011 MISHIMA, Hiroyuki <missy at be.to / hmishima at nagasaki-u.ac.jp>
|
3
|
+
# License:: The Ruby licence (Ryby's / GPLv2 dual)
|
4
|
+
#
|
5
|
+
# In the hg18 database, this table is actually separated
|
6
|
+
# into "chr1_*", "chr2_*", etc. This class dynamically
|
7
|
+
# define *::Chr1_*, *::Chr2_*, etc. The
|
8
|
+
# Rmsk.find_by_interval calls an appropreate class automatically.
|
9
|
+
|
10
|
+
module Bio
|
11
|
+
module Ucsc
|
12
|
+
module Rn4
|
13
|
+
|
14
|
+
class ChainRheMac2
|
15
|
+
KLASS = "ChainRheMac2"
|
16
|
+
KLASS_S = "chainRheMac2"
|
17
|
+
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
19
|
+
class_eval %!
|
20
|
+
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
21
|
+
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
22
|
+
self.primary_key = nil
|
23
|
+
self.inheritance_column = nil
|
24
|
+
|
25
|
+
def self.find_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
26
|
+
find_first_or_all_by_interval(interval, :first, opt)
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.find_all_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
30
|
+
find_first_or_all_by_interval(interval, :all, opt)
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.find_first_or_all_by_interval(interval, first_all, opt); interval = Bio::Ucsc::Gi.wrap(interval)
|
34
|
+
zstart = interval.zero_start
|
35
|
+
zend = interval.zero_end
|
36
|
+
if opt[:partial] == true
|
37
|
+
where = <<-SQL
|
38
|
+
tName = :chrom
|
39
|
+
AND bin in (:bins)
|
40
|
+
AND ((tStart BETWEEN :zstart AND :zend)
|
41
|
+
OR (tEnd BETWEEN :zstart AND :zend)
|
42
|
+
OR (tStart <= :zstart AND tEnd >= :zend))
|
43
|
+
SQL
|
44
|
+
else
|
45
|
+
where = <<-SQL
|
46
|
+
tName = :chrom
|
47
|
+
AND bin in (:bins)
|
48
|
+
AND ((tStart BETWEEN :zstart AND :zend)
|
49
|
+
AND (tEnd BETWEEN :zstart AND :zend))
|
50
|
+
SQL
|
51
|
+
end
|
52
|
+
cond = {
|
53
|
+
:chrom => interval.chrom,
|
54
|
+
:bins => Bio::Ucsc::UcscBin.bin_all(zstart, zend),
|
55
|
+
:zstart => zstart,
|
56
|
+
:zend => zend,
|
57
|
+
}
|
58
|
+
self.find(first_all,
|
59
|
+
{ :select => "*",
|
60
|
+
:conditions => [where, cond], })
|
61
|
+
end
|
62
|
+
end
|
63
|
+
!
|
64
|
+
end # each chromosome
|
65
|
+
|
66
|
+
def self.find_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
67
|
+
chrom = interval.chrom[0..0].upcase + interval.chrom[1..-1]
|
68
|
+
chr_klass = self.const_get("#{chrom}_#{KLASS}")
|
69
|
+
chr_klass.__send__(:find_by_interval, interval, opt)
|
70
|
+
end
|
71
|
+
|
72
|
+
def self.find_all_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
73
|
+
chrom = interval.chrom[0..0].upcase + interval.chrom[1..-1]
|
74
|
+
chr_klass = self.const_get("#{chrom}_#{KLASS}")
|
75
|
+
chr_klass.__send__(:find_all_by_interval, interval, opt)
|
76
|
+
end
|
77
|
+
end # class
|
78
|
+
|
79
|
+
end # module Hg18
|
80
|
+
end # module Ucsc
|
81
|
+
end # module Bio
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# Copyright::
|
2
|
+
# Copyright (C) 2011 MISHIMA, Hiroyuki <missy at be.to / hmishima at nagasaki-u.ac.jp>
|
3
|
+
# License:: The Ruby licence (Ryby's / GPLv2 dual)
|
4
|
+
#
|
5
|
+
# In the hg18 database, this table is actually separated
|
6
|
+
# into "chr1_*", "chr2_*", etc. This class dynamically
|
7
|
+
# define *::Chr1_*, *::Chr2_*, etc. The
|
8
|
+
# Rmsk.find_by_interval calls an appropreate class automatically.
|
9
|
+
|
10
|
+
module Bio
|
11
|
+
module Ucsc
|
12
|
+
module Rn4
|
13
|
+
|
14
|
+
class ChainRheMac2Link
|
15
|
+
KLASS = "ChainRheMac2Link"
|
16
|
+
KLASS_S = "chainRheMac2Link"
|
17
|
+
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
19
|
+
class_eval %!
|
20
|
+
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
21
|
+
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
22
|
+
self.primary_key = nil
|
23
|
+
self.inheritance_column = nil
|
24
|
+
|
25
|
+
def self.find_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
26
|
+
find_first_or_all_by_interval(interval, :first, opt)
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.find_all_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
30
|
+
find_first_or_all_by_interval(interval, :all, opt)
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.find_first_or_all_by_interval(interval, first_all, opt); interval = Bio::Ucsc::Gi.wrap(interval)
|
34
|
+
zstart = interval.zero_start
|
35
|
+
zend = interval.zero_end
|
36
|
+
if opt[:partial] == true
|
37
|
+
where = <<-SQL
|
38
|
+
tName = :chrom
|
39
|
+
AND bin in (:bins)
|
40
|
+
AND ((tStart BETWEEN :zstart AND :zend)
|
41
|
+
OR (tEnd BETWEEN :zstart AND :zend)
|
42
|
+
OR (tStart <= :zstart AND tEnd >= :zend))
|
43
|
+
SQL
|
44
|
+
else
|
45
|
+
where = <<-SQL
|
46
|
+
tName = :chrom
|
47
|
+
AND bin in (:bins)
|
48
|
+
AND ((tStart BETWEEN :zstart AND :zend)
|
49
|
+
AND (tEnd BETWEEN :zstart AND :zend))
|
50
|
+
SQL
|
51
|
+
end
|
52
|
+
cond = {
|
53
|
+
:chrom => interval.chrom,
|
54
|
+
:bins => Bio::Ucsc::UcscBin.bin_all(zstart, zend),
|
55
|
+
:zstart => zstart,
|
56
|
+
:zend => zend,
|
57
|
+
}
|
58
|
+
self.find(first_all,
|
59
|
+
{ :select => "*",
|
60
|
+
:conditions => [where, cond], })
|
61
|
+
end
|
62
|
+
end
|
63
|
+
!
|
64
|
+
end # each chromosome
|
65
|
+
|
66
|
+
def self.find_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
67
|
+
chrom = interval.chrom[0..0].upcase + interval.chrom[1..-1]
|
68
|
+
chr_klass = self.const_get("#{chrom}_#{KLASS}")
|
69
|
+
chr_klass.__send__(:find_by_interval, interval, opt)
|
70
|
+
end
|
71
|
+
|
72
|
+
def self.find_all_by_interval(interval, opt = {:partial => true}); interval = Bio::Ucsc::Gi.wrap(interval)
|
73
|
+
chrom = interval.chrom[0..0].upcase + interval.chrom[1..-1]
|
74
|
+
chr_klass = self.const_get("#{chrom}_#{KLASS}")
|
75
|
+
chr_klass.__send__(:find_all_by_interval, interval, opt)
|
76
|
+
end
|
77
|
+
end # class
|
78
|
+
|
79
|
+
end # module Hg18
|
80
|
+
end # module Ucsc
|
81
|
+
end # module Bio
|
@@ -9,16 +9,13 @@
|
|
9
9
|
|
10
10
|
module Bio
|
11
11
|
module Ucsc
|
12
|
-
module
|
12
|
+
module Rn4
|
13
13
|
|
14
14
|
class Est
|
15
|
-
include DBConnector
|
16
|
-
DBConnection.database "galGal3"
|
17
|
-
|
18
15
|
KLASS = "Est"
|
19
16
|
KLASS_S = "est"
|
20
17
|
|
21
|
-
Bio::Ucsc::
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
22
19
|
class_eval %!
|
23
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
24
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -9,16 +9,13 @@
|
|
9
9
|
|
10
10
|
module Bio
|
11
11
|
module Ucsc
|
12
|
-
module
|
12
|
+
module Rn4
|
13
13
|
|
14
14
|
class Gap
|
15
|
-
include DBConnector
|
16
|
-
DBConnection.database "galGal3"
|
17
|
-
|
18
15
|
KLASS = "Gap"
|
19
16
|
KLASS_S = "gap"
|
20
17
|
|
21
|
-
Bio::Ucsc::
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
22
19
|
class_eval %!
|
23
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
24
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -9,16 +9,13 @@
|
|
9
9
|
|
10
10
|
module Bio
|
11
11
|
module Ucsc
|
12
|
-
module
|
12
|
+
module Rn4
|
13
13
|
|
14
14
|
class Gold
|
15
|
-
include DBConnector
|
16
|
-
DBConnection.database "galGal3"
|
17
|
-
|
18
15
|
KLASS = "Gold"
|
19
16
|
KLASS_S = "gold"
|
20
17
|
|
21
|
-
Bio::Ucsc::
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
22
19
|
class_eval %!
|
23
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
24
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -9,16 +9,13 @@
|
|
9
9
|
|
10
10
|
module Bio
|
11
11
|
module Ucsc
|
12
|
-
module
|
12
|
+
module Rn4
|
13
13
|
|
14
14
|
class IntronEst
|
15
|
-
include DBConnector
|
16
|
-
DBConnection.database "galGal3"
|
17
|
-
|
18
15
|
KLASS = "IntronEst"
|
19
16
|
KLASS_S = "intronEst"
|
20
17
|
|
21
|
-
Bio::Ucsc::
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
22
19
|
class_eval %!
|
23
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
24
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -9,16 +9,13 @@
|
|
9
9
|
|
10
10
|
module Bio
|
11
11
|
module Ucsc
|
12
|
-
module
|
12
|
+
module Rn4
|
13
13
|
|
14
14
|
class Mrna
|
15
|
-
include DBConnector
|
16
|
-
DBConnection.database "galGal3"
|
17
|
-
|
18
15
|
KLASS = "Mrna"
|
19
16
|
KLASS_S = "mrna"
|
20
17
|
|
21
|
-
Bio::Ucsc::
|
18
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
22
19
|
class_eval %!
|
23
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
24
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -10,13 +10,10 @@
|
|
10
10
|
|
11
11
|
module Bio
|
12
12
|
module Ucsc
|
13
|
-
module
|
13
|
+
module Rn4
|
14
14
|
|
15
15
|
class Rmsk
|
16
|
-
|
17
|
-
DBConnection.database "galGal3"
|
18
|
-
|
19
|
-
Bio::Ucsc::GalGal3::CHROMS.each do |chr|
|
16
|
+
Bio::Ucsc::Rn4::CHROMS.each do |chr|
|
20
17
|
class_eval %!
|
21
18
|
class #{chr[0..0].upcase + chr[1..-1]}_Rmsk < DBConnection
|
22
19
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_rmsk"
|
@@ -13,7 +13,7 @@ module Bio
|
|
13
13
|
KLASS = "ChainGalGal3"
|
14
14
|
KLASS_S = KLASS[0..0].downcase + KLASS[1..-1]
|
15
15
|
|
16
|
-
Bio::Ucsc::
|
16
|
+
Bio::Ucsc::TaeGut1::CHROMS.each do |chr|
|
17
17
|
class_eval %!
|
18
18
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
19
19
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
@@ -15,7 +15,7 @@ module Bio
|
|
15
15
|
KLASS = "ChainGalGal3Link"
|
16
16
|
KLASS_S = KLASS[0..0].downcase + KLASS[1..-1]
|
17
17
|
|
18
|
-
Bio::Ucsc::
|
18
|
+
Bio::Ucsc::TaeGut1::CHROMS.each do |chr|
|
19
19
|
class_eval %!
|
20
20
|
class #{chr[0..0].upcase + chr[1..-1]}_#{KLASS} < DBConnection
|
21
21
|
self.table_name = "#{chr[0..0].downcase + chr[1..-1]}_#{KLASS_S}"
|
data/lib/bio-ucsc/visigene.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bio-ucsc-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,33 +10,33 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2013-08-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activerecord
|
17
|
-
requirement: &
|
17
|
+
requirement: &258436740 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
|
-
- -
|
20
|
+
- - ~>
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 3.0.7
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *258436740
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: activesupport
|
28
|
-
requirement: &
|
28
|
+
requirement: &258436120 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 3.0.7
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *258436120
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: mysql
|
39
|
-
requirement: &
|
39
|
+
requirement: &258435560 !ruby/object:Gem::Requirement
|
40
40
|
none: false
|
41
41
|
requirements:
|
42
42
|
- - ~>
|
@@ -44,10 +44,10 @@ dependencies:
|
|
44
44
|
version: 2.8.1
|
45
45
|
type: :runtime
|
46
46
|
prerelease: false
|
47
|
-
version_requirements: *
|
47
|
+
version_requirements: *258435560
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: bio-genomic-interval
|
50
|
-
requirement: &
|
50
|
+
requirement: &258451220 !ruby/object:Gem::Requirement
|
51
51
|
none: false
|
52
52
|
requirements:
|
53
53
|
- - ! '>='
|
@@ -55,10 +55,10 @@ dependencies:
|
|
55
55
|
version: 0.1.2
|
56
56
|
type: :runtime
|
57
57
|
prerelease: false
|
58
|
-
version_requirements: *
|
58
|
+
version_requirements: *258451220
|
59
59
|
- !ruby/object:Gem::Dependency
|
60
60
|
name: safe_attributes
|
61
|
-
requirement: &
|
61
|
+
requirement: &258450100 !ruby/object:Gem::Requirement
|
62
62
|
none: false
|
63
63
|
requirements:
|
64
64
|
- - ! '>='
|
@@ -66,21 +66,21 @@ dependencies:
|
|
66
66
|
version: 1.0.8
|
67
67
|
type: :runtime
|
68
68
|
prerelease: false
|
69
|
-
version_requirements: *
|
69
|
+
version_requirements: *258450100
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: rake
|
72
|
-
requirement: &
|
72
|
+
requirement: &258449180 !ruby/object:Gem::Requirement
|
73
73
|
none: false
|
74
74
|
requirements:
|
75
75
|
- - ~>
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
77
|
+
version: 10.1.0
|
78
78
|
type: :development
|
79
79
|
prerelease: false
|
80
|
-
version_requirements: *
|
80
|
+
version_requirements: *258449180
|
81
81
|
- !ruby/object:Gem::Dependency
|
82
82
|
name: rspec
|
83
|
-
requirement: &
|
83
|
+
requirement: &258448320 !ruby/object:Gem::Requirement
|
84
84
|
none: false
|
85
85
|
requirements:
|
86
86
|
- - ~>
|
@@ -88,21 +88,21 @@ dependencies:
|
|
88
88
|
version: 2.9.0
|
89
89
|
type: :development
|
90
90
|
prerelease: false
|
91
|
-
version_requirements: *
|
91
|
+
version_requirements: *258448320
|
92
92
|
- !ruby/object:Gem::Dependency
|
93
93
|
name: bundler
|
94
|
-
requirement: &
|
94
|
+
requirement: &258447480 !ruby/object:Gem::Requirement
|
95
95
|
none: false
|
96
96
|
requirements:
|
97
97
|
- - ~>
|
98
98
|
- !ruby/object:Gem::Version
|
99
|
-
version: 1.
|
99
|
+
version: 1.3.5
|
100
100
|
type: :development
|
101
101
|
prerelease: false
|
102
|
-
version_requirements: *
|
102
|
+
version_requirements: *258447480
|
103
103
|
- !ruby/object:Gem::Dependency
|
104
104
|
name: jeweler
|
105
|
-
requirement: &
|
105
|
+
requirement: &258446680 !ruby/object:Gem::Requirement
|
106
106
|
none: false
|
107
107
|
requirements:
|
108
108
|
- - ~>
|
@@ -110,10 +110,10 @@ dependencies:
|
|
110
110
|
version: 1.8.3
|
111
111
|
type: :development
|
112
112
|
prerelease: false
|
113
|
-
version_requirements: *
|
113
|
+
version_requirements: *258446680
|
114
114
|
- !ruby/object:Gem::Dependency
|
115
115
|
name: bio
|
116
|
-
requirement: &
|
116
|
+
requirement: &258445800 !ruby/object:Gem::Requirement
|
117
117
|
none: false
|
118
118
|
requirements:
|
119
119
|
- - ! '>='
|
@@ -121,10 +121,10 @@ dependencies:
|
|
121
121
|
version: 1.4.1
|
122
122
|
type: :development
|
123
123
|
prerelease: false
|
124
|
-
version_requirements: *
|
124
|
+
version_requirements: *258445800
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: rdoc
|
127
|
-
requirement: &
|
127
|
+
requirement: &258444980 !ruby/object:Gem::Requirement
|
128
128
|
none: false
|
129
129
|
requirements:
|
130
130
|
- - ! '>='
|
@@ -132,7 +132,7 @@ dependencies:
|
|
132
132
|
version: 3.9.1
|
133
133
|
type: :development
|
134
134
|
prerelease: false
|
135
|
-
version_requirements: *
|
135
|
+
version_requirements: *258444980
|
136
136
|
description: ! 'Ruby UCSC API: accessing the UCSC Genome Database using Ruby'
|
137
137
|
email: missy@be.to
|
138
138
|
executables: []
|
@@ -333,37 +333,7 @@ files:
|
|
333
333
|
- lib/bio-ucsc/fr2/intronest.rb
|
334
334
|
- lib/bio-ucsc/fr2/mrna.rb
|
335
335
|
- lib/bio-ucsc/fr2/rmsk.rb
|
336
|
-
- lib/bio-ucsc/
|
337
|
-
- lib/bio-ucsc/galgal3/chainanocar1.rb
|
338
|
-
- lib/bio-ucsc/galgal3/chainanocar1link.rb
|
339
|
-
- lib/bio-ucsc/galgal3/chainbraflo1.rb
|
340
|
-
- lib/bio-ucsc/galgal3/chainbraflo1link.rb
|
341
|
-
- lib/bio-ucsc/galgal3/chaincavpor3.rb
|
342
|
-
- lib/bio-ucsc/galgal3/chaincavpor3link.rb
|
343
|
-
- lib/bio-ucsc/galgal3/chaindanrer4.rb
|
344
|
-
- lib/bio-ucsc/galgal3/chaindanrer4link.rb
|
345
|
-
- lib/bio-ucsc/galgal3/chainfr2.rb
|
346
|
-
- lib/bio-ucsc/galgal3/chainfr2link.rb
|
347
|
-
- lib/bio-ucsc/galgal3/chaingasacu1.rb
|
348
|
-
- lib/bio-ucsc/galgal3/chaingasacu1link.rb
|
349
|
-
- lib/bio-ucsc/galgal3/chainmm9.rb
|
350
|
-
- lib/bio-ucsc/galgal3/chainmm9link.rb
|
351
|
-
- lib/bio-ucsc/galgal3/chainornana1.rb
|
352
|
-
- lib/bio-ucsc/galgal3/chainornana1link.rb
|
353
|
-
- lib/bio-ucsc/galgal3/chainpetmar1.rb
|
354
|
-
- lib/bio-ucsc/galgal3/chainpetmar1link.rb
|
355
|
-
- lib/bio-ucsc/galgal3/chainrn4.rb
|
356
|
-
- lib/bio-ucsc/galgal3/chainrn4link.rb
|
357
|
-
- lib/bio-ucsc/galgal3/chaintaegut1.rb
|
358
|
-
- lib/bio-ucsc/galgal3/chaintaegut1link.rb
|
359
|
-
- lib/bio-ucsc/galgal3/chainxentro2.rb
|
360
|
-
- lib/bio-ucsc/galgal3/chainxentro2link.rb
|
361
|
-
- lib/bio-ucsc/galgal3/est.rb
|
362
|
-
- lib/bio-ucsc/galgal3/gap.rb
|
363
|
-
- lib/bio-ucsc/galgal3/gold.rb
|
364
|
-
- lib/bio-ucsc/galgal3/intronest.rb
|
365
|
-
- lib/bio-ucsc/galgal3/mrna.rb
|
366
|
-
- lib/bio-ucsc/galgal3/rmsk.rb
|
336
|
+
- lib/bio-ucsc/galgal4.rb
|
367
337
|
- lib/bio-ucsc/gasacu1.rb
|
368
338
|
- lib/bio-ucsc/gasacu1/chainanocar1.rb
|
369
339
|
- lib/bio-ucsc/gasacu1/chainanocar1link.rb
|
@@ -521,6 +491,31 @@ files:
|
|
521
491
|
- lib/bio-ucsc/rn4/intronest.rb
|
522
492
|
- lib/bio-ucsc/rn4/mrna.rb
|
523
493
|
- lib/bio-ucsc/rn4/rmsk.rb
|
494
|
+
- lib/bio-ucsc/rn5.rb
|
495
|
+
- lib/bio-ucsc/rn5/chaincanfam2.rb
|
496
|
+
- lib/bio-ucsc/rn5/chaincanfam2link.rb
|
497
|
+
- lib/bio-ucsc/rn5/chaincavpor3.rb
|
498
|
+
- lib/bio-ucsc/rn5/chaincavpor3link.rb
|
499
|
+
- lib/bio-ucsc/rn5/chaindanrer4.rb
|
500
|
+
- lib/bio-ucsc/rn5/chaindanrer4link.rb
|
501
|
+
- lib/bio-ucsc/rn5/chainequcab1.rb
|
502
|
+
- lib/bio-ucsc/rn5/chainequcab1link.rb
|
503
|
+
- lib/bio-ucsc/rn5/chaingalgal3.rb
|
504
|
+
- lib/bio-ucsc/rn5/chaingalgal3link.rb
|
505
|
+
- lib/bio-ucsc/rn5/chainmm9.rb
|
506
|
+
- lib/bio-ucsc/rn5/chainmm9link.rb
|
507
|
+
- lib/bio-ucsc/rn5/chainmondom4.rb
|
508
|
+
- lib/bio-ucsc/rn5/chainmondom4link.rb
|
509
|
+
- lib/bio-ucsc/rn5/chainpantro2.rb
|
510
|
+
- lib/bio-ucsc/rn5/chainpantro2link.rb
|
511
|
+
- lib/bio-ucsc/rn5/chainrhemac2.rb
|
512
|
+
- lib/bio-ucsc/rn5/chainrhemac2link.rb
|
513
|
+
- lib/bio-ucsc/rn5/est.rb
|
514
|
+
- lib/bio-ucsc/rn5/gap.rb
|
515
|
+
- lib/bio-ucsc/rn5/gold.rb
|
516
|
+
- lib/bio-ucsc/rn5/intronest.rb
|
517
|
+
- lib/bio-ucsc/rn5/mrna.rb
|
518
|
+
- lib/bio-ucsc/rn5/rmsk.rb
|
524
519
|
- lib/bio-ucsc/saccer2.rb
|
525
520
|
- lib/bio-ucsc/saccer2/est.rb
|
526
521
|
- lib/bio-ucsc/saccer2/gap.rb
|
@@ -575,7 +570,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
575
570
|
version: '0'
|
576
571
|
segments:
|
577
572
|
- 0
|
578
|
-
hash:
|
573
|
+
hash: 4260927560665571568
|
579
574
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
580
575
|
none: false
|
581
576
|
requirements:
|