bio-fastqc 0.10.0 → 0.10.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 +3 -2
- 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: b1f1b92ff2340ff76998b20b155410804a4c1740
|
|
4
|
+
data.tar.gz: 35dee0ef2873b10b166fcf878b14c0a139dae4bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b432d15138c6ac0efa04a767dfaa98a4a75647591728509e2e18d15499eb83dc38e7a7f2fed6a7208a0c0f00e6e7d8047563fab07103e03ebd98d77fc8059f79
|
|
7
|
+
data.tar.gz: 10a3d4681a12f52e63bc428f29c4d5be957bb8402c0ed2489358a848fb85c452a9ccf3666d29f7a411a0754fa141cbaedb39f68095e3e95286b914c57156c626
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.10.
|
|
1
|
+
0.10.1
|
data/lib/bio/fastqc/semantics.rb
CHANGED
|
@@ -6,8 +6,9 @@ require 'rdf/turtle'
|
|
|
6
6
|
module Bio
|
|
7
7
|
module FastQC
|
|
8
8
|
class Semantics
|
|
9
|
-
def initialize(fastqc_object, id: nil, tiny: true)
|
|
9
|
+
def initialize(fastqc_object, id: nil, runid: nil, tiny: true)
|
|
10
10
|
@id = id
|
|
11
|
+
@runid = runid
|
|
11
12
|
@tiny = tiny
|
|
12
13
|
@fastqc_object = fastqc_object
|
|
13
14
|
end
|
|
@@ -52,7 +53,7 @@ module Bio
|
|
|
52
53
|
end
|
|
53
54
|
|
|
54
55
|
def sra_identifier
|
|
55
|
-
@fastqc_object[:filename].split(".")[0].split("_")[0]
|
|
56
|
+
@runid ? @runid : @fastqc_object[:filename].split(".")[0].split("_")[0]
|
|
56
57
|
end
|
|
57
58
|
|
|
58
59
|
def identifier_literal
|
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.10.
|
|
4
|
+
version: 0.10.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: 2017-12-
|
|
11
|
+
date: 2017-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|