pyobo 0.11.0__py3-none-any.whl → 0.11.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyobo/constants.py +1 -0
- pyobo/gilda_utils.py +14 -11
- pyobo/obographs.py +5 -2
- pyobo/resources/so.py +55 -0
- pyobo/resources/so.tsv +2604 -0
- pyobo/sources/complexportal.py +54 -15
- pyobo/sources/dictybase_gene.py +14 -9
- pyobo/sources/drugcentral.py +4 -1
- pyobo/sources/expasy.py +22 -4
- pyobo/sources/flybase.py +3 -2
- pyobo/sources/hgnc.py +24 -19
- pyobo/sources/hgncgenefamily.py +7 -7
- pyobo/sources/kegg/genome.py +18 -6
- pyobo/sources/mirbase.py +9 -3
- pyobo/sources/npass.py +1 -1
- pyobo/sources/pathbank.py +32 -23
- pyobo/sources/pombase.py +6 -3
- pyobo/sources/reactome.py +28 -7
- pyobo/sources/rgd.py +1 -1
- pyobo/sources/slm.py +28 -14
- pyobo/sources/uniprot/uniprot.py +7 -6
- pyobo/sources/zfin.py +18 -6
- pyobo/struct/reference.py +9 -8
- pyobo/struct/struct.py +30 -20
- pyobo/struct/typedef.py +5 -0
- pyobo/version.py +1 -1
- {pyobo-0.11.0.dist-info → pyobo-0.11.2.dist-info}/METADATA +50 -62
- {pyobo-0.11.0.dist-info → pyobo-0.11.2.dist-info}/RECORD +31 -45
- {pyobo-0.11.0.dist-info → pyobo-0.11.2.dist-info}/WHEEL +1 -1
- pyobo/apps/__init__.py +0 -3
- pyobo/apps/cli.py +0 -24
- pyobo/apps/gilda/__init__.py +0 -3
- pyobo/apps/gilda/__main__.py +0 -8
- pyobo/apps/gilda/app.py +0 -48
- pyobo/apps/gilda/cli.py +0 -36
- pyobo/apps/gilda/templates/base.html +0 -33
- pyobo/apps/gilda/templates/home.html +0 -11
- pyobo/apps/gilda/templates/matches.html +0 -32
- pyobo/apps/mapper/__init__.py +0 -3
- pyobo/apps/mapper/__main__.py +0 -11
- pyobo/apps/mapper/cli.py +0 -37
- pyobo/apps/mapper/mapper.py +0 -187
- pyobo/apps/mapper/templates/base.html +0 -35
- pyobo/apps/mapper/templates/mapper_home.html +0 -64
- pyobo-0.11.0.dist-info/LICENSE +0 -21
- {pyobo-0.11.0.dist-info → pyobo-0.11.2.dist-info}/entry_points.txt +0 -0
- {pyobo-0.11.0.dist-info → pyobo-0.11.2.dist-info}/top_level.txt +0 -0
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
{% extends "base.html" %}
|
|
2
|
-
|
|
3
|
-
{% block content %}
|
|
4
|
-
<h5 class="card-header">Inspector Javert's Mapper</h5>
|
|
5
|
-
<div class="card-body">
|
|
6
|
-
<p class="card-text">
|
|
7
|
-
This service resolves <a href="https://en.wikipedia.org/wiki/CURIE">CURIEs</a>
|
|
8
|
-
to the best CURIE that's mapped to it.
|
|
9
|
-
</p>
|
|
10
|
-
<p>
|
|
11
|
-
A summary of all of the xrefs can be found <a href="{{ url_for('.summarize') }}">here</a>.
|
|
12
|
-
You can also look at a summary for a specific prefix like <a
|
|
13
|
-
href="{{ url_for('.summarize_one', prefix='umls') }}"><code>UMLS</code></a>.
|
|
14
|
-
</p>
|
|
15
|
-
<ul>
|
|
16
|
-
<li>
|
|
17
|
-
Use the <code>/mappings</code> endpoint to look up equivalent entities,
|
|
18
|
-
for example, <a
|
|
19
|
-
href="{{ url_for('.single_source_mappings', curie='hgnc:6893') }}"><code>hgnc:6893</code></a>.
|
|
20
|
-
</li>
|
|
21
|
-
<li>
|
|
22
|
-
Use the <code>/mappings</code> endpoint to look up all mappings between two entities,
|
|
23
|
-
for example, <a
|
|
24
|
-
href="{{ url_for('.all_mappings', source_curie='hgnc:6893', target_curie='ensembl:ENSG00000186868') }}"><code>hgnc:6893</code>
|
|
25
|
-
and <code>ensembl:ENSG00000186868</code></a>.
|
|
26
|
-
</li>
|
|
27
|
-
</ul>
|
|
28
|
-
</div>
|
|
29
|
-
<table class="table">
|
|
30
|
-
<thead>
|
|
31
|
-
<tr>
|
|
32
|
-
<th scope="col">CURIE</th>
|
|
33
|
-
<th scope="col">Description</th>
|
|
34
|
-
</tr>
|
|
35
|
-
</thead>
|
|
36
|
-
<tr>
|
|
37
|
-
<td><a href="{{ url_for('.canonicalize', curie='hgnc:6893') }}">hgnc:6893</a></td>
|
|
38
|
-
<td>✅ maps correct identifier to higher priority namespace (ncbigene)</td>
|
|
39
|
-
</tr>
|
|
40
|
-
<tr>
|
|
41
|
-
<td><a href="{{ url_for('.canonicalize', curie='ncbigene:4137') }}">ncbigene:4137</a></td>
|
|
42
|
-
<td>✅ already priority namespace</td>
|
|
43
|
-
</tr>
|
|
44
|
-
<tr>
|
|
45
|
-
<td><a href="{{ url_for('.canonicalize', curie='DOID:00000') }}">DOID:00000</a></td>
|
|
46
|
-
<td>❌ invalid identifier</td>
|
|
47
|
-
</tr>
|
|
48
|
-
<tr>
|
|
49
|
-
<td><a href="{{ url_for('.canonicalize', curie='NNN:00000') }}">NNN:00000</a></td>
|
|
50
|
-
<td>❌ invalid prefix</td>
|
|
51
|
-
</tr>
|
|
52
|
-
<tr>
|
|
53
|
-
<td><a href="{{ url_for('.canonicalize', curie='wikidata:Q42') }}">wikidata:Q42</a></td>
|
|
54
|
-
<td>❌ unmapped prefix</td>
|
|
55
|
-
</tr>
|
|
56
|
-
</table>
|
|
57
|
-
<div class="card-footer text-center">
|
|
58
|
-
Developed with ❤️ in 🇩🇪 by <a href="https://github.com/cthoyt">@cthoyt</a>.
|
|
59
|
-
|
|
60
|
-
(<span class="text-muted"><a href="https://github.com/pyobo/pyobo">source code</a></span> |
|
|
61
|
-
<span class="text-muted"><a
|
|
62
|
-
href="https://cthoyt.com/2020/04/19/inspector-javerts-xref-database.html">blog post</a></span>)
|
|
63
|
-
</div>
|
|
64
|
-
{% endblock %}
|
pyobo-0.11.0.dist-info/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024 Charles Tapley Hoyt
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
File without changes
|
|
File without changes
|