pubannotation_evaluator 1.0.5 → 1.1.0
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 806a1cccb5be0bc733f7deb05fe647d03816235a28bffec791aeb450a33cca46
|
4
|
+
data.tar.gz: a10d449746dd75e7923a4c08e82e1c6e8ac7310ddf9524b876c61327d88e8936
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27486eff982a8a8972a03aa42d9eeca6f7598d9bf76631ba2881251be786bde75254b02b9502701e5601a81e7b6edb052d852ef3d1f006477a213bde602b3631
|
7
|
+
data.tar.gz: 6ea8c8f982c327a86c5cfa61a51a8f5bc4d3d03edd75d407ca720bf3494ab572d4d78f86c114d87211d533cb8172984d467f9267ef75b137168510207b35e623
|
@@ -3,17 +3,17 @@ class PubannotationEvaluator
|
|
3
3
|
SOFT_MATCH_WORDS = 2
|
4
4
|
EXACT_TYPE_MATCH = 'study_type == reference_type ? 1 : 0'
|
5
5
|
|
6
|
-
def initialize(soft_match_chatacters
|
7
|
-
@soft_match_chatacters = soft_match_chatacters
|
8
|
-
@soft_match_words = soft_match_words
|
6
|
+
def initialize(soft_match_chatacters, soft_match_words, denotation_type_match, relation_type_match)
|
7
|
+
@soft_match_chatacters = soft_match_chatacters || SOFT_MATCH_CHARACTERS
|
8
|
+
@soft_match_words = soft_match_words || SOFT_MATCH_WORDS
|
9
9
|
@denotation_type_match = eval <<-HEREDOC
|
10
10
|
Proc.new do |study_type, reference_type|
|
11
|
-
#{denotation_type_match}
|
11
|
+
#{denotation_type_match || EXACT_TYPE_MATCH}
|
12
12
|
end
|
13
13
|
HEREDOC
|
14
14
|
@relation_type_match = eval <<-HEREDOC
|
15
15
|
Proc.new do |study_type, reference_type|
|
16
|
-
#{relation_type_match}
|
16
|
+
#{relation_type_match || EXACT_TYPE_MATCH}
|
17
17
|
end
|
18
18
|
HEREDOC
|
19
19
|
end
|
@@ -41,7 +41,6 @@ class PubannotationEvaluator
|
|
41
41
|
comparison_modifications.collect{|a| a.merge(type: :modification)}
|
42
42
|
|
43
43
|
docspec = {sourcedb:study_annotations[:sourcedb], sourceid:study_annotations[:sourceid]}
|
44
|
-
docspec[:divid] = study_annotations[:divid] if study_annotations.has_key?(:divid)
|
45
44
|
comparison.collect{|d| d.merge(docspec)}
|
46
45
|
end
|
47
46
|
|
@@ -71,6 +70,8 @@ class PubannotationEvaluator
|
|
71
70
|
matches = find_denotation_matches(mmatches)
|
72
71
|
false_positives = study_denotations - matches.collect{|r| r[:study]}
|
73
72
|
false_negatives = reference_denotations - matches.collect{|r| r[:reference]}
|
73
|
+
false_positives.each{|r| r.merge!(text:text[r[:span][:begin]...r[:span][:end]])}
|
74
|
+
false_negatives.each{|r| r.merge!(text:text[r[:span][:begin]...r[:span][:end]])}
|
74
75
|
comparison = matches + false_positives.collect{|s| {study:s}} + false_negatives.collect{|r| {reference:r}}
|
75
76
|
[comparison, mmatches]
|
76
77
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pubannotation_evaluator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jin-Dong Kim
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A tool to evaluate the accuracy of a set of annotations.
|
14
14
|
email: jdkim@dbcls.rois.ac.jp
|
@@ -39,8 +39,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
requirements: []
|
42
|
-
|
43
|
-
rubygems_version: 2.7.9
|
42
|
+
rubygems_version: 3.0.9
|
44
43
|
signing_key:
|
45
44
|
specification_version: 4
|
46
45
|
summary: It compares a set of annotations (study annotations) against another set
|