phucdev commited on
Commit
842ac8b
1 Parent(s): ce004b5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +125 -0
README.md CHANGED
@@ -54,4 +54,129 @@ configs:
54
  data_files:
55
  - split: train
56
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
57
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  data_files:
55
  - split: train
56
  path: data/train-*
57
+ license: cc-by-2.0
58
+ task_categories:
59
+ - text-classification
60
+ language:
61
+ - en
62
+ tags:
63
+ - biology
64
+ - cancer
65
+ - gene
66
+ pretty_name: CoMAGC
67
+ size_categories:
68
+ - n<1K
69
  ---
70
+ # Dataset Card for CoMAGC
71
+
72
+ ## Dataset Description
73
+
74
+ - **Website:** http://biopathway.org/CoMAGC/
75
+ - **Paper:** [CoMAGC: a corpus with multi-faceted annotations of gene-cancer relations](https://bmcbioinformatics.biomedcentral.com/articles/10.1186/1471-2105-14-323)
76
+
77
+ #### Dataset Summary
78
+
79
+ <!-- Provide a quick summary of the dataset. -->
80
+ **CoMAGC Dataset Summary:**
81
+
82
+ CoMAGC is a corpus with multi-faceted annotations of gene-cancer relations.
83
+ CoMAGC consists of 821 sentences collected from MEDLINE abstracts, and the sentences are about three different types of cancers, or prostate, breast and ovarian cancers.
84
+ In CoMAGC, a piece of annotation is composed of four semantically orthogonal concepts that together express 1) how a gene changes, 2) how a cancer changes and 3) the causality between the gene and the cancer.
85
+ The four concepts that constitute the multi-faceted annotation scheme are Change in Gene Expression (CGE), Change in Cell State (CCS), Proposition Type (PT) and Initial Gene Expression level (IGE).
86
+
87
+ - CGE captures whether the expression level of a gene is `increased` or `decreased` in a cell
88
+ - CCS captures the way how the cell changes together with a gene expression level change
89
+ - `normalTOnormal`: The cell or tissue remains as normal after the change in the gene’s expression level.
90
+ - `normalTOcancer`: The cell or tissue acquires cancerous properties as the gene expression level changes; some cancerous properties are strengthened.
91
+ - `cancerTOcancer`: There's no change in the cancerous properties of the cell or tissue despite the change in the expression level of the gene.
92
+ - `cancerTOnormal`: The cell or tissue loses some cancerous properties as the gene expression level changes; some cancerous properties are weakened.
93
+ - `unidentifiable`: The information about whether or not the gene expression level change accompanies cell or tissue state change is not provided.
94
+ - PT captures whether the causality between the gene expression change and the cell property change
95
+ - `observation`: Cell or tissue change accompanied by the gene expression level change is reported as observed but the causality between the two is not claimed. |
96
+ - `causality`: The causality between the gene expression level change and the cell or tissue change is claimed.
97
+ - IGE captures the initial expression level of a gene before the change in its expression level
98
+ - `up-regulated`: The initial gene expression level is higher than the expression level of the gene in the normal state.
99
+ - `down-regulated`: The initial gene expression level is lower than the expression level of the gene in the normal state.
100
+ - `unchanged`: The initial gene expression level is comparable to the expression level of the gene in the normal state.
101
+ - `unidentifiable`: The information about the initial gene expression level is not provided. |
102
+
103
+ The original dataset in XML format is available here: http://biopathway.org/CoMAGC/
104
+
105
+ We converted the dataset to a JSONL format.
106
+
107
+ ### Languages
108
+ The language in the dataset is English.
109
+ ## Dataset Structure
110
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
111
+ ### Dataset Instances
112
+ An example of 'train' looks as follows:
113
+ ```json
114
+ {
115
+ "pmid": "11722842.s0",
116
+ "sentence": "Isolation and characterization of the major form of human MUC18 cDNA gene and correlation of MUC18 over-expression in prostate cancer cell lines and tissues with malignant progression.",
117
+ "cancer_type": "prostate",
118
+ "gene": {
119
+ "name": "MUC18",
120
+ "pos": [93, 97]
121
+ },
122
+ "cancer": {
123
+ "name": "prostate cancer",
124
+ "pos": [118, 132]
125
+ },
126
+ "CGE": "increased",
127
+ "CCS": "normalTOcancer",
128
+ "PT": "observation",
129
+ "IGE": "unchanged",
130
+ "expression_change_keyword_1": {
131
+ "name": "over-expression",
132
+ "pos": [99, 113],
133
+ "type": "Gene_expression"
134
+ },
135
+ "expression_change_keyword_2": {
136
+ "name": "over-expression",
137
+ "pos": [99, 113],
138
+ "type": "Positive_regulation"
139
+ }
140
+ }
141
+ ```
142
+ ### Data Fields
143
+ - `pmid`: the id of this sentence, a `string` feature.
144
+ - `sentence`: the text of this sentence, a `string` feature.
145
+ - `cancer_type`: the type of cancer in this sentence, a `string` feature.
146
+ - `gene`: gene entity
147
+ - `pos`: character offsets of the gene entity, a list of `int32` features.
148
+ - `name`: gene entity text, a `string` feature.
149
+ - `cancer`: cancer entity
150
+ - `pos`: character offsets of the cancer entity, a list of `int32` features.
151
+ - `name`: cancer entity text, a `string` feature.
152
+ - `CGE`: change in gene expression, a `string` feature.
153
+ - `CCS`: change in cell state, a `string` feature.
154
+ - `PT`: proposition type, a `string` feature.
155
+ - `IGE`: initial gene expression, a `string` feature.
156
+ - `expression_change_keyword_1`: a `dict`
157
+ - `name`: keyword text, a `string` feature.
158
+ - `pos`: character offsets of the keyword, a list of `int32` features.
159
+ - `type`: type of the expression change keyword, a `string` feature.
160
+ - `expression_change_keyword_2`: a `dict`
161
+ - `name`: keyword text, a `string` feature.
162
+ - `pos`: character offsets of the keyword, a list of `int32` features.
163
+ - `type`: type of the expression change keyword, a `string` feature.
164
+
165
+ ## Citation
166
+ <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
167
+ **BibTeX:**
168
+ ```
169
+ @article{lee2013comagc,
170
+ title={CoMAGC: a corpus with multi-faceted annotations of gene-cancer relations},
171
+ author={Lee, Hee-Jin and Shim, Sang-Hyung and Song, Mi-Ryoung and Lee, Hyunju and Park, Jong C},
172
+ journal={BMC bioinformatics},
173
+ volume={14},
174
+ pages={1--17},
175
+ year={2013},
176
+ publisher={Springer}
177
+ }
178
+ ```
179
+ **APA:**
180
+ - Lee, H. J., Shim, S. H., Song, M. R., Lee, H., & Park, J. C. (2013). CoMAGC: a corpus with multi-faceted annotations of gene-cancer relations. BMC bioinformatics, 14, 1-17.
181
+ ## Dataset Card Authors
182
+ [@phucdev](https://github.com/phucdev)