各PDBエントリーのタイトル(pdbx_descriptor)、キーワード(pdbx_keywords)、単位格子の3辺の長さと角度、高分子鎖の数、高分子鎖の合計化学式量を得る
検索はこちら
SELECT cell.pdbid, struct.pdbx_descriptor, struct_keywords.pdbx_keywords, cell.length_a, cell.length_b, cell.length_c, cell.angle_alpha, cell.angle_beta, cell.angle_gamma, SUM(entity.pdbx_number_of_molecules) AS number_of_molecules, SUM(entity.pdbx_number_of_molecules * entity.formula_weight) AS weight FROM cell JOIN struct ON cell.pdbid = struct.pdbid JOIN struct_keywords ON cell.pdbid = struct_keywords.pdbid JOIN entity ON cell.pdbid = entity.pdbid WHERE entity.type = 'polymer' GROUP BY cell.pdbid, struct.pdbx_descriptor, struct_keywords.pdbx_keywords, cell.length_a, cell.length_b, cell.length_c, cell.angle_alpha, cell.angle_beta, cell.angle_gamma
作成日: 2021-02-01 (最終更新日: more than 1 year ago)






