Commit ba6e9cf9 by Chloe Dequeker

WIP on master: a58837d6 bugfix that caused residues to have a wrong output name

parents a58837d6 373dd02a
......@@ -25,6 +25,22 @@ char* deblank(char* input){
return output;
}
struct docking_results* getDataForComplex_ATTRACT(){
char* buf = NULL;
char buf2[100] = "";
FILE* condFile_stream = NULL;
int numberOfConf = 0, rc = 0;
int idConf = 0, buf4 = 0, i = 0;
float buf3 = 0;
size_t len = 2000;
struct docking_results* dock_res = NULL;
condFile_stream = fopen(dockingFile,"r");
return NULL;
}
struct docking_results* getDataForComplex(){
char* buf = NULL;
char buf2[100] = "";
......
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