Mercurial > repos > galaxyp > peptideshaker
view admin_scripts/build_species.py @ 0:a9e90cdcb97a draft
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
author | galaxyp |
---|---|
date | Sat, 30 May 2015 05:25:00 -0400 |
parents | |
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