一个通过可访问体积(av)模拟计算md轨迹的fret观测值的库,在av模拟中,标签的空间允许构象空间近似于柔性附着椭球的构象空间。

avtraj的Python项目详细描述


avtraj

avtraj是从md轨迹计算fret观测值的工具。读、写和分析可访问卷(AVS) 使用md轨迹作为输入,只需几行python代码。通过使用Labellib Avtraj提供 获取fret实验用隐式染料模型的最新进展。

avtraj是一个python库,允许用户对分子的可访问卷进行模拟 动力学(MD)轨迹。avtraj是开发新方法的高级接口 用于基于结构的荧光光谱。

功能包括:

    A wide support of diverse MD formats by the use of MDTraj. Extremely fast calculation of AVs by the
    use of LabelLib (e.g. xxxx the speed of yyyy). Extensive analysis functions including those that compute
    inter-dye distances, FRET-efficiencies, fluorescence decays, distance distributions, and an Pythonic API.

avtraj包括一个命令行应用程序avana,用于筛选和分析结构模型。

其他软件与库的关系

labellib是olga软件和高级python库avtraj的核心低级库。这个 不推荐使用的软件fps独立于labellib。

LabelLib and other software/libraries

Olga是一款专门针对实验人员的软件。OLGA提供了一个图形用户界面,用于计算可接近体积(AVS),根据实验观测值筛选一组结构模型,刚体对接, 以及新型微动实验的优化设计。

AvTraj avtraj是一个python库,用于计算可访问卷(avs)、筛选。avtraj有助于开发基于fret的结构模型的新分析方法。avtraj有助于处理 md模拟和处理基于fret的结构模型的python脚本的开发。

FPS是一个具有图形用户界面的软件,用于基于fret的结构建模。fps可以计算可访问体积(avs),根据实验观测值筛选一组结构模型,并可以生成新的结构 利用实验数据建立刚体对接模型。

安装

水蟒

conda --add channels tpeulen
conda install avtraj

代码示例

importmdtrajasmdimportavtrajasavt# First load an MD trajectory by mdtrajtraj=md.load('./examples/hGBP1_out_3.h5')# Pass a trajectory to fps.AVTrajectory. This creates an object, which can be # accessed as a list. The objects within the "list" are accessible volumes  av_traj=avt.AVTrajectory(traj,'18D',attachment_atom_selection='resSeq 7 and name CB')# These accessible volumes can be saved as xyz-fileav_traj[0].save_xyz('test_344.xyz')# The dye parameters can either be passed explicitly on creation of the objectav_traj=avt.AVTrajectory(traj,'18D',attachment_atom_selection='resSeq 7 and name CB',linker_length=25.,linker_width=1.5,radius_1=6.0)# or they can be selected from a predefined set of parameters found in the JSON file dye_definition.json located within# the package directory av_traj=avt.AVTrajectory(traj,'18D',attachment_atom_selection='resSeq 7 and name CB',dye_parameter_set='D3Alexa488')# To calculate a trajectory of distances and distance distributions first a labeling file and a "distance file" # needs to be specified. The distance file contains a set of labeling positions and distances and should be compatible# to the labeling files used by the software "Olga". By default the av_dist=avt.AvDistanceTrajectory(traj,'./examples/hGBP1_distance.json')

引文

  • mdtraj-DOI for Citing MDTraj
  • fps-DOI for Citing FPS

许可证

gnu lgpl版本2.1,或者您可以选择更高版本的许可证。 这个库的各个子部分可以独立地分布在 不同的许可证。查看这些文件以了解它们的特定术语。

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java什么构造使私有serialversionUID有用?   java如何向JSP发送参数并在Spring MVC中更新   java测试Glassfish启动行为   java需要多应用程序IPC的一些指导   java从SQLite检索随机数据   java Apache Flink:NoSuchMethodError在提交Flink作业时出错   java为什么两个具有相同PK的插入成功?如何更新重复密钥?   java输出总是输出else语句   pdfbox Java从PDF文件中提取非重复单词   java For相同的api gson正在工作,但jackson无法解析repsonse,从而向变量返回空值   java从TestNG迁移到JUnit4,处理junitparams@Parameters注释所需的静态方法   java Hibernate检索不带Blob字节数组的文件列表[]   base64 Java加密:Java加密:javax。加密。IllegalBlockSizeException:使用填充密码解密时,输入长度必须是8的倍数   java如何检查文件的扫描程序内容并使用它们分配输入,而不使用nextLine跳过数据?   java TestNG Eclipse插件:如何更改[New>TestNG类]方法的名称前缀?   将信息读入数组时的java格式问题   java获取jsp会话中存储的对象的属性   java如何获取由特定字符集的一系列ASCII值表示的字符?   java如何以编程方式使会话无效?   SpringMVC中的JavaJSON读取JSON数据,在jsp中解析并呈现它