Last active
December 12, 2023 10:31
-
-
Save sneumann/d80fab948688fc6dcc5de0c5710a1b38 to your computer and use it in GitHub Desktop.
Search and replace with DefinedTerm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
chmo2definedterm () { | |
CURIE=`echo "$1" | sed -e 's/.*\(CHMO:[0-9]*\).*/\1/'` | |
wget -q -O- "https://service.tib.eu/ts4tib/api/ontologies/chmo/terms?obo_id=$CURIE" |\ | |
jq '{ measurementTechnique: { "@type": "DefinedTerm", "@id": ._embedded.terms[0].iri, "termCode": ._embedded.terms[0].obo_id, "name": ._embedded.terms[0].label, "url": ("https://terminology.nfdi4chem.de/ts/ontologies/"+._embedded.terms[0].ontology_name+"/terms?iri="+._embedded.terms[0].iri), "inDefinedTermSet": { "@type": "DefinedTermSet", "@id": ._embedded.terms[0].ontology_iri, "name": ._embedded.terms[0].ontology_name, } } }' |\ | |
grep -v '^[{}]$' | |
echo "," | |
} | |
zcat chemotion-datadump-20231206.json.gz |\ | |
while read LINE ; do | |
printf '%s\n' "$LINE" | |
if ( echo "$LINE" | grep -q 'CHMO:[0-9]* ' ) ; then | |
chmo2definedterm "$LINE" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment