-
Notifications
You must be signed in to change notification settings - Fork 16
Update OWL file #195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update OWL file #195
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19988,6 +19988,44 @@ | |
| <owl:annotatedTarget>value-type:xsd:string</owl:annotatedTarget> | ||
| <rdfs:label>The allowed value-type for this CV term</rdfs:label> | ||
| </owl:Axiom> | ||
|
|
||
|
|
||
|
|
||
| <!-- http://purl.obolibrary.org/obo/PRIDE_0001011 --> | ||
|
|
||
| <owl:Class rdf:about="http://purl.obolibrary.org/obo/PRIDE_0001011"> | ||
| <rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PRIDE_0000017"/> | ||
| <rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PRIDE_0000458"/> | ||
| <obo:IAO_0000115>Report the major environmental system the sample or specimen came from (MIXS:0000012).</obo:IAO_0000115> | ||
| <oboInOwl:hasOBONamespace>PRIDE</oboInOwl:hasOBONamespace> | ||
| <oboInOwl:id>PRIDE:0001011</oboInOwl:id> | ||
| <rdfs:label>broad-scale environmental context</rdfs:label> | ||
| </owl:Class> | ||
| <owl:Axiom> | ||
| <owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PRIDE_0001011"/> | ||
| <owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/> | ||
| <owl:annotatedTarget>Report the major environmental system the sample or specimen came from (MIXS:0000012).</owl:annotatedTarget> | ||
| <oboInOwl:hasDbXref>PRIDE:PRIDE</oboInOwl:hasDbXref> | ||
| </owl:Axiom> | ||
|
|
||
|
|
||
|
|
||
| <!-- http://purl.obolibrary.org/obo/PRIDE_0001012 --> | ||
|
|
||
| <owl:Class rdf:about="http://purl.obolibrary.org/obo/PRIDE_0001012"> | ||
| <rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PRIDE_0000017"/> | ||
| <rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PRIDE_0000458"/> | ||
| <obo:IAO_0000115>Report the entity or entities which are in the sample or specimen s local vicinity and which you believe have significant causal influences on your sample or specimen (MIXS:0000013).</obo:IAO_0000115> | ||
| <oboInOwl:hasOBONamespace>PRIDE</oboInOwl:hasOBONamespace> | ||
| <oboInOwl:id>PRIDE:0001012</oboInOwl:id> | ||
| <rdfs:label>local environmental context</rdfs:label> | ||
| </owl:Class> | ||
| <owl:Axiom> | ||
| <owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PRIDE_0001012"/> | ||
| <owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/> | ||
| <owl:annotatedTarget>Report the entity or entities which are in the sample or specimen s local vicinity and which you believe have significant causal influences on your sample or specimen (MIXS:0000013).</owl:annotatedTarget> | ||
| <oboInOwl:hasDbXref>PRIDE:PRIDE</oboInOwl:hasDbXref> | ||
| </owl:Axiom> | ||
| </rdf:RDF> | ||
|
Comment on lines
+20013
to
20029
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
# Inspect the relevant region and the sibling term mentioned in the comment.
file="pride_cv.owl"
echo "== Nearby lines for PRIDE_0001011 and PRIDE_0001012 =="
sed -n '19970,20060p' "$file" | cat -n
echo
echo "== Search for PRIDE_0001011/0001012 axioms and exact synonyms =="
rg -n -C 3 'PRIDE_0001011|PRIDE_0001012|hasExactSynonym|GSCMIXS:0000013|MIXS:0000013' "$file"Repository: PRIDE-Archive/pride-ontology Length of output: 50384 🏁 Script executed: #!/bin/bash
set -euo pipefail
file="pride_cv.owl"
echo "== MIXS-related annotations =="
rg -n -C 2 'GSCMIXS:000001[23]|env_(broad|local)_scale|MIXS:000001[23]|hasExactSynonym' "$file" | sed -n '1,220p'
echo
echo "== PRIDE_0001011/0001012 blocks only =="
sed -n '20000,20040p' "$file" | cat -nRepository: PRIDE-Archive/pride-ontology Length of output: 16242 🌐 Web query:
💡 Result: MIXS:0000013, commonly referred to by its alias env_local_scale, is a standardized term within the Minimum Information about any (x) Sequence (MIxS) reporting framework, which is developed by the Genomics Standards Consortium (GSC) [1][2][3]. The env_local_scale field is used to document the local environmental context of a sample or specimen [1][4]. Specifically, it requires reporters to identify entities in the immediate vicinity of the sample that are believed to have a significant causal influence on its characteristics or composition [5][6]. Key characteristics of this term include: - Purpose: To describe the local environment with a finer spatial grain than the broader environment (env_broad_scale) [5][6]. - Expected Values: It is recommended to use terms from the Environment Ontology (EnvO) [5][2]. For host-associated or plant-associated samples, terms from interoperable OBO Library ontologies (such as UBERON for anatomical sites or the Plant Ontology) are also accepted [2][6]. - Format: The value should generally follow a pattern of a term label and its associated ID, for example, "litter layer [ENVO:01000338]" [2][7]. - Requirement: In the MIxS schema, this is typically a required field for various environmental and biological packages [7][8][9]. The GSC provides guidelines for using EnvO in conjunction with MIxS to ensure consistent and interoperable metadata reporting [5][6]. Citations:
🏁 Script executed: #!/bin/bash
set -euo pipefail
file="pride_cv.owl"
echo "== Any GSCMIXS annotations in the file =="
rg -n 'GSCMIXS:' "$file" || true
echo
echo "== Any exact synonyms on the MIXS-related block =="
sed -n '20008,20032p' "$file" | rg -n 'hasExactSynonym|hasDbXref|MIXS:0000012|MIXS:0000013|env_broad_scale|env_local_scale'
echo
echo "== Nearby MIXS-related class blocks with annotations, if any =="
rg -n -C 3 'MIXS:0000012|MIXS:0000013|env_broad_scale|env_local_scale|hasExactSynonym|hasDbXref' "$file" | sed -n '1,120p'Repository: PRIDE-Archive/pride-ontology Length of output: 7719 Add the MIXS synonym/xref pair for 🤖 Prompt for AI Agents |
||
|
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: PRIDE-Archive/pride-ontology
Length of output: 50384
🏁 Script executed:
Repository: PRIDE-Archive/pride-ontology
Length of output: 50385
🏁 Script executed:
Repository: PRIDE-Archive/pride-ontology
Length of output: 9375
Add the MIXS field-name synonyms for
PRIDE:0001011andPRIDE:0001012.Both exports omit the standard
hasExactSynonym/GSCMIXSpair forenv_broad_scaleandenv_local_scale, unlike the neighboring MIXS-derived terms. Add those annotations to keep field-to-term mapping consistent.🤖 Prompt for AI Agents