Mercurial > repos > galaxyp > peptideshaker
view admin_scripts/build_species.py @ 8:e61db312ce43 draft
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker commit d71ad09fe4eb7a530a3e4d224eba9785646813c9
author | iracooke |
---|---|
date | Thu, 04 Jun 2015 09:31:09 -0400 |
parents | a9e90cdcb97a |
children | b72821cab1d7 |
line wrap: on
line source
#!/usr/bin/env python import sys for line in open( sys.argv[1] ): line = line.strip() if line and not line.startswith('>'): name, id = line.split('\t') line = '<option value="%s">%s</option>' % (name, name) print line