-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,28 +2,25 @@ | |
|
||
banner=""" | ||
***************************************************************************************** | ||
autoDIA | ||
autoDIAS | ||
Dennis Svatunek | ||
UCLA | ||
[email protected] | ||
@clickchemist | ||
Download the newest version from: | ||
https://github.com/dsvatunek/autoDIA | ||
https://github.com/dsvatunek/autoDIAS | ||
Please cite: | ||
***************************************************************************************** | ||
Python wrapper for several computational chemistry software packages to automatically perform | ||
Distortion/Interaction analysis calculations (also know as Activation Strain Analysis). | ||
Distortion/Interaction Activation Strain analysis calculations. | ||
""" | ||
|
||
from DIA_inputparser import * | ||
from DIA_analysis import * | ||
from DIA_reduce_reorder import * | ||
from DIAS_inputparser import * | ||
from DIAS_analysis import * | ||
from DIAS_reduce_reorder import * | ||
import argparse, sys, time, subprocess, os, datetime, copy | ||
|
||
__version__= '1.0.0' | ||
|