bio-fastqc 0.7.0 → 0.7.1
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 +4 -4
- data/VERSION +1 -1
- data/lib/bio/fastqc/semantics.rb +8 -7
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0d4fbd3c361c93c94e6717442b32de0a0ce37d2
|
|
4
|
+
data.tar.gz: e2386b70ef8caede072672cf128398ac9b55e89e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93075f6f62f532e039becfb755938b6ef8d963e96df94de6c6c487c635f39ecaa931638ce709ad1b52ddc77251626c64812af9704d54d0856f763ff770c33fc6
|
|
7
|
+
data.tar.gz: 1b01bdfe1c3773ddde62428b0ef979376b4d990ae6ab6a141b4dc85b45f9af983fe6b5356af2a35bad0f36d7cd2eb471b17cb0c8da8290e69ba28c7c58e58c76
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.1
|
data/lib/bio/fastqc/semantics.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Bio
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
def rdf_version
|
|
16
|
-
"0.1.
|
|
16
|
+
"0.1.1"
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
def turtle
|
|
@@ -31,6 +31,7 @@ module Bio
|
|
|
31
31
|
"dcterms" => "http://purl.org/dc/terms/",
|
|
32
32
|
"pav" => "http://purl.org/pav/",
|
|
33
33
|
"foaf" => "http://xmlns.com/foaf/0.1/",
|
|
34
|
+
"sos" => "http://purl.jp/bio/01/quanto/ontology/sos#",
|
|
34
35
|
}
|
|
35
36
|
end
|
|
36
37
|
|
|
@@ -584,37 +585,37 @@ module Bio
|
|
|
584
585
|
object = turtle_prefixes
|
|
585
586
|
|
|
586
587
|
# definition of local ontology terms
|
|
587
|
-
|
|
588
|
+
pfx = "sos:"
|
|
588
589
|
|
|
589
590
|
# definition of class in @context
|
|
590
591
|
sos_class.each do |term|
|
|
591
592
|
object[term] = {}
|
|
592
|
-
object[term]["@id"] =
|
|
593
|
+
object[term]["@id"] = pfx + term
|
|
593
594
|
object[term]["@type"] = "@id"
|
|
594
595
|
end
|
|
595
596
|
|
|
596
597
|
# definition of object properties in @context
|
|
597
598
|
sos_object_properties.each do |term|
|
|
598
599
|
object[term] = {}
|
|
599
|
-
object[term]["@id"] =
|
|
600
|
+
object[term]["@id"] = pfx + term
|
|
600
601
|
object[term]["@type"] = "@id"
|
|
601
602
|
end
|
|
602
603
|
|
|
603
604
|
sos_data_properties_string.each do |term|
|
|
604
605
|
object[term] = {}
|
|
605
|
-
object[term]["@id"] =
|
|
606
|
+
object[term]["@id"] = pfx + term
|
|
606
607
|
object[term]["@type"] = "http://www.w3.org/2001/XMLSchema#string"
|
|
607
608
|
end
|
|
608
609
|
|
|
609
610
|
sos_data_properties_integer.each do |term|
|
|
610
611
|
object[term] = {}
|
|
611
|
-
object[term]["@id"] =
|
|
612
|
+
object[term]["@id"] = pfx + term
|
|
612
613
|
object[term]["@type"] = "http://www.w3.org/2001/XMLSchema#integer"
|
|
613
614
|
end
|
|
614
615
|
|
|
615
616
|
sos_data_properties_float.each do |term|
|
|
616
617
|
object[term] = {}
|
|
617
|
-
object[term]["@id"] =
|
|
618
|
+
object[term]["@id"] = pfx + term
|
|
618
619
|
object[term]["@type"] = "http://www.w3.org/2001/XMLSchema#float"
|
|
619
620
|
end
|
|
620
621
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bio-fastqc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tazro Inutano Ohta
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|