diff build_mods_loc.py @ 0:0578e296cab4 draft

Initial commit.
author galaxyp
date Fri, 10 May 2013 17:58:22 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/build_mods_loc.py	Fri May 10 17:58:22 2013 -0400
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+
+import xml.etree.ElementTree as ET
+from os.path import exists
+
+with open("searchgui_mods.loc", "w") as output:
+    for mods_path in ["searchGUI_mods.xml", "searchGUI_usermods.xml"]:
+        tree = ET.parse(mods_path)
+        modifications_el = tree.getroot()
+        for mod in modifications_el.findall("{http://www.ncbi.nlm.nih.gov}MSModSpec"):
+            name_el = mod.find("{http://www.ncbi.nlm.nih.gov}MSModSpec_name")
+            output.write("%s\n" % name_el.text.lower())