Abstract

Information about the interactions between chemical compounds and proteins is indispensable for understanding the regulation of biological processes and the development of therapeutic drugs. Manually extracting such information from biomedical literature is very time and resource consuming. In this study, we propose a computational method to automatically extract chemical–protein interactions (CPIs) from a given text. Our method extracts CPI pairs and CPI triplets from sentences, where a CPI pair consists of a chemical compound and a protein name, and a CPI triplet consists of a CPI pair along with an interaction word describing their relationship. We extracted a diverse set of features from sentences that were used to build multiple machine learning models. Our models contain both simple features, which can be directly computed from sentences, and more sophisticated features derived using sentence structure analysis techniques. For example, one set of features was extracted based on the shortest paths between the CPI pairs or among the CPI triplets in the dependency graphs obtained from sentence parsing. We designed a three-stage approach to predict the multiple categories of CPIs. Our method performed the best among systems that use non-deep learning methods and outperformed several deep-learning-based systems in the track 5 of the BioCreative VI challenge. The features we designed in this study are informative and can be applied to other machine learning methods including deep learning.

Introduction

Chemical–protein interactions (CPIs) play important roles in metabolism and the regulation of biological processes. The information contained in CPIs is essential toward understanding mechanisms of diseases and developing therapeutic drugs. Over the course of many years of biological and biomedical research, a significant amount of information on CPIs has been discovered and published in scientific literature. Since the CPI information published in scientific literature is stored as unstructured text that does not easily lend itself to automatic analysis and computation, a notable amount of scientific effort has been invested in manually extracting CPI information from literature and depositing it in a structured format into various databases. However, manually extracting CPI information is very time and resource consuming, and therefore relying on manual extraction methods is neither efficient nor sensible, given the speed of scientific publications. Consequently, developing computational methods that can automatically extract such information is of great interest and urgency.

A considerable number of computational methods have been developed to address a similar problem—extracting protein–protein interaction information (PPI) from literature (1–18). These approaches approached and addressed the problem using various techniques ranging from relatively simple co-occurrence, to rule-based pattern matching, to machine learning-based methods, which can be further enhanced by sophisticated natural language processing techniques. However, in contrast, few methods have been proposed to automatically extract the interactions or relations between genes/proteins and chemical compounds/drugs. A high-quality method to extract chemical–protein interactions will allow unstructured CPI information to be extracted efficiently from literature and deposited into databases to facilitate efficient querying of such information. The structured CPI information can also be used in integrative analysis of other biomedical data sets (19–24). Lastly, CPI extraction methods can be used in case studies of CPIs to get information on very specific types of chemical–protein interactions.

The BioCreative challenge VI has established a separate track titled ‘text mining chemical–protein interactions’ to promote research in this important area of biological test mining (25). In this track, the goal is to build a system to automatically extract the relations between chemical compounds/drugs and genes/proteins in PubMed abstracts, which involves (i) determining whether an interaction exists between a pair of chemical compounds and a proteins in a sentence, and if so, then furthermore (ii) identifying the type of interaction. The interaction types are detailed in ‘Section II Materials’. As a participant in this challenge, we developed a machine learning-based method for extracting CPI information from biomedical literature. By combining various sets of features from semantic patterns and sentence structures with several machine learning classifiers, our method is capable of identifying the CPIs from a given text with satisfactory accuracy. The results, which use data sets released by BioCreative VI, demonstrate that our CPI extraction method is effective.

The rest of the paper is organized as follows: we first describe the data used in this study, then present the proposed method and experimental results and end with a conclusion.

Materials

The corpus used in this study comprises of PubMed articles. All chemical compounds and proteins entities are tagged by the BioCreative VI track 5 organizers. There are a total of 1632 abstracts, in which 41319 entities are tagged and 9995 CPIs are annotated in the training and development set. The test set contains 800 abstracts, 20828 tagged entities and 5744 CPIs. Each CPI is assigned to 1 of 10 chemical–protein interaction groups CPR (chemical-protein relationship):{1–10}, of which five groups are used for evaluation of models. These five groups carry useful information for downstream applications. They are up-regulator/activator (CPR:3), down-regulator/inhibitor (CPR:4), agonist (CPR:5), antagonist (CPR:6) and substrate (CPR:9). The task is to extract CPI as well as to identify the corresponding CPR type. References (25, 26) provide details on the definitions for each CPR and the guidelines used for CPI assignments in the corpus.

Methods

Our CPI extraction method extracts potentially true CPI pairs and CPI triplets from a given text. A CPI pair is defined as a chemical entity and a protein entity in the same sentence, and a CPI triplet is defined as the combination of a CPI pair with an interaction word in the same sentence. Our CPI extraction method first builds models for CPI pairs and CPI triplets separately, then combines them to form a final model. The process begins by constructing all possible CPI pairs and CPI triplets from entities mentions in a sentence. For each pair or triplet, feature sets were extracted from both the semantic pattern and the dependency graph of the sentence. The semantic pattern contains useful information on how the interaction between chemicals and proteins is described in the sentences. The dependency graph provides information on how words are interconnected in the sentence. These features are used in machine learning classifiers to predict the corresponding CPR type of a CPI pair or a CPI triplet.

Several classifiers were first trained on training set, then evaluated on the development set. Classifiers with top F1 scores were selected for model building. The selected classifiers were retrained on the combined training and development sets before making predictions using the test set.

Chemical–protein pairs and triplets construction

We used the chemical compounds and protein entities tagged by the BioCreative VI to construct CPI pairs and CPI triplets. A CPI pair is constructed with one chemical entity and one protein entity in a sentence. It is then labeled as 1 of 10 CPR types according to the relation annotations provided by the BioCreative VI. If a CPI pair is constructed but not included in the relation annotations, it will be labeled as CPR:10, which is defined as no interaction.

A CPI triplet is constructed as the combination of a CPI pair with one interaction word in the same sentence. The CPI triplet is then labeled as the CPR type of such CPI pair. If the sentence contains multiple interaction words, the same number of CPI triplets will be constructed, and they all share the same label. The interaction words in a sentence are informative for interaction extraction, since they may be used to describe the relationship between the chemical compound and the protein. We have manually built an interaction words dictionary based on our previous study (10). The dictionary contains 1155 interaction words. These interaction words were further manually mapped to the corresponding CPR type.

We constructed 18229 CPI pairs and 51460 CPI triplets from the training set, 11397 CPI pairs and 32150 CPI triplets from the development set, 15887 CPI pairs and 46403 CPI triplets from the test set. Table 1 reports the number of pairs and triplets in each type of CPR used for evaluation.

Table 1

Number of cases in each true CPR group

Train setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs7612251173235727
# triplets249264524867321536
Development setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs5481093115199457
# triplets16502936400673881
Test setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs6641658185292644
# triplets212047805708701371
Train setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs7612251173235727
# triplets249264524867321536
Development setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs5481093115199457
# triplets16502936400673881
Test setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs6641658185292644
# triplets212047805708701371
Table 1

Number of cases in each true CPR group

Train setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs7612251173235727
# triplets249264524867321536
Development setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs5481093115199457
# triplets16502936400673881
Test setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs6641658185292644
# triplets212047805708701371
Train setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs7612251173235727
# triplets249264524867321536
Development setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs5481093115199457
# triplets16502936400673881
Test setCPR:3CPR:4CPR:5CPR:6CPR:9
# pairs6641658185292644
# triplets212047805708701371

Features for model building

Semantic pattern

We extracted features based on our previous experiences and through reading some sentences in the training and development data sets. For example, we noticed that some interaction words in true CPI triplets are frequently located between two protein/gene entities of the triplets, and so we created a feature corresponding to the sequence of the three words in CPI triplets. As another example, we noticed that when a CPI pair is assigned to CPR:9, some related words—e.g. pathway, production, generate, synthesis—are frequently mentioned in the three words before or after the mention of the chemical compound or protein/gene. A feature was also created to catch such patterns. A detailed description of the features is provided in Table 2.

Table 2

Features of semantic pattern from a sentence

FeaturesFeature valuesComment
sp_typeInterger 0 to 7Type 0: e1–iw–e2 (entity1–interaction word–entity2) Type 1: iw–e1–e2 Type 2: e1–e2–iw Type 3: the star shape with no other paths Type 4: the triangle shape Type 5: the star shape with a path between e1 and e2 Type 6: the star shape with a path between iw and e2 Type 7: the star shape with a path between iw and p1
SenLenIntegerNumber of words in a sentence.
steps_sp1IntegerNumber of edges in the shortest path between e1 and iw.
steps_sp2IntegerNumber of edges in the shortest path between iw and e2.
steps_sp3IntegerNumber of edges in the shortest path between e1 and e2.
pos_e1IntegerNumber of words which lie before e1.
pos_e2IntegerNumber of words which lie before e2.
pos_iwIntegerNumber of words which lie before interaction word.
NEntitiesintegerNumber of entities other than e1 and e2.
Significanty(presence), n(absence)Presence of significant within three words before e1 and three words after e2.
isBrackety(yes), n(no)Whether e1 or e2 is in (any kind of) brackets.
isSubstratey(presence), n(absence)Presence of product, pathway, generate, synthetic within three words before e1 and three words after e2.
isAdjacenty(yes), n(no)Whether e1 and e2 are adjacent.
FeaturesFeature valuesComment
sp_typeInterger 0 to 7Type 0: e1–iw–e2 (entity1–interaction word–entity2) Type 1: iw–e1–e2 Type 2: e1–e2–iw Type 3: the star shape with no other paths Type 4: the triangle shape Type 5: the star shape with a path between e1 and e2 Type 6: the star shape with a path between iw and e2 Type 7: the star shape with a path between iw and p1
SenLenIntegerNumber of words in a sentence.
steps_sp1IntegerNumber of edges in the shortest path between e1 and iw.
steps_sp2IntegerNumber of edges in the shortest path between iw and e2.
steps_sp3IntegerNumber of edges in the shortest path between e1 and e2.
pos_e1IntegerNumber of words which lie before e1.
pos_e2IntegerNumber of words which lie before e2.
pos_iwIntegerNumber of words which lie before interaction word.
NEntitiesintegerNumber of entities other than e1 and e2.
Significanty(presence), n(absence)Presence of significant within three words before e1 and three words after e2.
isBrackety(yes), n(no)Whether e1 or e2 is in (any kind of) brackets.
isSubstratey(presence), n(absence)Presence of product, pathway, generate, synthetic within three words before e1 and three words after e2.
isAdjacenty(yes), n(no)Whether e1 and e2 are adjacent.
Table 2

Features of semantic pattern from a sentence

FeaturesFeature valuesComment
sp_typeInterger 0 to 7Type 0: e1–iw–e2 (entity1–interaction word–entity2) Type 1: iw–e1–e2 Type 2: e1–e2–iw Type 3: the star shape with no other paths Type 4: the triangle shape Type 5: the star shape with a path between e1 and e2 Type 6: the star shape with a path between iw and e2 Type 7: the star shape with a path between iw and p1
SenLenIntegerNumber of words in a sentence.
steps_sp1IntegerNumber of edges in the shortest path between e1 and iw.
steps_sp2IntegerNumber of edges in the shortest path between iw and e2.
steps_sp3IntegerNumber of edges in the shortest path between e1 and e2.
pos_e1IntegerNumber of words which lie before e1.
pos_e2IntegerNumber of words which lie before e2.
pos_iwIntegerNumber of words which lie before interaction word.
NEntitiesintegerNumber of entities other than e1 and e2.
Significanty(presence), n(absence)Presence of significant within three words before e1 and three words after e2.
isBrackety(yes), n(no)Whether e1 or e2 is in (any kind of) brackets.
isSubstratey(presence), n(absence)Presence of product, pathway, generate, synthetic within three words before e1 and three words after e2.
isAdjacenty(yes), n(no)Whether e1 and e2 are adjacent.
FeaturesFeature valuesComment
sp_typeInterger 0 to 7Type 0: e1–iw–e2 (entity1–interaction word–entity2) Type 1: iw–e1–e2 Type 2: e1–e2–iw Type 3: the star shape with no other paths Type 4: the triangle shape Type 5: the star shape with a path between e1 and e2 Type 6: the star shape with a path between iw and e2 Type 7: the star shape with a path between iw and p1
SenLenIntegerNumber of words in a sentence.
steps_sp1IntegerNumber of edges in the shortest path between e1 and iw.
steps_sp2IntegerNumber of edges in the shortest path between iw and e2.
steps_sp3IntegerNumber of edges in the shortest path between e1 and e2.
pos_e1IntegerNumber of words which lie before e1.
pos_e2IntegerNumber of words which lie before e2.
pos_iwIntegerNumber of words which lie before interaction word.
NEntitiesintegerNumber of entities other than e1 and e2.
Significanty(presence), n(absence)Presence of significant within three words before e1 and three words after e2.
isBrackety(yes), n(no)Whether e1 or e2 is in (any kind of) brackets.
isSubstratey(presence), n(absence)Presence of product, pathway, generate, synthetic within three words before e1 and three words after e2.
isAdjacenty(yes), n(no)Whether e1 and e2 are adjacent.

We also employed features proposed in an earlier study (10). These features capture certain grammar or language rules that people use to describe PPIs; we found that these rules are helpful in CPI extraction as well. For example, we included a binary feature that indicates the presence of negative words such as ‘not’, ‘incapable’ and ‘unable’ in the region covered by the CPI pair or triplet. This feature captures the negative meaning invoked by the sentence. Likewise, we included a binary feature that indicates the presence of conjunctions such as ‘although’, ‘therefore’, ‘whereas’, etc., in the region covered by the CPI pair or triplet. This feature captures compound meanings in the sentence.

Dependency graph

The Stanford Neural Network Dependency Parser (27) was used to analyze sentence structure. The parser provides grammatical relationships among words in sentences, which are represented as dependency graphs where typed dependencies serve as edges between pairs of words (nodes in the graphs). Dependency graphs can be effectively used to extract entity relations. One direct way to extract the relation between two words in a sentence is to find the shortest dependency path (SDP) in the graph constructed for the sentence (28). It is reasonable to assume that SDP often contains necessary and sufficient information for identifying the relations of chemical and protein/gene entities mentioned in a sentence. Figure 1 shows an example of a dependency graph for the sentence ‘Binding studies showed that the first TPR motif of SGT interacts with the UbE motif of the GHR.’ The SDP between the two protein names, SGT and GHR, are colored as yellow. The arrows with texts, such as ‘compound’ and ‘nsubj’, are typed dependencies.

Figure 1

Grammatical dependencies graph.

For better parsing accuracy, entities of a CPI pair were replaced with chemical (CHEM) and protein (PROT), respectively, in order to avoid the unnecessary complexity caused by multi-word terms when parsing a sentence. Other entities mentioned in the sentence were replaced with special symbols ‘CPT + interactor term identifier’. Table 3 shows an example of a sentence after the entity names have been replaced.

Table 3

Entities names replacement

SentencePMIDArg1Arg2
14507899T15T16
BeforeP2Y(2) receptor agonist INS37217 enhances functional recovery after detachment caused by subretinal injection in normal and rds mice.
AfterPROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.
SentencePMIDArg1Arg2
14507899T15T16
BeforeP2Y(2) receptor agonist INS37217 enhances functional recovery after detachment caused by subretinal injection in normal and rds mice.
AfterPROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.
Table 3

Entities names replacement

SentencePMIDArg1Arg2
14507899T15T16
BeforeP2Y(2) receptor agonist INS37217 enhances functional recovery after detachment caused by subretinal injection in normal and rds mice.
AfterPROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.
SentencePMIDArg1Arg2
14507899T15T16
BeforeP2Y(2) receptor agonist INS37217 enhances functional recovery after detachment caused by subretinal injection in normal and rds mice.
AfterPROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.

For each CPI pair, we obtained the SDP between CHEM and PROT. For each CPI triplet, two additional SDPs were obtained: CHEM to interaction word and interaction word to PROT. We next extracted features from the SDP, for example, the distance (number of words) between CHEM to PROT in SDP. This distance tends to have small values when there is a true interaction between a pair of CHEM and PROT. In addition, typed dependencies in SDP are helpful for distinguishing true CPI from false ones. For example, when SDP between CHEM and PROT has small distance value and contains ‘appos (appositive) dependency, CHEM and PROT tend to be apposition, indicating that they have no interaction. We added one-hot encoded-typed dependencies as features to indicate which dependencies are included in the SPD.

Three-stage model building

We implemented a three-stage model building approach based on stacked generalization. Stacked generalization has proved to be effective in boosting the performance by reducing the generalization error (29, 30). At each stage, training data were first split into 10 disjoint folds. By taking one fold as holdout set and training a base model on the remaining folds, we obtained predictions for the holdout set and 10 different models. The holdout predictions will be used as an additional feature for the training data, and as a result, each training sample will have one more feature in the next stage of training. When predicting test data, we repeat the same procedure. Since there are 10 different models from each fold in the 10-fold training, each model will be used to predict test data and the predictions were averaged to give the additional feature for the test data, which is then used in the next stage of prediction. The complete flowchart of the three-stage model is given in Figure 2.

Figure 2

Flowchart of three-stage CPI extraction model.

Table 4

Example for choosing CPI triplet

SentencePROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.
CPI-TripletPredictionScoreChoose?
CHEM-PROT-agonistCPR:50.7234Yes
CHEM-PROT-enhancesCPR:30.5118No
CHEM-PROT-causedCPR:90.3841No
SentencePROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.
CPI-TripletPredictionScoreChoose?
CHEM-PROT-agonistCPR:50.7234Yes
CHEM-PROT-enhancesCPR:30.5118No
CHEM-PROT-causedCPR:90.3841No
Table 4

Example for choosing CPI triplet

SentencePROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.
CPI-TripletPredictionScoreChoose?
CHEM-PROT-agonistCPR:50.7234Yes
CHEM-PROT-enhancesCPR:30.5118No
CHEM-PROT-causedCPR:90.3841No
SentencePROT agonist CHEM enhances functional recovery after detachment caused by subCPT10 injection in normal and rds mice.
CPI-TripletPredictionScoreChoose?
CHEM-PROT-agonistCPR:50.7234Yes
CHEM-PROT-enhancesCPR:30.5118No
CHEM-PROT-causedCPR:90.3841No
Table 5

F1 score of models at stage II

ModelsInclude Stage IDevelopment setTest set
TripletsYes0.56150.5558
No0.52840.5225
PairsYes0.55330.5275
No0.51920.4981
ModelsInclude Stage IDevelopment setTest set
TripletsYes0.56150.5558
No0.52840.5225
PairsYes0.55330.5275
No0.51920.4981
Table 5

F1 score of models at stage II

ModelsInclude Stage IDevelopment setTest set
TripletsYes0.56150.5558
No0.52840.5225
PairsYes0.55330.5275
No0.51920.4981
ModelsInclude Stage IDevelopment setTest set
TripletsYes0.56150.5558
No0.52840.5225
PairsYes0.55330.5275
No0.51920.4981
Table 6

Best F1 score of each team

Team rankDeep learning basedF1scorePrecisionRecall
1 [39]Y0.64100.72660.5735
2 [40]Y0.61410.56100.6784
3 [41]Y0.60990.66080.5662
4 [42]Y0.58530.67040.5194
Our systemN0.56710.63520.5121
6 [43]Y0.51810.57380.4722
7 [44]Y0.49480.53010.4639
8 [45]Y0.45820.47180.4453
9 [46]Y0.38390.26960.6663
10 [47]N0.37000.33870.4078
11 [48]N0.30920.29320.3271
120.21950.16180.3409
13 [49]Y0.18640.60570.1102
Team rankDeep learning basedF1scorePrecisionRecall
1 [39]Y0.64100.72660.5735
2 [40]Y0.61410.56100.6784
3 [41]Y0.60990.66080.5662
4 [42]Y0.58530.67040.5194
Our systemN0.56710.63520.5121
6 [43]Y0.51810.57380.4722
7 [44]Y0.49480.53010.4639
8 [45]Y0.45820.47180.4453
9 [46]Y0.38390.26960.6663
10 [47]N0.37000.33870.4078
11 [48]N0.30920.29320.3271
120.21950.16180.3409
13 [49]Y0.18640.60570.1102
Table 6

Best F1 score of each team

Team rankDeep learning basedF1scorePrecisionRecall
1 [39]Y0.64100.72660.5735
2 [40]Y0.61410.56100.6784
3 [41]Y0.60990.66080.5662
4 [42]Y0.58530.67040.5194
Our systemN0.56710.63520.5121
6 [43]Y0.51810.57380.4722
7 [44]Y0.49480.53010.4639
8 [45]Y0.45820.47180.4453
9 [46]Y0.38390.26960.6663
10 [47]N0.37000.33870.4078
11 [48]N0.30920.29320.3271
120.21950.16180.3409
13 [49]Y0.18640.60570.1102
Team rankDeep learning basedF1scorePrecisionRecall
1 [39]Y0.64100.72660.5735
2 [40]Y0.61410.56100.6784
3 [41]Y0.60990.66080.5662
4 [42]Y0.58530.67040.5194
Our systemN0.56710.63520.5121
6 [43]Y0.51810.57380.4722
7 [44]Y0.49480.53010.4639
8 [45]Y0.45820.47180.4453
9 [46]Y0.38390.26960.6663
10 [47]N0.37000.33870.4078
11 [48]N0.30920.29320.3271
120.21950.16180.3409
13 [49]Y0.18640.60570.1102

Tuning hyper-parameters and feature selection were performed at each stage. The hyper-parameters were tuned using randomized search. Under randomized search, the computational cost can be independent of the number, as well as the possible values, of the hyper-parameters (31). We performed randomized search for 10 different hyper-parameter settings with 3-fold cross validation, where each setting is sampled from a distribution over the possible hyper-parameter values. Recursive feature elimination (32) with 3-fold cross validation was implemented to select an optimal number of features.

Table 7

Confusion matrix and performance by CPR

Prediction
CPR:3CPR:4CPR:5CPR:6CPR:9Other CPR
TrueCPR:330559104296
CPR:4411085216526
CPR:5218731101
CPR:60421720115
CPR:9153100122476
Other CPR198426222772-
F1 score0.4980.6650.56490.69640.2874-
Precision0.54460.67730.76990.85570.5951-
Recall0.45860.65320.44620.5870.1894-
Prediction
CPR:3CPR:4CPR:5CPR:6CPR:9Other CPR
TrueCPR:330559104296
CPR:4411085216526
CPR:5218731101
CPR:60421720115
CPR:9153100122476
Other CPR198426222772-
F1 score0.4980.6650.56490.69640.2874-
Precision0.54460.67730.76990.85570.5951-
Recall0.45860.65320.44620.5870.1894-
Table 7

Confusion matrix and performance by CPR

Prediction
CPR:3CPR:4CPR:5CPR:6CPR:9Other CPR
TrueCPR:330559104296
CPR:4411085216526
CPR:5218731101
CPR:60421720115
CPR:9153100122476
Other CPR198426222772-
F1 score0.4980.6650.56490.69640.2874-
Precision0.54460.67730.76990.85570.5951-
Recall0.45860.65320.44620.5870.1894-
Prediction
CPR:3CPR:4CPR:5CPR:6CPR:9Other CPR
TrueCPR:330559104296
CPR:4411085216526
CPR:5218731101
CPR:60421720115
CPR:9153100122476
Other CPR198426222772-
F1 score0.4980.6650.56490.69640.2874-
Precision0.54460.67730.76990.85570.5951-
Recall0.45860.65320.44620.5870.1894-

Stage I

At stage I, three base models were trained on CPI pairs and CPI triplets in parallel to predict whether a sample belongs to one of the CPR types (CPR:{3, 4, 5, 6, 9}). The three base models for binary classification were the following: Random Forest (33), Extremely Randomized Trees (34) and XGBoost (35). The output rank-normalized scores (predicted probabilities) were stored for use at stage II.

Stage II

Base models for multiclass classification were trained on CPI pairs and CPI triplets in parallel to predict which CPR type a sample belongs to. The following three additional base models were used: Logistic Regression, Linear Discriminant Analysis and Naive Bayes (36). The scores for each CPR type, and the CPR type with highest score, from each base model were stored for use in the next stage. For those CPI triplets from a CPI pair due to multiple interaction words, we chose the one which results in the highest score for such CPI pair. Table 4 shows an example of choosing a CPI triplet constructed from the CPI pair in Table 3.

Stage III

At the final stage, the original features on CPI pair and the outputs at stage II were combined. Logistic Regression, Random Forest, Extremely Randomized Trees and XGBoost were implemented. The scores of each CPR type output from four classifiers were averaged, and the maximum was taken to be the final prediction.

Results

Table 5 reports the F1 score of the models at stage II. It shows that scores from stage I are helpful for obtaining more accurate predictions of CPR type. In development set, the F1 scores increase by over 3% when the scores from stage I are included in the models. This improvement is also found in the test set when including the scores from stage I. In addition, introducing interaction words into CPI pairs to form CPI triplets is also helpful. Models built on CPI triplets achieve higher F1 scores than those built on pairs.

Table 6 shows the best performance of each team, as a team may have multiple submissions. The recall values are relatively low for all teams with a median value of 0.4722. This indicates that the CPI extraction remains very challenging. Our method obtained over 0.63 in precision and over 0.51 in recall, resulting in an F1 score of 0.56. Our system performed the best among those using non-deep learning methods. In addition, our system outperformed five systems that are based on deep learning. This shows that our models are effective, and the hand-crafted features used in the models are useful for CPI extraction.

Table 7 shows the confusion matrix and the performance divided by each CPR type. The diagonal indicates the number of correctly extracted interactions. CPR:5 (agonist) and CPR:6 (antagonist) have less confusion with other interactions. CPR:3 (up-regulator) and CPR:4 (down-regulator) are mainly confused with each other. It is relatively difficult to extract CPR:9 (substrate). Many annotated CPI assigned to CPR:9 cannot be identified by the model, resulting in the lowest F1 score and recall.

Conclusion

In this study, we proposed a method to extract CPIs mentioned in biomedical literature. We constructed CPI pairs and CPI triplets, designed various sets of features from semantic pattern and sentence structure analysis and implemented a three-stage approach combining several machine learning classifiers. When tested on BioCreative VI track 5 data, our three-stage model achieved satisfactory performance. The source code is available at https://github.com/PeiYau-Lung/ChemProtBioCreativeVI.

There are several directions we can take to further improve our method. First, since our method heavily relies on hand-crafted features, we can improve it by extracting features that model more semantic patterns shared by various corpora. This can be done by reading sentences that contain the misclassified CPI. Second, all the CPI triplets formed by a CPI pair with different interaction words in a sentence shared the same label of such CPI pair, where some of the triplets were certainly mislabeled. This can be addressed in the future by selecting one and only one of them to assign the right label, assuming that only one triplet describes the interaction. This can be addressed by building another model to decide which triplet to be used for CPI extraction. This situation can also be addressed with multiple instance learning, which puts all the triplets of a pair into a bag and assume that at least one case in the bag is true (34, 37, 38).

Acknowledgements

We thank Albert Steppi for helpful discussions.

Funding

National Institute of General Medical Sciences of the National Institute of Health [R01GM126558].

Conflict of interest. None declared.

References

1.

Airola
,
A.
,
Pyysalo
,
S.
,
Björne
,
J.
et al.  (
2008
)
All-paths graph kernel for protein–protein interaction extraction with evaluation of cross-corpus learning
.
BMC Bioinformatics
,
9
,
S2
.

2.

Chang
,
Y.-C.
,
Chu
,
C.-H.
,
Su
,
Y.-C.
et al.  (
2016
)
PIPE: a protein–protein interaction passage extraction module for BioCreative challenge
.
Database
,
2016
,
baw101
.

3.

Giuliano
,
C.
,
Lavelli
,
A.
and
Romano
,
L.
Exploiting shallow linguistic information for relation extraction from biomedical literature
. In
Proceedings of the 11th Conference of the European Chapter of the Association for Computational Linguistics (EACL 2006)
.
Trento, Italy
.

4.

Miwa
,
M.
,
Saetre
,
R.
,
Miyao
,
Y.
et al.  (
2009
)
Protein–protein interaction extraction by leveraging multiple kernels and parsers
.
Int. J. Med. Inform.
,
78
,
e39
e46
.

5.

Qian
,
L.
and
Zhou
,
G.
(
2012
)
Tree kernel-based protein–protein interaction extraction from biomedical literature
.
J. Biomed. Inform.
,
45
,
535
543
.

6.

Sætre
,
R.
,
Sagae
,
K.
and
Tsujii
,
J.
(
2007
)
Syntactic features for protein–protein interaction extraction
.
Short Paper Proceedings of the 2nd International Symposium on Languages in Biology and Medicine (LBM 2007)
,
319
,
Singapore
.

7.

Van Landeghem
,
S.
,
Saeys
,
Y.
,
Van de Peer
,
Y.
et al. . (
2008
)
Extracting protein–protein interactions from text using rich feature vectors and feature selection
. In
3rd International Symposium on Semantic Mining in Biomedicine (SMBM 2008)
.
Turku Centre for Computer Sciences (TUCS)
,
Turku, Finland
.

8.

Yang
,
Z.
,
Tang
,
N.
,
Zhang
,
X.
et al.  (
2011
)
Multiple kernel learning in protein–protein interaction extraction from biomedical literature
.
Artif. Intell Med.
,
51
,
163
173
.

9.

Bui
,
Q.-C.
,
Katrenko
,
S.
and
Sloot
,
P.M.
(
2010
)
A hybrid approach to extract protein–protein interactions
.
Bioinformatics
,
27
,
259
265
.

10.

Chowdhary
,
R.
,
Zhang
,
J.
and
Liu
,
J.S.
(
2009
)
Bayesian inference of protein–protein interactions from biological literature
.
Bioinformatics
,
25
,
1536
1542
.

11.

Niu
,
Y.
,
Otasek
,
D.
and
Jurisica
,
I.
(
2009
)
Evaluation of linguistic features useful in extraction of interactions from PubMed; application to annotating known, high-throughput and predicted interactions in I2D
.
Bioinformatics
,
26
,
111
119
.

12.

Sun
,
T.
,
Zhou
,
B.
,
Lai
,
L.
et al.  (
2017
)
Sequence-based prediction of protein–protein interaction using a deep-learning algorithm
.
BMC Bioinformatics
,
18
,
277
.

13.

Peng
,
Y.
and
Lu
,
Z.
(
2017
)
Deep learning for extracting protein–protein interactions from biomedical literature
.
Proceedings of the BioNLP 2017 workshop
.
Association for Computational Linguistics
.
Vancouver, Canada
,
29–38
.

14.

Murugesan
,
G.
,
Abdulkadhar
,
S.
and
Natarajan
,
J.
(
2017
)
Distributed smoothed tree kernel for protein–protein interaction extraction from the biomedical literature
.
PloS One
,
12
,
e0187379
.

15.

Hsieh
,
Y.-L.
,
Chang
,
Y.-C.
,
Chang
,
N.W.
et al. . (
2017
)
Identifying protein–protein interactions in biomedical literature using recurrent neural networks with long short-term memory
. In
Proceedings of the Eighth International Joint Conference on Natural Language Processing (Volume 2: Short Papers)
.
Taipei, Taiwan
.

16.

Zhao
,
Z.
,
Yang
,
Z.
,
Lin
,
H.
et al.  (
2016
)
A protein–protein interaction extraction approach based on deep neural network
.
Int. J. Data Min. Bioin.
,
15
,
145
164
.

17.

Yu
,
K.
,
Lung
,
P.-Y.
,
Zhao
,
T.
et al.  (
2018
)
Automatic extraction of protein–protein interactions using grammatical relationship graph
.
BMC Med. Inform. Decis. Mak.
,
18
,
42
.

18.

Qu
,
J.
,
Steppi
,
A.
,
Hao
,
J.
et al.  (
2019
)
Triage of documents containing protein interactions affected by mutations using an NLP based machine learning approach
.
Database (Oxford)
,
in press; Accepted
.

19.

Bell
,
L.
,
Chowdhary
,
R.
,
Liu
,
J.S.
et al.  (
2011
)
Integrated bio-entity network: a system for biological knowledge discovery
.
PLoS One
,
6
,
e21474
.

20.

Balaji
,
S.
,
Mcclendon
,
C.
,
Chowdhary
,
R.
et al.  (
2012
)
IMID: integrated molecular interaction database
.
Bioinformatics
,
28
,
747
749
.

21.

Chowdhary
,
R.
,
Tan
,
S.L.
,
Zhang
,
J.
et al.  (
2012
)
Context-specific protein network miner—an online system for exploring context-specific protein interaction networks from the literature
.
PLoS One
,
7
,
e34480
.

22.

Li
,
Y.
,
Steppi
,
A.
,
Zhou
,
Y.
et al.  (
2017
)
Tumoral expression of drug and xenobiotic metabolizing enzymes in breast cancer patients of different ethnicities with implications to personalized medicine
.
Sci. Rep.
,
7
,
4747
.

23.

Shi
,
Y.
,
Steppi
,
A.
,
Cao
,
Y.
et al.  (
2017
)
Integrative comparison of mRNA expression patterns in breast cancers from Caucasian and Asian Americans with implications for precision medicine
.
Cancer Res.
,
77
,
423
433
.

24.

Stewart
,
P.A.
,
Luks
,
J.
,
Roycik
,
M.D.
et al.  (
2013
)
Differentially expressed transcripts and dysregulated signaling pathways and networks in African American breast cancer
.
PLoS One
,
8
,
e82460
.

25.

Krallinger
,
M.
,
Rabal
,
O.
,
Akhondi
,
S.A.
et al. . (
2017
)
Overview of the BioCreative VI chemical–protein interaction track
. In
Proceedings of the Sixth BioCreative Challenge Evaluation Workshop
.Vol.
1
, p.
141
146
,
Washington DC
.

26.

BIOCREATIVE VI: Annotation manual of CHEMPROT interactions between chemical entities mentions (CEMs) and gene and protein related objects (GPROs). BioCreative VI 2017.

27.

Chen
,
D.
and
Manning
,
C.
(
2014
)
A fast and accurate dependency parser using neural networks
. In
Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)
,
Doha, Qatar
:
Association for Computational Linguistics
.

28.

Bunescu
,
R.C.
and
Mooney
,
R.J.
(
2005
)
A shortest path dependency kernel for relation extraction
. In
Proceedings of the Conference on Human Language Technology and Empirical Methods in Natural Language Processing
.
Association for Computational Linguistics
.
Vancouver, Canada
.

29.

Sigletos
,
G.
,
Paliouras
,
G.
,
Spyropoulos
,
C.D.
et al.  (
2005
)
Combining information extraction systems using voting and stacked generalization
.
J. Mach. Learn. Res.
,
6
,
1751
1782
.

30.

Wolpert
,
D.H.
(
1992
)
Stacked generalization
.
Neural Netw.
,
5
,
241
259
.

31.

Bergstra
,
J.
and
Bengio
,
Y.
(
2012
)
Random search for hyper-parameter optimization
.
J. Mach. Learn. Res.
,
13
,
281
305
.

32.

Guyon
,
I.
,
Weston
,
J.
,
Barnhill
,
S.
et al.  (
2002
)
Gene selection for cancer classification using support vector machines
.
Mach. Learn.
,
46
,
389
422
.

33.

Breiman
,
L.
(
2001
)
Random forests
.
Machine Learn.
,
45
,
5
32
.

34.

Geurts
,
P.
,
Ernst
,
D.
and
Wehenkel
,
L.
(
2006
)
Extremely randomized trees
.
Mach. Learn.
,
63
,
3
42
.

35.

Chen
,
T.
and
Guestrin
,
C.
(
2016
)
Xgboost: ascalable tree boosting system
. In
Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining
.
San Francisco
:
ACM
.

36.

Langley
,
P.
,
Iba
,
W.
and
Thompson
,
K.
(
1992
)
An analysis of Bayesian classifiers
. In
Proceedings of the Tenth National Conference on Artificial Intelligence
.
San Jose, USA
:
Association for the Advancement of Artificial Intelligence
.

37.

Dietterich
,
T.G.
,
Lathrop
,
R.H.
and
Lozano-Pérez
,
T.
(
1997
)
Solving the multiple instance problem with axis-parallel rectangles
.
Artif. Intell.
,
89
,
31
71
.

38.

Kotzias
,
D.
,
Denil
,
M.
,
de
Freitas
,
N.
et al. . (
2015
)
From group to individual labels using deep features
. In
Proceedings of the 21th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining
.
Sydney, Australia
:
ACM
.

39.

Peng
,
Y.
,
Rios
,
A.
,
Kavuluru
,
R.
et al.  (
2018
)
Chemical–protein relation extraction with ensembles of SVM, CNN, and RNN models
.
Database
,
2018
;
1:bay073
.

40.

Corbett
,
P.
and
Boyle
,
J.
(
2018
)
Improving the learning of chemical–protein interactions from literature using transfer learning and specialized word embeddings
.
Database
,
2018
,
bay066
.

41.

Mehryary
,
F.
,
Björne
,
J.
,
Salakoski
,
T.
et al. . (
2017
)
Combining support vector machines and LSTM networks for chemical–protein relation extraction
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

42.

Lim
,
S.
and
Kang
,
J.
(
2018
)
Chemical–gene relation extraction using recursive neural network
.
Database
,
2018
;
1:bay060
.

43.

Matos
,
S.
(
2017
)
Extracting chemical–protein interactions using long short-term memory networks
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

44.

Liu
,
S.
,
Shen
,
F.
,
Wang
,
Y.
et al. . (
2017
)
Attention-based neural networks for chemical protein relation extraction
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

45.

Verga
,
P.
and
McCallum
,
A.
(
2017
)
Predicting chemical protein relations with biaffine relation attention networks
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

46.

Wang
,
W.
,
Yang
,
X.
,
Xing
,
Y.
et al. . (
2017
)
Extracting chemical–protein interactions via bidirectional long short-term memory network
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

47.

Tripodi
,
I.
,
Hailu
,
N.
,
Boguslav
,
M.
et al. . (
2017
)
Knowledge-base-enriched relation extraction
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

48.

Warikoo
,
N.
,
Chang
,
Y.-C.
,
Lai
,
P.-T.
et al. . (
2017
)
CTCPI–Convolution tree kernel-based chemical–protein interaction detection
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

49.

Yüksel
,
A.
,
Öztürk
,
H.
,
Ozkirimli
,
E.
et al. . (
2017
)
CNN-based chemical–protein interactions classification
. In
Proceedings of the BioCreative VI Workshop
.
Bethesda, MD
.

This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/), which permits unrestricted reuse, distribution, and reproduction in any medium, provided the original work is properly cited.