forked from Okonce/CIMtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modelbuilder launcher moved to setup.py dragos launchers fixed. now use configs. config.py refactored readme upd
- Loading branch information
Ramil Nugmanov
committed
Apr 13, 2017
1 parent
9ecc16a
commit 7948a1d
Showing
10 changed files
with
108 additions
and
51 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
MODTools | ||
========= | ||
classes for models preparation | ||
|
||
usage | ||
===== | ||
modeler -h | ||
|
||
|
||
INSTALL | ||
===== | ||
|
||
*step 1:* | ||
|
||
pip install -U git+https://github.com/stsouko/MODtools.git@master#egg=MODtools --process-dependency-links --allow-all-external | ||
|
||
*step 2:* | ||
|
||
type | ||
|
||
modeler -h | ||
|
||
*step 3:* | ||
|
||
add or edit ~/.MODtools.rc or /etc/.MODtools.rc file. local *.rc has higher priority. | ||
|
||
GACONF=~/GAconfig | ||
UTILS_DIR=~ | ||
CHMXN_DIR=~/ChemAxon | ||
|
||
replace default paths to actual. | ||
* GACONF - Dragos's Genetic SVM optimizer | ||
* CHMXN_DIR - dir with JChem distributive | ||
* UTILS_DIR - dir with Dragos's utilities | ||
|
||
edit `~/.MODtools.ini` or add `/etc/.MODtools.ini` | ||
or add file into package `MODtools/.MODtools.ini` [useful for unpacked MODtools Lib] | ||
|
||
priority: `MODtools/.MODtools.ini` >> `~/.MODtools.ini` >> `/etc/.MODtools.ini` |
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 |
---|---|---|
@@ -1,9 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
UTILS_DIR=/home/stsouko | ||
CHMXN_DIR=/home/stsouko/ChemAxon | ||
UTILS_DIR=~ | ||
CHMXN_DIR=~/ChemAxon | ||
|
||
if [ -f /etc/.MODtools.rc ]; then | ||
. /etc/.MODtools.rc | ||
fi | ||
|
||
if [ -f ~/.MODtools.rc ]; then | ||
. ~/.MODtools.rc | ||
fi | ||
|
||
export SETUP_DIR=${UTILS_DIR}/Utils | ||
export FORCEFIELD=${SETUP_DIR}/cvffTemplates.xml | ||
export CLASSPATH=${CHMXN_DIR}/JChem/lib/jchem.jar:${UTILS_DIR}: | ||
|
||
java Utils/CA_Prop_Map2011 -f $1 -o $2 -stdoptions $3 | ||
java Utils/CA_Prop_Map2011 -f $1 -o $2 -stdoptions $3 |
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
typing | ||
pandas | ||
scipy | ||
dill | ||
sortedcontainers | ||
sklearn | ||
requests | ||
git+https://github.com/stsouko/CGRtools.git@master#egg=CGRtools |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[easy_install] | ||
allow_hosts = github.com, pypi.python.org |
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