Commit 7a4da613 by Chloe Dequeker

modif options

parent bd420f5e
......@@ -16,9 +16,8 @@ void print_usage() {
"<-lig> name of the ligand\n"
"OPTIONNAL\n"
"=========\n\n"
"<-constructPDB> Specify if the ligand should be output for each docking conformation\n"
"<-outputPDB> Output directory for the constructed PDB (ligand)\n"
" If nothing is specified, the current directory is used\n"
" If nothing is specified, there will be no PDB output\n"
"<-o> Output directory for the docking interface\n"
" If nothing is specified, the current directory is used\n"
"<-pose> Desired conformation. Default will compute all conformations\n"
......@@ -151,7 +150,7 @@ struct argLine* parseLineOfArgument(int argc, char** argv){
if(constructPDB == 1 && outputPDB == NULL){
outputPDB = malloc(3*sizeof(char));
if(outputDir == NULL){
if(outputPDB == NULL){
perror("mallloc");
exit(EXIT_FAILURE);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment