genevalidator 1.6.10 → 1.6.11
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/lib/genevalidator/validation_maker_qi.rb +14 -8
- data/lib/genevalidator/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7c1ad55ab9a31a54b755f73eba90c6c8d0a71ac
|
|
4
|
+
data.tar.gz: ab0a311e92cdfcfbeaddbfda72aa254f623acd80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 338f1e866b2ada764e5974699a362461df3fb244c08464b26ed5d7d1b8659ac9559ef0dc7d50e5fd2ebc4ae5eae376cbc2e32dbe1753a333b2cba1965a9ded07
|
|
7
|
+
data.tar.gz: 3aeab68cb1f421a2053f0d388a452aa9fb385880d7a3e937bfd6e66ee5f0891a34e81b36d88382b0089f7e6123e2b1fa4b56ce733768bae697e87ea9209e5791
|
|
@@ -25,9 +25,15 @@ module GeneValidator
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def explain
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
if @splice_sites == -100
|
|
29
|
+
"#{@exons}% of exons match an EST/mRNA-seq alignment." \
|
|
30
|
+
" No splice sites were identified and as such cannot be confirmed by" \
|
|
31
|
+
" an EST/mRNA-seq alignment."
|
|
32
|
+
else
|
|
33
|
+
"#{@exons}% of exons match an EST/mRNA-seq alignment and" \
|
|
34
|
+
" #{@splice_sites}% of splice sites are confirmed by EST/mRNA-seq" \
|
|
35
|
+
" alignment."
|
|
36
|
+
end
|
|
31
37
|
end
|
|
32
38
|
|
|
33
39
|
def conclude
|
|
@@ -98,11 +104,11 @@ module GeneValidator
|
|
|
98
104
|
@validation_report = ValidationReport.new('No MAKER Quality Index',
|
|
99
105
|
:warning, @short_header,
|
|
100
106
|
@header, @description)
|
|
101
|
-
rescue
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
107
|
+
# rescue
|
|
108
|
+
# @validation_report = ValidationReport.new('Unexpected error', :error,
|
|
109
|
+
# @short_header, @header,
|
|
110
|
+
# @description)
|
|
111
|
+
# @validation_report.errors.push 'Unexpected Error'
|
|
106
112
|
end
|
|
107
113
|
end
|
|
108
114
|
end
|