本文整理匯總了Python中MDAnalysis.Universe.split方法的典型用法代碼示例。如果您正苦於以下問題:Python Universe.split方法的具體用法?Python Universe.split怎麽用?Python Universe.split使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MDAnalysis.Universe
的用法示例。
在下文中一共展示了Universe.split方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: process_trajectory
# 需要導入模塊: from MDAnalysis import Universe [as 別名]
# 或者: from MDAnalysis.Universe import split [as 別名]
def process_trajectory(args):
start, end = args.region.split('-')
plane = [int(x) for x in args.plane.split(',')]
univ = Universe(args.topo,args.traj)
results = []
for ts in univ.trajectory:
norm = get_normal(univ, atoms=plane)
temp = get_region(univ, start, end)
if norm is not None and temp is not None and len(temp) > 0:
angle = get_vector(temp)
name = univ.split('/')[-1]
if angle is not None:
results.append(dot(norm, angle))
if args.graph and len(results) > 0:
import matplotlib.pyplot as plt
ysort = sorted(list(enumerate(results,start=1)), key=lambda kv: float(kv[1]))
x, y = zip(*ysort)
ind = arange(len(x))
plt.plot(y, ind, color='r')
plt.yticks(ind, x)
print ysort
plt.show()
return