Skip to content

Commit f831344

Browse files
Merge pull request #7 from manojCoe/config_init
Added config templates
2 parents 6068086 + 731421e commit f831344

File tree

6 files changed

+57
-0
lines changed

6 files changed

+57
-0
lines changed

config/FW_config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_FILE_DIR: |CODES_DIR|/config

config/config.ini

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[RunCalc]
2+
gcmd: g16 < "$input_path$" > "$output_path$"
3+
formchkcmd: formchk "$input_path$" "$output_path$"
4+
5+
[LammpsRunCalc]
6+
lcmd: mpirun -np $SLURM_NTASKS lmp_mpi -in $control_path$
7+
lammps_gpu_cmd: null
8+
9+
[AmbertoolsRunCalc]
10+
acmd: antechamber -i $input_file$ -fi $input_type$ -o $output_file$ -fo $output_type$ -c $charge_method$ -s 2
11+
pcmd: parmchk2 -i $input_file$ -f mol2 -o $output_file$
12+
tcmd: tleap -f $input_file$
13+
14+
[MaestroCalc]
15+
mae_cmd: $SCHRODINGER/utilities/structconvert $input_file$ $output_file$
16+
ffld_cmd: $SCHRODINGER/utilities/ffld_server -imae $input_file$ -version 14 -print_parameters -out_file $output_file$

config/db.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"admin_user": "|ADMIN_USERNAME|",
3+
"admin_password": "|ADMIN_PASSWORD|",
4+
"aliases": {},
5+
"collection": "|COLLECTION|",
6+
"database": "|DB_NAME|",
7+
"host": "|HOSTNAME|",
8+
"port": "|PORT|"
9+
}

config/my_fworker.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: |WORKER_NAME|
2+
category: ''
3+
query: '{}'
4+
env:
5+
db_file: |CODES_DIR|/config/db.json
6+
scratch_dir: null

config/my_launchpad.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
host: |HOSTNAME|
2+
port: |PORT|
3+
name: |LAUNCHPAD_NAME|
4+
username: |ADMIN_USERNAME|
5+
password: |ADMIN_PASSWORD|
6+
logdir: null
7+
strm_lvl: INFO
8+
user_indices: []
9+
wf_user_indices: []
10+
authsource: null
11+
uri_mode: |URI_MODE|
12+
mongoclient_kwargs: {}
13+

config/my_qadapter.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
_fw_name: CommonAdapter
2+
_fw_q_type: SLURM
3+
rocket_launch: rlaunch -w |CODES_DIR|/config singleshot
4+
nodes: 1
5+
walltime: 24:00:00
6+
queue: null
7+
account: null
8+
job_name: null
9+
pre_rocket: null
10+
post_rocket: null
11+
logdir: |CODES_DIR|/logs
12+

0 commit comments

Comments
 (0)