Skip to content

Commit 11b3331

Browse files
committed
Updated some other references to TranslatorSRI to NCATSTranslator.
1 parent 4d67f47 commit 11b3331

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
This directory contains several pieces of Babel documentation.
44

5-
Both [Node Normalization (NodeNorm)](https://github.com/TranslatorSRI/NodeNormalization) and
6-
[Name Resolution (NameRes or NameLookup)](https://github.com/TranslatorSRI/NameResolution) have their own GitHub repositories
5+
Both [Node Normalization (NodeNorm)](https://github.com/NCATSTranslator/NodeNormalization) and
6+
[Name Resolution (NameRes or NameLookup)](https://github.com/NCATSTranslator/NameResolution) have their own GitHub repositories
77
with their own documentation, but this directory is intended to include all the basic instructions
88
needed to work with Babel and its tools.
99

@@ -18,7 +18,7 @@ _cliques_ of identifiers that refer to the same concept. Each clique is assigned
1818
type from the [Biolink Model](https://github.com/biolink/biolink-model), which determines which identifier prefixes are
1919
allowed and the order in which the identifiers are presented. One of these identifiers
2020
is chosen to be the _preferred identifier_ for the clique. Within Translator, this
21-
information is made available through the [Node Normalization service](https://github.com/TranslatorSRI/NodeNormalization).
21+
information is made available through the [Node Normalization service](https://github.com/NCATSTranslator/NodeNormalization).
2222

2323
In certain contexts, differentiating between some related cliques doesn't make sense:
2424
for example, you might not want to differentiate between a gene and the product of that
@@ -27,7 +27,7 @@ on the basis of various criteria: for example, the GeneProtein conflation combin
2727
gene with the protein that that gene encodes.
2828

2929
While generating these cliques, Babel also collects all the synonyms for every clique,
30-
which can then be used by tools like [Name Resolution (NameRes)](https://github.com/TranslatorSRI/NameResolution) to provide
30+
which can then be used by tools like [Name Resolution (NameRes)](https://github.com/NCATSTranslator/NameResolution) to provide
3131
name-based lookup of concepts.
3232

3333
## How can I access Babel cliques?
@@ -41,17 +41,17 @@ There are several ways of accessing Babel cliques:
4141
"normalize" identifiers -- any member of a particular clique will be normalized
4242
to the same preferred identifier, and the API will return all the secondary
4343
identifiers, Biolink type, description and other useful information.
44-
You can find out more about this frontend on [its GitHub repository](https://github.com/TranslatorSRI/NodeNormalization).
44+
You can find out more about this frontend on [its GitHub repository](https://github.com/NCATSTranslator/NodeNormalization).
4545
* The NCATS Translator project also provides the [Name Lookup (Name Resolution)](https://name-lookup.transltr.io/)
4646
frontends for searching for concepts by labels or synonyms. You can find out more
47-
about this frontend at [its GitHub repository](https://github.com/TranslatorSRI/NameResolution).
47+
about this frontend at [its GitHub repository](https://github.com/NCATSTranslator/NameResolution).
4848
* Members of the Translator consortium can also request access to the [Babel outputs](./BabelOutputs.md)
4949
(in a [custom format](./DataFormats.md)),
5050
which are currently available in JSONL, [Apache Parquet](https://parquet.apache.org/) or [KGX](https://github.com/biolink/kgx) formats.
5151

5252
## What is the Node Normalization service (NodeNorm)?
5353

54-
The Node Normalization service, Node Normalizer or [NodeNorm](https://github.com/TranslatorSRI/NodeNormalization) is an
54+
The Node Normalization service, Node Normalizer or [NodeNorm](https://github.com/NCATSTranslator/NodeNormalization) is an
5555
NCATS Translator web service to normalize identifiers by returning a single preferred identifier for any identifier
5656
provided.
5757

@@ -63,17 +63,17 @@ It also includes some endpoints for normalizing an entire TRAPI message and othe
6363
Translator users.
6464

6565
You can find out more about NodeNorm at its [Swagger interface](https://nodenormalization-sri.renci.org/docs)
66-
or [in this Jupyter Notebook](https://github.com/TranslatorSRI/NodeNormalization/blob/master/documentation/NodeNormalization.ipynb).
66+
or [in this Jupyter Notebook](https://github.com/NCATSTranslator/NodeNormalization/blob/master/documentation/NodeNormalization.ipynb).
6767

6868
## What is the Name Resolution service (NameRes)?
6969

70-
The Name Resolution service, Name Lookup or [NameRes](https://github.com/TranslatorSRI/NameResolution) is an
70+
The Name Resolution service, Name Lookup or [NameRes](https://github.com/NCATSTranslator/NameResolution) is an
7171
NCATS Translator web service for looking up preferred identifiers by search text. Although it is primarily
7272
designed to be used to power NCATS Translator's autocomplete text fields, it has also been used for
7373
named-entity linkage.
7474

7575
You can find out more about NameRes at its [Swagger interface](https://name-resolution-sri.renci.org/docs)
76-
or [in this Jupyter Notebook](https://github.com/TranslatorSRI/NameResolution/blob/master/documentation/NameResolution.ipynb).
76+
or [in this Jupyter Notebook](https://github.com/NCATSTranslator/NameResolution/blob/master/documentation/NameResolution.ipynb).
7777

7878
## What are "information content" values?
7979

@@ -84,7 +84,7 @@ that range from 0.0 (high-level broad term with many subclasses) to 100.0 (very
8484

8585
## I've found a "split" clique: two identifiers that should be considered identical are in separate cliques.
8686

87-
Please report this as an issue to the [Babel GitHub repository](https://github.com/TranslatorSRI/Babel/issues).
87+
Please report this as an issue to the [Babel GitHub repository](https://github.com/NCATSTranslator/Babel/issues).
8888
At a minimum, please include the identifiers (CURIEs) for the identifiers that should be combined. Links to
8989
a NodeNorm instance showing the two cliques are very helpful. Evidence supporting the lumping, such as a link to an
9090
external database that makes it clear that these identifiers refer to the same concept, are also very helpful: while we
@@ -93,7 +93,7 @@ mappings that would combine the two identifiers, allowing us to improve cliquing
9393

9494
## I've found a "lumped" clique: two identifiers that are combined in a single clique refer to different concepts.
9595

96-
Please report this as an issue to the [Babel GitHub repository](https://github.com/TranslatorSRI/Babel/issues).
96+
Please report this as an issue to the [Babel GitHub repository](https://github.com/NCATSTranslator/Babel/issues).
9797
At a minimum, please include the identifiers (CURIEs) for the identifiers that should be split. Links to
9898
a NodeNorm instance showing the lumped clique is very helpful. Evidence, such as a link to an external database
9999
that makes it clear that these identifiers refer to the same concept, are also very helpful: while we have some
@@ -117,6 +117,6 @@ into any problems or would like some assistance.
117117

118118
## Who should I contact for more information about Babel?
119119

120-
You can find out more about Babel by [opening an issue on this repository](https://github.com/TranslatorSRI/Babel/issues),
120+
You can find out more about Babel by [opening an issue on this repository](https://github.com/NCATSTranslator/Babel/issues),
121121
contacting one of the [Translator SRI PIs](https://ncats.nih.gov/research/research-activities/translator/projects) or
122-
contacting the [NCATS Translator team](https://ncats.nih.gov/research/research-activities/translator/about).
122+
contacting the [NCATS Translator team](https://ncats.nih.gov/research/research-activities/translator/about).

0 commit comments

Comments
 (0)