Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/allpy/annotate/c54d6100005b/allpy/util.py
Дата изменения: Unknown
Дата индексирования: Sun Mar 2 07:34:11 2014
Кодировка:
allpy: allpy/util.py annotate

allpy

annotate allpy/util.py @ 291:c54d6100005b

allpy.fasta.save_file: also do NOT produce extra spaces if either of name or description is not given
author Daniil Alexeyevsky <me.dendik@gmail.com>
date Thu, 16 Dec 2010 03:04:15 +0300
parents
children 12a2dfa5f2a8
rev   line source
me@287 1 """Miscellanous utilities.
me@287 2 """
me@287 3
me@287 4 def unzip(seq):
me@287 5 a, b = [], []
me@287 6 for x, y in seq:
me@287 7 a.append(x)
me@287 8 b.append(y)
me@287 9 return a, b
me@287 10
me@287 11 # vim: set et ts=4 sts=4 sw=4: