diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-11 16:17:57 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-11 16:17:57 +0530 |
commit | 004f4513c8cd5cfffbf69484fb39a3d7bc98bd49 (patch) | |
tree | de2e1f56a9cca21b6b94f24f6c75409c274ca5de /scripts/main.sh | |
parent | d539597dab80833389797cff73a7b157abd33fe7 (diff) |
shifting hardcoded figures to another level
Diffstat (limited to 'scripts/main.sh')
-rwxr-xr-x | scripts/main.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/main.sh b/scripts/main.sh index 68397fb..a165994 100755 --- a/scripts/main.sh +++ b/scripts/main.sh @@ -137,16 +137,18 @@ if [[ $dockingCheck == "true" ]]; then vina --receptor $proteinPath --ligand $ligandPath --config $config fi -if [[ $visualisations == "true" ]]; then - file=$(echo "$ligandPath" | cut -f 1 -d '.') - python3 /src/scripts/quick-ligand-protein.py -p $proteinPath -l "$(echo $file)_out.pdbqt" -fi + if [[ $interactions == "true" ]]; then python3 /src/scripts/get-best.py -p $proteinPath -l "$(echo $file)_out.pdbqt" python3 /src/plip/plipcmd.py -f best.pdb -qpxy python3 /src/scripts/get_dock_score.py -l "$(echo $file)_out.pdbqt" -p $proteinPath > report.md python3 /src/scripts/makeReport.py --input . >> report.md + if [[ $visualisations == "true" ]]; then + file=$(echo "$ligandPath" | cut -f 1 -d '.') + python3 /src/scripts/quick-ligand-protein.py -p $proteinPath -l "$(echo $file)_out.pdbqt" + python3 /src/scripts/add-pictures.py + fi pandoc -V geometry:margin=1in report.md --pdf-engine=xelatex -o $name.pdf fi |