當前位置: 首頁>>代碼示例>>Python>>正文


Python Relax_data_store.pipe_name_r2eff方法代碼示例

本文整理匯總了Python中data_store.Relax_data_store.pipe_name_r2eff方法的典型用法代碼示例。如果您正苦於以下問題:Python Relax_data_store.pipe_name_r2eff方法的具體用法?Python Relax_data_store.pipe_name_r2eff怎麽用?Python Relax_data_store.pipe_name_r2eff使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在data_store.Relax_data_store的用法示例。


在下文中一共展示了Relax_data_store.pipe_name_r2eff方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1:

# 需要導入模塊: from data_store import Relax_data_store [as 別名]
# 或者: from data_store.Relax_data_store import pipe_name_r2eff [as 別名]
    return dx_set_val, dx_clust_val

# Now starting
##################################################################################
# Set up the data pipe.
##################################################################################

# Extract the models
model_create = ds.data[0]
model_analyse = ds.data[1]

# Create the data pipe.
ds.pipe_name = 'base pipe'
ds.pipe_type = 'relax_disp'
ds.pipe_bundle = 'relax_disp'
ds.pipe_name_r2eff = "%s_%s_R2eff"%(model_create, ds.pipe_name )
pipe.create(pipe_name=ds.pipe_name, pipe_type=ds.pipe_type, bundle = ds.pipe_bundle)

# Generate the sequence.
cur_spins = ds.data[2]
for res_name, res_num, spin_name, params in cur_spins:
    spin.create(res_name=res_name, res_num=res_num, spin_name=spin_name)

# Set isotope
spin.isotope('15N', spin_id='@N')

# Extract experiment settings.
exps = ds.data[3]

# Now loop over the experiments, to set the variables in relax.
exp_ids = []
開發者ID:pombredanne,項目名稱:relax,代碼行數:33,代碼來源:cpmg_synthetic.py


注:本文中的data_store.Relax_data_store.pipe_name_r2eff方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。