mirror of
https://github.com/rdk/p2rank.git
synced 2026-06-04 12:44:24 +08:00
45 lines
1.0 KiB
Groovy
45 lines
1.0 KiB
Groovy
import cz.siret.prank.program.params.Params
|
|
|
|
/**
|
|
* Parameters useful in training phase.
|
|
*/
|
|
(params as Params).with {
|
|
|
|
/**
|
|
* define this if you want dataset program parameters to be evaluated relative to this directory
|
|
* (set absolute path or path relative to install dir, null defaults to working dir)
|
|
*/
|
|
dataset_base_dir = "../../pocket-rank-data/datasets"
|
|
|
|
/**
|
|
* all output of the prorgam will be stored in subdirectores of this directory
|
|
* (set absolute path or path relative to install dir, null defaults to working dir)
|
|
*/
|
|
output_base_dir = "../../pocket-rank-results"
|
|
|
|
/**
|
|
* produce pymol visualisations
|
|
*/
|
|
visualizations = false
|
|
|
|
|
|
/**
|
|
* stop processing a datsaset on the first unrecoverable error with a dataset item
|
|
*/
|
|
fail_fast = true
|
|
|
|
|
|
delete_models = false
|
|
|
|
delete_vectors = false
|
|
|
|
/**
|
|
* keep datasets (structures and Connolly points) in memory between crossval/seedloop iterations
|
|
*/
|
|
cache_datasets = true
|
|
|
|
log_cases = true
|
|
|
|
|
|
}
|