Skip to content

Commit 543b352

Browse files
committed
improved documentation
1 parent d2c3502 commit 543b352

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This document is focused on the **development** of the system. If you are lookin
1717
- [Therapies and actionable genes in cancer](#therapies-and-actionable-genes-in-cancer)
1818
- [Gene Ontology terms related to a list of genes](#gene-ontology-terms-related-to-a-list-of-genes)
1919
- [Gene Ontology terms related to another specific term](#gene-ontology-terms-related-to-another-specific-term)
20-
- [Cancer-related drugs](#cancer-related-drugs)
20+
- [Cancer related drugs](#cancer-related-drugs)
2121
- [Predicted functional associations network](#predicted-functional-associations-network)
2222
- [Drugs that regulate a gene](#drugs-that-regulate-a-gene)
2323
- [Error Responses](#error-responses)
@@ -693,23 +693,23 @@ For a given gene, this service gets from the String database a list of genes and
693693
- `min_combined_score`: the minimum combined scored allowed int the relations. Possible scores go from 1 to 1000.
694694
- Success Response:
695695
- Code: 200
696-
- Content: The response you get is a list of relations containing the targeted gene
696+
- Content: The response you get is a list of relations containing the targeted gene. More information about each field in the response and how the different scores are calculated can be found in the [scientific publication](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9825434/) of the STRING database. Unless otherwise indicated in this documentation, values for fields are scores in the range 1-1000.
697697
- `gene_1`: Gene 1 in the bidirectional relationship.
698698
- `gene_2`: Gene 2 in the bidirectional relationship.
699-
- `neighborhood`: Values range from 1 to 1000.
700-
- `neighborhood_transferred`: Values range from 1 to 1000.
701-
- `fusion`: Values range from 1 to 1000.
702-
- `cooccurence`: Values range from 1 to 1000.
703-
- `homology`: Values range from 1 to 1000.
704-
- `coexpression`: Values range from 1 to 1000.
705-
- `coexpression_transferred`: Values range from 1 to 1000.
706-
- `experiments`: Values range from 1 to 1000.
707-
- `experiments_transferred`: Values range from 1 to 1000
708-
- `database`: Values range from 1 to 1000.
709-
- `database_transferred`: Values range from 1 to 1000.
710-
- `textmining`: Values range from 1 to 1000.
711-
- `textmining_transferred`: Values range from 1 to 1000.
712-
- `combined_score`: Values range from 1 to 1000.
699+
- `neighborhood`: It will always come with a NULL value since STRING does not calculate this data for Eukaryotic organisms.
700+
- `neighborhood_transferred`: score reflecting the strength of supporting evidence from neighborhood done in other organisms.
701+
- `fusion`: score that is derived from fused proteins in other species.
702+
- `cooccurence`: is a type of score that is derived from similar absence/presence patterns of genes in different species.
703+
- `homology`: is a measure of the degree of homology between the interactors in a protein interaction.
704+
- `coexpression`: is a measure of the degree of coexpression of two genes based on their similar patterns of mRNA expression measured by DNA arrays and similar technologies
705+
- `coexpression_transferred`: is a measure of the degree of coexpression of two genes based on their similar patterns of mRNA expression measured by DNA arrays and similar technologies, transferred from other species based on homology.
706+
- `experiments`: is a score that represents the confidence level of a protein interaction based on experimental evidence.
707+
- `experiments_transferred`: score that is computed from experimental data transferred from other species based on homology.
708+
- `database`: score derived from curated data of various databases. It represents the confidence level of protein interactions based on this curated data.
709+
- `database_transferred`: score derived from curated data of various databases, transferred from other species based on homology.
710+
- `textmining`: is a score derived from the co-occurrence of gene/protein names in scientific publications.
711+
- `textmining_transferred`: is a score derived from the co-occurrence of gene/protein names in scientific publications, transferred from other species based on homology.
712+
- `combined_score`: is a measure of the confidence level of a protein-protein interaction. It is calculated by combining the scores of all the evidence channels, including transferred scores from other species based on homology.
713713
- Example:
714714
- URL: <http://localhost:8000/string-relations>
715715
- body:

0 commit comments

Comments
 (0)