Skip to content

Instantly share code, notes, and snippets.

@sdumitriu
Created July 13, 2017 18:24
Show Gist options
  • Save sdumitriu/009a9e7b91fcca5356c99211a2866015 to your computer and use it in GitHub Desktop.
Save sdumitriu/009a9e7b91fcca5356c99211a2866015 to your computer and use it in GitHub Desktop.
Search for incorrectly resolved HGNC terms
{{velocity}}
#set ($h = $services.vocabularies.hgnc)
#foreach ($i in $h.search({'id':'*'}, {'rows': '100000'}))
#set ($s = $i.symbol)
#set ($rs = $h.getTerm($i.symbol).symbol)
#if ($s != $rs)
|$s|$rs
#end
#end
{{/velocity}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment