Mercurial > repos > galaxyp > peptideshaker
view admin_scripts/build_mods_loc.py @ 57:da885ca16cb2 draft
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker commit 44a20633e04b2396fad4b568904a257769b2bbc1"
author | galaxyp |
---|---|
date | Tue, 16 Mar 2021 15:12:03 +0000 |
parents | bb0130ff73ce |
children |
line wrap: on
line source
#!/usr/bin/env python import xml.etree.ElementTree as ET with open("searchgui_mods.loc.sample", "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())