annotate build_mods_loc.py @ 1:7a74818e0eeb
draft
Improved some datatype handling
author |
galaxyp |
date |
Thu, 20 Jun 2013 10:53:16 -0400 |
parents |
0578e296cab4 |
children |
|
rev |
line source |
0
|
1 #!/usr/bin/env python
|
|
2
|
|
3 import xml.etree.ElementTree as ET
|
|
4 from os.path import exists
|
|
5
|
|
6 with open("searchgui_mods.loc", "w") as output:
|
|
7 for mods_path in ["searchGUI_mods.xml", "searchGUI_usermods.xml"]:
|
|
8 tree = ET.parse(mods_path)
|
|
9 modifications_el = tree.getroot()
|
|
10 for mod in modifications_el.findall("{http://www.ncbi.nlm.nih.gov}MSModSpec"):
|
|
11 name_el = mod.find("{http://www.ncbi.nlm.nih.gov}MSModSpec_name")
|
|
12 output.write("%s\n" % name_el.text.lower())
|