?? autoglobal.h
字號:
#ifndef _AUTOGLOBAL#define _AUTOGLOBAL#include <sys/types.h>#include <string.h>#include <stdio.h>/******************************************************************************//* Name: autoglobal.h *//* Function: Global variables for Autodock modules. *//* Copyright: (C) TSRI *//*----------------------------------------------------------------------------*//* Author: Garrett M. Morris *//* *//* e-mail: garrett@scripps.edu *//* *//* The Scripps Research Institute *//* Department of Molecular Biology, MB5 *//* 10666 North Torrey Pines Road *//* La Jolla, CA 92037. *//* *//* Date: 03/18/93 *//*----------------------------------------------------------------------------*//* Inputs: None. *//* Returns: Nothing. *//* Globals: programname, AutoGridHelp, AutoDockHelp, command_mode, *//* command_in_fp, command_out_fp, GPF, logFile. *//*----------------------------------------------------------------------------*//* Modification Record *//* Date Inits Comments *//* 03/18/93 GMM Created. *//******************************************************************************//*----------------------------------------------------------------------------*//* Globals, *//*----------------------------------------------------------------------------*/char *programname;char AutoDockHelp[] = " -p parameter_filename\n -l log_filename\n -o (Use old PDBQ format, charge q in columns 55-61)\n -k (Keep original residue numbers)\n -i (Ignore header-checking)\n -t (Parse the PDBQ file to check torsions, then stop.)\n -c < command_file (Command mode, by file)\n -c | control_program (Command mode, by control_program)\n\n";char AutoGridHelp[] = "-p parameter_filename\n-l log_filename\n-o (old PDBQ format)\n-d (increment debug level)\n-u (display this message)\n";char dock_param_fn[MAX_CHARS];char grid_param_fn[MAX_CHARS];int command_mode = FALSE;int debug = 0;int ElecMap = 0;int ignore_errors = FALSE;int keepresnum = 0;int oldpdbq = FALSE;int parse_tors_mode = FALSE;float idct = 1.;FILE *command_in_fp;FILE *command_out_fp;FILE *parFile;FILE *GPF;FILE *logFile;/*** struct Quat {** float angle;** float vec[SPACE];** };*/#endif /*_AUTOGLOBAL*//* EOF */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -