当前位置: 首页>>代码示例>>Python>>正文


Python UndoHandle.close方法代码示例

本文整理汇总了Python中Bio.File.UndoHandle.close方法的典型用法代码示例。如果您正苦于以下问题:Python UndoHandle.close方法的具体用法?Python UndoHandle.close怎么用?Python UndoHandle.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Bio.File.UndoHandle的用法示例。


在下文中一共展示了UndoHandle.close方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_get_sprot_raw

# 需要导入模块: from Bio.File import UndoHandle [as 别名]
# 或者: from Bio.File.UndoHandle import close [as 别名]
 def test_get_sprot_raw(self):
     """Bio.ExPASy.get_sprot_raw("O23729")"""
     identifier = "O23729"
     # This is to catch an error page from our proxy:
     handle = UndoHandle(ExPASy.get_sprot_raw(identifier))
     if _as_string(handle.peekline()).startswith("<!DOCTYPE HTML"):
         raise IOError
     record = SeqIO.read(handle, "swiss")
     handle.close()
     self.assertEqual(record.id, identifier)
     self.assertEqual(len(record), 394)
     self.assertEqual(seguid(record.seq), "5Y08l+HJRDIlhLKzFEfkcKd1dkM")
开发者ID:lennax,项目名称:biopython,代码行数:14,代码来源:test_SeqIO_online.py

示例2: extract_organisms

# 需要导入模块: from Bio.File import UndoHandle [as 别名]
# 或者: from Bio.File.UndoHandle import close [as 别名]
def extract_organisms(file, num_records):
    scanner = Fasta._Scanner()
    consumer = SpeciesExtractor()

    file_to_parse = UndoHandle(open(file, "r"))

    for fasta_record in range(num_records):
        scanner.feed(file_to_parse, consumer)

    file_to_parse.close()

    return consumer.species_list
开发者ID:whosaysni,项目名称:biopython-doc-ja,代码行数:14,代码来源:fasta_consumer.py

示例3: test_get_sprot_raw

# 需要导入模块: from Bio.File import UndoHandle [as 别名]
# 或者: from Bio.File.UndoHandle import close [as 别名]
 def test_get_sprot_raw(self):
     """Bio.ExPASy.get_sprot_raw("O23729")"""
     identifier = "O23729"
     try:
         #This is to catch an error page from our proxy:
         handle = UndoHandle(ExPASy.get_sprot_raw(identifier))
         if _as_string(handle.peekline()).startswith("<!DOCTYPE HTML"):
             raise IOError
         record = SeqIO.read(handle, "swiss")
         handle.close()
     except IOError:
         raise MissingExternalDependencyError(
               "internet (or maybe just ExPASy) not available")
     self.assertEqual(record.id, identifier)
     self.assertEqual(len(record), 394)
     self.assertEqual(seguid(record.seq), "5Y08l+HJRDIlhLKzFEfkcKd1dkM")
开发者ID:NYCiGEM,项目名称:NYC_Software_2011,代码行数:18,代码来源:test_SeqIO_online.py


注:本文中的Bio.File.UndoHandle.close方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。