J's Blog

我心有海,暗流澎湃

1 关于 AutoDock

AutoDock 是一个预测小分子(如底物或候选药物)如何与已知 3D 结构的受体结合的分子对接工具。目前主要有 AutoDock 4 和 AutoDock Vina 两种发行版本,其中 AutoDock 4 还有一个 GPU 加速版本——AutoDock-GPU。1

AutoDock 4 进行分子对接时由两部分组成:

  1. autogrid 计算受体的 Grid;

  2. autodock 执行配体与靶蛋白 Grid 的对接。

注:AutoDock Vina 不需要选择原子类型及预先计算 Grid,Grid 在执行对接时计算,因此能够用于虚拟筛选(批量对接);且 AutoDock Vina 相对 AutoDock 4 拥有更高的精度,更加推荐使用 AutoDock Vina。

阅读全文 »

本文是南开大学孙宏伟老师《量子化学与分子力学/分子模拟》课程 Gaussian 实操部分的笔记,孙老师这部分的授课内容主要基于《Exploring Chemistry with Electronic Structure Methods》第二版和第三版中的实例,这本书也被称为“高斯圣经”,非常具有代表性。我在孙老师的授课基础上,同时也参考了此书和其它的一些资料,尽可能从解决实际问题的角度出发,整理整篇笔记。

1 Gaussian 文件

1.1 Gaussian 输入文件结构

Gaussian 的输入文件后缀名为“.gjf”,下面以示例的“e2_01.gjf”为例:

1
2
3
4
5
6
7
8
9
10
11
%chk=e2_01
# RHF/6-31G(d) sp

Formaldehyde Single Point Energy

0 1
C 0. 0. 0.
O 0. 1.22 0.
H .94 -.54 0.
H -.94 -.54 0.

阅读全文 »

1 前言

  根据量子力学理论,波函数能够给出一个系统系全部物理量的信息,因此只要求解薛定谔方程Schrödinger equation)就能够准确预测整个体系的各种性质。但是对于多体系来说,计算过于复杂,准确求解薛定谔方程几乎不可能。密度泛函理论Density-functional theory , DFT )正是为了求解薛定谔方程而发展的一种近似方法,通过近似和变换,能够较为准确地求解薛定谔方程,使理论化学计算成为可能。 [1]

  开始之前,首先引入泛函Functional)的概念。泛函是函数的函数(A functional is a function of a function),即 F[f],其中 f(x) 也是一个函数。密度泛函从字面意思来讲就是,将薛定谔方程表达为电子密度的泛函。

2 Born–Oppenheimer 近似

  对于一个多体系,既包含了原子核又包括了电子。考虑到原子核的质量要比电子大很多,Born–Oppenheimer 近似(Born–Oppenheimer approximation)认为原子核相对于电子接近静止,可以将原子核变量从薛定谔方程中分离。薛定谔方程简化成关于电子变量的函数\[ {\displaystyle {\hat {H}}\Psi =\left[{\hat {T}}+{\hat {V}}+{\hat {U}}\right]\Psi =\left[\sum _{i=1}^{N}\left(-{\frac {\hbar ^{2}}{2m_{i}}}\nabla _{i}^{2}\right)+\sum _{i=1}^{N}V(\mathbf {r} _{i})+\sum _{i<j}^{N}U\left(\mathbf {r} _{i},\mathbf {r} _{j}\right)\right]\Psi =E\Psi ,} \]

阅读全文 »

Introduction

PyMOL is a user-sponsored molecular visualization system on an open-source foundation, maintained and distributed by Schrödinger.1 There are official binaries available for students,2 and unofficial versions out there as well. But the educational-use-only PyMOL is not provided for the purposes of academic research or publication.

So, I will explain how to install the unofficial PyMOL software in this tutorial.

PyMOL was written in the programming language Python, normal operation of the program required the Python environment. It's recommended to using Anaconda to create an isolated Python environment for PyMOL, if you need to use other softwares required Python environment in the future.

Install Anaconda to Create Python Environment

阅读全文 »

1 Ubuntu更新内核

  1) 查看 Linux 内核版本:

uname –r

  2) 进入 https://kernel.ubuntu.com/~kernel-ppa/mainline/ 下载需要 3(或4)个文件:

1
2
3
4
linux-headers-VERSION-NUMBER_all.deb
linux-headers-VERSION-NUMBER-generic_amd64.deb
linux-image-unsigned-VERSION-NUMBER-generic_amd64.deb
linux-image-modules-VERSION-NUMBER-generic_amd64.deb # if available
阅读全文 »

1 Windows 10 启用 Administrator 账户

  开启:以管理员权限运行命令提示符,输入 net user administrator /active:yes 回车。

  关闭:以管理员权限运行命令提示符,输入 net user administrator /active:no 回车。

2 Chrome 无法保存http协议的下载文件

  在网址栏中输入 chrome://flags/#treat-unsafe-downloads-as-active-content,将“Treat risky downloads over insecure connections as active mixed content”改为“Disabled”。

阅读全文 »

1 写在前面

  目的:规避风险,捍卫权益;锻炼思维,开拓视角。

  背景:非法学研究生,无法学背景。

  目标:以通过法考为手段,初步培养法律思维,了解法律体系的运转。

2 整体规划

阅读全文 »

  systemd 是一个 Linux 系统基础组件的集合,提供了一个系统和服务管理器,运行为 PID 1 并负责启动其它程序。

  systemctl 是 systemd 的主命令,通常与 Unit 的配置文件配合,用于管理系统。

Unit 的配置文件

  每一个 Unit 都有一个配置文件,告诉 systemd 怎么启动这个 Unit 。

  systemd 默认从/etc/systemd/system/读取配置文件。但一般通过符号链接指向/usr/lib/systemd/system/,这才是实际存放配置文件目录。

阅读全文 »
0%