• 个人学习随笔


    下面是我自己最近所学习的知识。

    之前自己处理的数据集发现了大问题,现在又重新处理。

    关于从pdb数据库中提取一级序列

    定义一个PDBparser类,定义parsePrimaryStructure()函数,用pdbparser.parsePrimaryStructure(file)实现一级序列提取的功能。

    import json;
        class PDBparser():    
            def parse(self,PDBfile,indent = False):
                '''
                @return: The full information parsed from the PDBFile
                @param PDBFile: The full path of the PDB file, str
                '''
                content = {} # The full information parsed from the PDBFile
                priStructure = content['primary_structure'] = []  # The primary structure parsed from the PDBFile
                tertiary_structure = content['tertiary_structure'] ={}
                terStructure = tertiary_structure['chains'] = [] # The teritary structure parsed from the PDBFile
                #residueindexlist = set()
                lines = self.__loadPDBfile(PDBfile)
                langthinformation = self.__parseLine(lines,content) 
              if indent:
                  return content,langthinformation # for test
              else:
                  return content
         def parsePrimaryStructure(self,PDBfile):
              '''
              @return: The full information parsed from the PDBFile
              @param PDBFile: The full path of the PDB file, str
              '''
              priStructure = []; # The primary structure parsed from the PDBFile
              lines = self.__loadPDBfile(PDBfile)
              for line in lines:
                  header = line.split()[0]
                  if header == 'SEQRES':
                      self.__parsePriLine(line, priStructure)
              return priStructure 

    定义main函数

     if __name__ == "__main__": 
         print('please input the path of the PDBfile:such as E:\pdb\pdb3rum.ent')#输入pdb文件
         file=input()
         pdbparser = PDBparser()
         #content = pdbparser.parseTertiaryStructure(file)
         content = pdbparser.parsePrimaryStructure(file)  
         formatinput = json.dumps(content, indent=1)
         print(formatinput)
         print("Done")
  • 相关阅读:
    margin+absolute布局:右栏固定主内容自适应 demo
    localForage——轻松实现 Web 离线存储
    迷你MVVM框架 avalonjs 1.2.6发布
    收起.NET程序的dll来
    从锅炉工到AI专家 ---- 系列教程
    DevExpress中实现GridControl的分页功能
    树莓派 ---- 个人总结
    树莓派安装内网穿透版花生壳服务
    winform 多线程中ShowDialog()模式窗口无效的解决办法
    局域网匿名访问共享文件
  • 原文地址:https://www.cnblogs.com/lffang/p/6120123.html
Copyright © 2020-2023  润新知