changed the output file names

This commit is contained in:
Heng Li
2019-12-30 12:01:54 -05:00
parent 30eddefc57
commit 3a61b1b0b0
4 changed files with 102 additions and 78 deletions
+1 -1
View File
@@ -1717,7 +1717,7 @@ void Output_PAF()
fprintf(stderr, "Writing PAF to disk ...... \n");
char* paf_name = (char*)malloc(strlen(asm_opt.output_file_name)+5);
sprintf(paf_name, "%s.paf", asm_opt.output_file_name);
sprintf(paf_name, "%s.ovlp.paf", asm_opt.output_file_name);
FILE* output_file = fopen(paf_name, "w");
uint64_t i, j;
ma_hit_t_alloc* sources = R_INF.paf;