bio-fastqc 0.10.1 → 0.10.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b1f1b92ff2340ff76998b20b155410804a4c1740
4
- data.tar.gz: 35dee0ef2873b10b166fcf878b14c0a139dae4bd
3
+ metadata.gz: 1eee6c27776704bedef5c14aa93e18ec3eddad23
4
+ data.tar.gz: e958ef162007943b360252f2f1c7a1efcbdbdc67
5
5
  SHA512:
6
- metadata.gz: b432d15138c6ac0efa04a767dfaa98a4a75647591728509e2e18d15499eb83dc38e7a7f2fed6a7208a0c0f00e6e7d8047563fab07103e03ebd98d77fc8059f79
7
- data.tar.gz: 10a3d4681a12f52e63bc428f29c4d5be957bb8402c0ed2489358a848fb85c452a9ccf3666d29f7a411a0754fa141cbaedb39f68095e3e95286b914c57156c626
6
+ metadata.gz: 9823bbe7c6e51c56bd5c25082e7c8caa6f461c7860b8cc3654947e9623f7f0da4f678891e542be760164b409aa6be18f9b9b7d272086d2d5a62d27ebd3414a7e
7
+ data.tar.gz: 1e6bc1f90e95440b084624d226e67b120d1c0b0a549b24a5377bc0f8c52aedae9318174d14df55a300b3d40a3fbd5f00ce4483a331731245457d2cbddf6dc6af
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.10.1
1
+ 0.10.2
@@ -3,8 +3,9 @@
3
3
  module Bio
4
4
  module FastQC
5
5
  class Converter
6
- def initialize(fastqc_object, id: nil)
6
+ def initialize(fastqc_object, id: nil, runid: nil)
7
7
  @id = id
8
+ @runid = runid
8
9
  @fastqc_object = fastqc_object
9
10
  end
10
11
 
@@ -31,12 +32,12 @@ module Bio
31
32
  end
32
33
 
33
34
  def to_jsonld
34
- json_ld_object = Semantics.new(@fastqc_object, id: @id).json_ld_object
35
+ json_ld_object = Semantics.new(@fastqc_object, id: @id, runid: @runid).json_ld_object
35
36
  JSON.dump(json_ld_object)
36
37
  end
37
38
 
38
39
  def to_turtle
39
- Semantics.new(@fastqc_object, id: @id).turtle
40
+ Semantics.new(@fastqc_object, id: @id, runid: @runid).turtle
40
41
  end
41
42
 
42
43
  def to_ttl
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bio-fastqc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tazro Inutano Ohta