Transducer Cascades for Biological Literature-Based Discovery
Abstract
:1. Motivation
- Formalization of biological facts.
- NLP to extract facts from papers.
- Building a database of predicates and facts.
2. Related Work
3. Formalism
- The predicates and rules have to be both machine and human-readable. Moreover, they should be expressive enough for biologists to understand the meaning without much outside indication.
- The formalism should be chemically precise, meaning, for instance, that the different states of a given molecule have to be defined. In other words, the activation of a given molecule is not described as an activation but as the change of state from inactive to active.
- The direct and indirect actions need to be distinguished.
- The formalism has to allow the making of hypotheses.
3.1. Background Predicates
3.1.1. Components
- List the components of the system;
- Determine the different states of each component;
- Determine the actions each state triggers.
- Phosphorylated form, noted phosphoForm(X,Y,P), which means X is the protein Y, phophorylated at positions listed in P. In the frequent case where the precise positions of phosphorylations are not known P takes the value for unknown position.
- Acetylated form, similarly noted acetylForm(X,Y,P).
- A more generic predicate modifiedForm(X,Y) is used to encompass other types of modifications, including those for which the precise chemistry is unknown, but change the properties of the protein, such as active and inactive forms. Ontological rules were written that allow us to identify phosphoForm and acetylForm as sub-categories of modifiedForm. Note also that modifiedForm is made symmetrical by the rule IF modifiedForm(X,Y) THEN modifiedForm(Y,X).
3.1.2. Other Types of Background Predicates
- Abbreviations and alternative names;
- Methods;
- Organs;
- Lists: for instance, the predicate particleList(L) allows defining L as a list of objects of type particle and the predicate particleListElement(L,X) declares that Y is an element of that list;
- Predicate transcribed(G,R) links the gene G and the mRNA R, resulting from the transcription of G. Similarly, translated(R,P) links the mRNA R and the protein P, resulting from the translation of R.
3.2. Network Predicates
- localization(X,C,S), meaning that component X is found in compartment C, with status S. The compartment used here corresponds to subcellular compartments: membrane, cytoplasm, nucleus and so on.
- processModulation(X,P,E,D,S) means that component X has effect E on the process P at some distance D and with the status S. Processes, which are defined in a dictionary, are biological processes, for example transcription or translation.
- quantityModulation(X,Y,E,D,S) means that component X has effect E on the quantity of component Y at some distance D and with the status S.
- , for cell line, which gives the cell line in which the experiment has been conducted;
- , for method, which gives the experimental protocol used.
3.3. Rules
4. NLP to Extract Predicates
4.1. Processing Chain
- Preprocessing (Section 4.1.1)
- (a)
- A PHP script downloads papers selected beforehand based on a list of keywords.
- (b)
- An Unitex cascade script normalizes and reduces a paper to its “Results” section if it exists.
- (c)
- A PHP script eliminates papers in which the keywords used to for initial selection are not present in the results section.
- Analysis (Section 4.1.2): A Unitex cascade script scans each paper and creates an XML-TEI file, structured paper by paper, paragraph by paragraph and sentence by sentence (Section 4.2.1).
- Statistics (Section 4.2.2): A Unitex cascade script computes statistical results for the set of papers and for each paper and creates two output XML files.
4.1.1. Preprocessing
4.1.2. Analysis
- 1032 methods;
- 13 molecule families, which are expression used to designate a set of similar molecules, but are not present in the general dictionaries;
- 242 molecules that were added because they were not present in the general dictionaries;
- 111 localizations, corresponding to sub-cellular compartments;
- 1674 organisms;
- 93 biological process;
- 360 words or expressions describing an effect of a component on another one, which we gather under the term “regulations”.
4.2. Resulting Files
4.2.1. XML-TEI File of Predicates
<teiCorpus> |
<teiHeader>ABLISS project presentation</teiHeader> |
<tei> |
<teiHeader>First text metadata</teiHeader> |
<text>First text</text> |
</tei> |
<tei>Following text</tei> |
… |
</ teiCorpus > |
<div type="paragraph"> |
… |
<div type="sentence"> |
text of one sentence |
<desc type="background" subtype="ontological">predicate</desc> |
… |
<desc type="background" subtype="relation">predicate</desc> |
… |
<desc type="network" subtype="action">predicate</desc> |
… |
</div> |
<div type="sentence">…</div> |
… |
</div> |
4.2.2. XML Files of Statistics
<tei> |
<teiHeader>ABLISS project presentation</teiHeader> |
<listAnnotation tag="desc" subtype="ontological"> |
<ontological> |
<fact>gene("Amph")</fact> |
<frequency value="18"/> |
</ontological> |
… |
</listAnnotation> |
<listAnnotation tag="desc" subtype="relation">…</listAnnotation> |
<listAnnotation tag="desc" subtype="action">…</listAnnotation> |
</tei> |
4.3. Detailed Example
<tei> |
<teiHeader> |
<titleStmt> |
<title>Rapid CB1 cannabinoid receptor desensitization defines the time course of ERK1/2 MAP kinase signaling</title> |
<author>Tanya L. Daigle, Christopher S. Kearn, Ken Mackie</author> |
</titleStmt> |
<publicationStmt> |
<publisher>Neuropharmacology</publisher> |
<date>2005 May</date> |
<biblScope unit="vol">54</biblScope> |
<biblScope unit="issue">1</biblScope> |
<biblScope unit="pp">36</biblScope> |
<idno type="PMID">17681354</idno> |
<idno type="DOI">10.1016/j.neuropharm.2007.06.005</idno> |
<idno type="PMCID">PMC2277473</idno> |
</publicationStmt> |
</teiHeader> |
<text> |
… |
<div type="paragraph"> |
… |
<div type="sentence"> |
Pre-treatment with SR1 blocked ERK1/2 activation by both receptors. |
<desc type="background" subtype="ontological"> |
method(Pre-treatment) |
</desc> |
<type="background" subtype="ontological"> |
protein(SR1) |
</desc> |
<type="background" subtype="ontological"> |
protein(ERK1/2) |
</desc> |
<type="background" subtype="relation" |
modifiedForm(ERK1/2_active, ERK1/2_inactive) |
</desc> |
<desc type="network" subtype="action"> |
reactionModulationPerturbator(SR1, unknownSignal, |
ERK1/2_active, ERK1/2_inactive, decrease, unknownDistance, confirmed, unknownCell, unknownMethod) |
</desc> |
</div> |
… |
</div> |
… |
</text> |
</tei> |
4.4. Evaluation
- We found protein(proteins), which is is a false positive. This error comes from a confusion between the tag <protein>, which designates a protein in our protein dictionary, and the lemma protein in the Unitex English dictionary. Thus, we will revise our graphs to avoid such a confusion.
- In the sentence Negative regulation of sub-picomolar relaxin signalling requires PKA, PDE4 and β-arrestin 2 (PKA: cAMP-dependent protein kinase, PDE4: cAMP-specific 3,5-cyclic phosphodiesterase 4), we found only protein(β-arrestin) instead of β-arrestin 2. This comes from the fact that both terms are present in the dictionary of proteins, which is a good thing, since some authors do not specify which isoform has been used. However, we have to take this into account in our graph, so that β-arrestin 2 will have the precedence on protein(β-arrestin).
- In the sentence Thus, the i3--PI3K- pathway does not generate the cAMP detected by the pmEpac2 sensor (: guanine nucleotide-binding protein G(i) subunit alpha-3, : guanine nucleotide binding protein (G protein) subunit beta, : guanine nucleotide binding protein (G protein) subunit gamma, : Phosphatidylinositol 3-kinase, : protein kinase C subunit , cAMP: cyclic adenosine monophosphate), the list of proteins complex() was incorrectly identified as a complex. Indeed, the hyphen between two protein names can either mean a complexation between the two, or just a list, which can only be decided using the context. We will work on this problem, which is far from simple.
- In the sentence Together these results suggest that WIN induced prolonged activation of ERK1/2 in the mutant receptor that is solely mediated by β-arrestin 1, a predicate reactionModulationMediation should in theory be found here, but the needed graph does not exist yet.
- In the sentence HEK293 cells expressing SEP-CB1Rs or S426A/S430A were cotransfected with β-arrestin 2 siRNA and exposed to WIN (SEP: septin, CB1R: canabinoid receptor 1, WIN: WDR5-interaction inhibitor), the predicate transfectedCell should be found, but we have not yet created a graph for it.
5. From the NLP Extracted Facts to the Database
5.1. Specification of Predicates
5.2. Storing Facts
6. Conclusions and Future Work
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Conflicts of Interest
References
- Hauser, A.S.; Chavali, S.; Masuho, I.; Jahn, L.J.; Martemyanov, K.A.; Gloriam, D.E.; Babu, M.M. Pharmacogenomics of GPCR drug targets. Cell 2018, 172, 41–54. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Sriram, K.; Insel, P.A. G protein-coupled receptors as targets for approved drugs: How many targets and how many drugs? Mol. Pharmacol. 2018, 93, 251–258. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Rougny, A.; Gloaguen, P.; Langonné, N.; Reiter, E.; Crépieux, P.; Poupon, A.; Froidevaux, C. A logic-based method to build signaling networks and propose experimental plans. Sci. Rep. 2018, 8, 7830. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Grefenstette, G. Explorations in Automatic Thesaurus Discovery; Springer Science & Business Media: Berlin/Heidelberg, Germany, 2012; Volume 278. [Google Scholar]
- Karp, P.D.; Ong, W.K.; Paley, S.; Billington, R.; Caspi, R.; Fulcher, C.; Kothari, A.; Krummenacker, M.; Latendresse, M.; Midford, P.E.; et al. The ecocyc database. EcoSal Plus 2018, 8. [Google Scholar] [CrossRef] [Green Version]
- Altman, R.B.; Buda, M.; Chai, X.J.; Carillo, M.W.; Chen, R.O.; Abernethy, N.F. RiboWeb: An ontology-based system for collaborative molecular biology. IEEE Intell. Syst. Their Appl. 1999, 14, 68–76. [Google Scholar] [CrossRef] [Green Version]
- Consortium, G.O. The gene ontology (GO) project in 2006. Nucleic Acids Res. 2006, 34, D322–D326. [Google Scholar] [CrossRef]
- Bodenreider, O.; Stevens, R. Bio-ontologies: Current trends and future directions. Brief. Bioinform. 2006, 7, 256–274. [Google Scholar] [CrossRef] [Green Version]
- Jackson, R.; Matentzoglu, N.; Overton, J.A.; Vita, R.; Balhoff, J.P.; Buttigieg, P.L.; Carbon, S.; Courtot, M.; Diehl, A.D.; Dooley, D.M.; et al. OBO Foundry in 2021: Operationalizing open data principles to evaluate ontologies. Database 2021, 2021, baab069. [Google Scholar] [CrossRef]
- Ding, J.; Berleant, D.; Nettleton, D.; Wurtele, E. Mining MEDLINE: Abstracts, sentences, or phrases? In Biocomputing 2002; World Scientific: Singapore, 2001; pp. 326–337. [Google Scholar]
- Kim, M.; Baek, S.H.; Song, M. Relation extraction for biological pathway construction using node2vec. BMC Bioinform. 2018, 19, 75–84. [Google Scholar] [CrossRef] [Green Version]
- Ding, J.; Berleant, D.; Xu, J.; Fulmer, A.W. Extracting biochemical interactions from MEDLINE using a link grammar parser. In Proceedings of the 15th IEEE International Conference on Tools with Artificial Intelligence, Sacramento, CA, USA, 3–5 November 2003; pp. 467–471. [Google Scholar]
- Rzhetsky, A.; Iossifov, I.; Koike, T.; Krauthammer, M.; Kra, P.; Morris, M.; Yu, H.; Duboué, P.A.; Weng, W.; Wilbur, W.J.; et al. GeneWays: A system for extracting, analyzing, visualizing, and integrating molecular pathway data. J. Biomed. Inform. 2004, 37, 43–53. [Google Scholar] [CrossRef] [Green Version]
- Cohen, K.B.; Hunter, L. Natural language processing and systems biology. In Artificial Intelligence Methods and Tools for Systems Biology; Springer: Dordrecht, The Netherlands, 2004; pp. 147–174. [Google Scholar]
- Zweigenbaum, P.; Demner-Fushman, D.; Yu, H.; Cohen, K.B. Frontiers of biomedical text mining: Current progress. Brief. Bioinform. 2007, 8, 358–375. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Krallinger, M.; Valencia, A. Text-mining and information retrieval services for molecular biology. Genome Biol. 2005, 6, 224. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Weeber, M.; Kors, J.A.; Mons, B. Online tools to support literature-based discovery in the life sciences. Brief. Bioinform. 2005, 6, 277–286. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Zhao, S.; Su, C.; Lu, Z.; Wang, F. Recent advances in biomedical literature mining. Brief. Bioinform. 2021, 22, bbaa057. [Google Scholar] [CrossRef] [PubMed]
- Yeh, H.S.; Lavergne, T.; Zweigenbaum, P. Decorate the Examples: A Simple Method of Prompt Design for Biomedical Relation Extraction. arXiv 2022, arXiv:2204.10360. [Google Scholar]
- Poon, H.; Toutanova, K.; Quirk, C. Distant supervision for cancer pathway extraction from text. In Pacific Symposium on Biocomputing Co-Chairs; World Scientific Publishing: Singapore, 2014; pp. 120–131. [Google Scholar]
- Gyori, B.M.; Bachman, J.A.; Subramanian, K.; Muhlich, J.L.; Galescu, L.; Sorger, P.K. From word models to executable models of signaling networks using automated assembly. Mol. Syst. Biol. 2017, 13, 954. [Google Scholar] [CrossRef]
- Allen, J.; de Beaumont, W.; Galescu, L.; Teng, C.M. Complex Event Extraction Using Drum; Technical Report; Florida Institute for Human and Machine Cognition: Pensacola, FL, USA, 2015. [Google Scholar]
- Koch, I. Petri nets—A mathematical formalism to analyze chemical reaction networks. Mol. Inform. 2010, 29, 838–843. [Google Scholar] [CrossRef]
- Morris, M.K.; Saez-Rodriguez, J.; Sorger, P.K.; Lauffenburger, D.A. Logic-based models for the analysis of cell signaling networks. Biochemistry 2010, 49, 3216–3224. [Google Scholar] [CrossRef] [Green Version]
- Konur, S. A Review of Modelling and Verification Approaches for Computational Biology; Technical Report; University of Bradford: Bradford, UK, 2020. [Google Scholar]
- Fisher, J.; Henzinger, T.A. Executable cell biology. Nat. Biotechnol. 2007, 25, 1239–1249. [Google Scholar] [CrossRef]
- Priami, C. Algorithmic systems biology. Commun. ACM 2009, 52, 80–88. [Google Scholar] [CrossRef]
- Le Novère, N. Model storage, exchange and integration. BMC Neurosci. 2006, 7, 1–9. [Google Scholar] [CrossRef] [PubMed]
- Abney, S. Partial parsing via finite-state cascades. In Proceedings of the Workshop on Robust Parsing, 8th European Summer School in Logic, Language and Information, Prague, Czech Republic, 12–23 August 1996; pp. 8–15. [Google Scholar]
- Hobbs, J.; Appelt, D.; Bear, J.; Israel, D.; Kameyama, M.; Stickel, M.; Tyson, M. A Cascaded Finite-State Transducer for Extracting Information from Natural-Language Text in Finite State Devices for Natural Language Processing; MIT Press: Cambridge, MA, USA, 1996; pp. 383–406. [Google Scholar]
- Friburger, N.; Maurel, D. Finite-state transducer cascade to extract named entities in texts. Theor. Comput. Sci. 2004, 313, 94–104. [Google Scholar] [CrossRef] [Green Version]
- Paumier, S. De la Reconnaissance de Formes Linguistiques à l’Analyse Syntaxique. Ph.D. Thesis, Université de Marne-la-Vallée, Marne la Vallée, France, 2003. [Google Scholar]
- Daigle, T.L.; Kearn, C.S.; Mackie, K. Rapid CB1 cannabinoid receptor desensitization defines the time course of ERK1/2 MAP kinase signaling. Neuropharmacology 2005, 54, 36. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Flores-Otero, J.; Ahn, K.H.; Delgado-Peraza, F.; Mackie, K.; Kendall, D.A.; Yudowski, G.A. Ligand-specific endocytic dwell times control functional selectivity of the cannabinoid receptor 1. Nat. Commun. 2014, 1, 4589. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Delgado-Peraza, F.; Ahn, K.H.; Nogueras-Ortiz, C.; Mungrue, I.N.; Mackie, K.; Kendall, D.A.; Yudowski, G.A. Mechanisms of Biased β-Arrestin-Mediated Signaling Downstream from the Cannabinoid 1 Receptor. Mol. Pharmacol. 2016, 89, 618–629. [Google Scholar] [CrossRef] [PubMed] [Green Version]
Predicate | Meaning |
---|---|
reactionModulationCell(,,E,,,D,S) | The transition from state to state is faster (E = increase), respectively slower (E = decrease), respectively equivalent (E = noeffect), in cell line than in cell line |
reactionModulationMediation(M,Y,,,D,S) | The action of Y on the transition from state to state is mediated by the component M, meaning that the action of component Y on the transition from state to state of component X is depending on the presence of component M. |
reactionModulationPerturbator(Y,I,,,E,D,S) | The component I increases (E = increase), respectively decreases (E = decrease, respectively has no effect (E = noeffect, on the action of Y on the transition from state to state . |
reactionModulationSignalCell(Y,,,E,,,D,S) | The effect of Y on the transition from state to state is higher (E = increase), respectively lower (E = decrease), respectively the same (E = noeffect) in cell line than in cell line . |
reactionModulationSignalCompare(Y,Z,,,E,D,S) | The effect of Y on the transition from state to state is higher (E = increase), respectively lower (E = decrease), respectively the same (E = noeffect) than the effect of component Z on the same state transition. |
Sentence | Facts |
---|---|
In HEK 293 cells transiently expressing the rat FSH-R, FSH stimulated ERK phosphorylation in a dose-dependent manner (Figure 1) | cell(HEK293) protein(FSHR) transfectedCell(HEK293_FSHR, FSHR, HEK293) protein(FSH) protein(ERK) phosphoForm(pERK, ERK) reactionModulation(FSH, ERK, pERK, increase, unknownDistance, confirmed, HEK293_FSHR, unknownMethod) |
Symetrically, overexpression of wild-type -arrestin 1 or -arrestin 2 enhanced the FSH-R internalization (Figure 5A). | protein(-arrestin 1) protein(-arrestin 2) protein(FSHR) process(Internalization) processModulationTargeted(-arrestin 1, Internalization, FSHR, increase, unknownDistance, confirmed, unknownCell, unknownMethod) processModulationTargeted(-arrestin 2, Internalization, FSHR, increase, unknownDistance, confirmed, unknownCell, unknownMethod) |
These data indicate that ERK activation stimulated by the 2AR is mediated largely by -arrestin isoforms. | protein(ERK) modifiedForm(ERK,ERK_active) modifiedForm(ERK,ERK_inactive) protein(2AR) reactionModulation(2AR, ERK_inactive, ERK_active, increase, unknownDistance, confirmed, unknownCell, unknownMethod) protein(-arrestin) reactionModulationMediation(-arrestin, 2AR, ERK_inactive, ERK_active, increase, unknownDistance, confirmed, unknownCell, unknownMethod) |
This graph should be read from left to right and recognizes the sequence XX | |
This graph recognizes all the sequences belonging to the category CC | |
This graph recognizes the sequence XX and merges it with AA (or replaces it by AA) | |
This grey box calls a subgraph named SG | |
If various paths are possible, the maximum matches is chosen: XX YY and not XX | |
This graph recognizes two sequences (XX and YY) and merges them in a new token XX YY whose category is CC with the optional feature FF | |
This graph recognizes the sequence YY except if the right context (beginning by YY) is XX | |
This loop recognizes all tokens until the right context XX | |
This loop can recognize one to ten times XX | |
For the same number of tokens matched, the path with the maximum last weight is chosen: ${2}$ | |
The parenthesis delimit a part of the recognized text that is stored in a variable vv (in superscript). This variable is used in the output ($vv$) | |
The box $vv.SET$ tests if the variable $vv$ is not empty; contrariwise the box $vv.UNSET$ tests if the variable $vv$ is empty |
True Positives | False Negatives | False Positives | |
---|---|---|---|
Flores 2014 | 348 | 0 | 518 |
Delgado 2016 | 879 | 0 | 322 |
Total | 1227 | 0 | 840 |
Precision | Recall | F-Measure | |
Flores 2014 | 40.2% | 100% | 57.3% |
Delgado 2016 | 73.2% | 100% | 84.5% |
Total | 59.4% | 100% | 74.5% |
True Positives | False Negatives | False Positives | |
---|---|---|---|
Flores 2014 | 50 | 91 | 8 |
Delgado 2016 | 33 | 144 | 13 |
Total | 83 | 235 | 21 |
Precision | Recall | F-Measure | |
Flores 2014 | 86.2% | 35.5% | 50.3% |
Delgado 2016 | 71.7% | 18.6% | 29.6% |
Total | 79.8% | 26.1% | 39.3% |
PredName | Arity | Type | Description |
---|---|---|---|
modifiedForm | 2 | background | molecule X is a modified form of molecule Y |
protein | 1 | background | P is a protein |
reactionModPert | 9 | network | Signal I has effect E on the effect of X on the reaction Y -> Z, in cell line CL at the distance D, using method MET with the status S |
… | … | … | … |
(a) The PredArgument Table. | ||
---|---|---|
PredName | ArgRank | ArgName |
modifiedForm | 1 | X |
modifiedForm | 2 | Y |
protein | 1 | P |
reactionModPert | 1 | X |
reactionModPert | 2 | I |
reactionModPert | 3 | Y |
reactionModPert | 4 | Z |
reactionModPert | 5 | E |
reactionModPert | 6 | D |
reactionModPert | 7 | S |
reactionModPert | 8 | CL |
reactionModPert | 9 | MET |
… | … | … |
… | … | … |
(b) ThePredArgTypeTable | ||
PredName | ArgRank | ArgTypeId |
modifiedForm | 1 | AT1 |
modifiedForm | 2 | AT1 |
protein | 1 | AT2 |
reactionModPert | 1 | AT3 |
reactionModPert | 2 | AT3 |
reactionModPert | 3 | AT1 |
reactionModPert | 4 | AT1 |
reactionModPert | 5 | AT4 |
reactionModPert | 6 | AT5 |
reactionModPert | 7 | AT6 |
reactionModPert | 8 | AT7 |
reactionModPert | 8 | AT8 |
reactionModPert | 9 | AT9 |
… | … | … |
ArgTypeId | Description | TypeName; Possible Values |
---|---|---|
AT1 | a set of atoms (at least two) | molecule |
AT2 | a long chain of amino acid residues | protein |
AT3 | a signal | signal |
AT4 | result of the action of some process | effect; choice: increase, decrease, noeffect |
AT5 | specifies how far the action is performed | distance; choice: direct, indirect, unknownDistance |
AT6 | the confidence into the fact | status; choice: confirmed, biblio, hypothesis |
AT7 | cell lines as listed in the dictionary | cell line |
AT8 | list of organs from the dictionary | organ |
AT9 | list of experimental methods from the dictionary | method |
… | … | … |
(a) BackgroundKnowledge | (b) NetworkFacts | (c) SourcesOfFacts | ||||
---|---|---|---|---|---|---|
idFact | PredName | idFact | PredName | Extracted | idFact | idSource |
bkF1 | modifiedForm | nf1 | reactModPert | yes | bkF1 | 17681354 |
bkF2 | protein | … | … | … | bfF2 | 17681354 |
… | … | … | … | … | nf1 | 17681354 |
… | … | … | … | … | … | … |
idFact | PredName | ArgRank | Value |
---|---|---|---|
bkF1 | modifiedForm | 1 | ERK1/2_active |
bkF1 | modifiedForm | 2 | ERK1/2_inactive |
bkF2 | protein | 1 | SR1 |
nf1 | reactModPert | 1 | SR1 |
nf1 | reactModPert | 2 | unknownSignal |
nf1 | reactModPert | 3 | ERK1/2_active |
nf1 | reactModPert | 4 | ERK1/2_inactive |
nf1 | reactModPert | 5 | decrease |
nf1 | reactModPert | 6 | unknownDistance |
nf1 | reactModPert | 7 | confirmed |
nf1 | reactModPert | 8 | unknownCell |
nf1 | reactModPert | 9 | unknownMethod |
… | … | … |
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations. |
© 2022 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Maurel, D.; Chéry, S.; Bidoit, N.; Chatalic, P.; Filali, A.; Froidevaux, C.; Poupon, A. Transducer Cascades for Biological Literature-Based Discovery. Information 2022, 13, 262. https://doi.org/10.3390/info13050262
Maurel D, Chéry S, Bidoit N, Chatalic P, Filali A, Froidevaux C, Poupon A. Transducer Cascades for Biological Literature-Based Discovery. Information. 2022; 13(5):262. https://doi.org/10.3390/info13050262
Chicago/Turabian StyleMaurel, Denis, Sandy Chéry, Nicole Bidoit, Philippe Chatalic, Aziza Filali, Christine Froidevaux, and Anne Poupon. 2022. "Transducer Cascades for Biological Literature-Based Discovery" Information 13, no. 5: 262. https://doi.org/10.3390/info13050262
APA StyleMaurel, D., Chéry, S., Bidoit, N., Chatalic, P., Filali, A., Froidevaux, C., & Poupon, A. (2022). Transducer Cascades for Biological Literature-Based Discovery. Information, 13(5), 262. https://doi.org/10.3390/info13050262