Various display improvements
This commit is contained in:
@ -849,7 +849,7 @@ int build_reference_db(const char* dms_name,
|
||||
free(matrix_view_name);
|
||||
free(matrix_with_lca_view_name);
|
||||
|
||||
fprintf(stderr,"\rDone : 100 %% ");
|
||||
fprintf(stderr,"\rDone : 100 %% \n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -424,7 +424,12 @@ static int print_seq(Obiview_p i_view, Obiview_p o_view,
|
||||
|
||||
tm1=nparam_CalcTwoTM(tparm,oligo1,primer1,o1->patlen) - 273.15;
|
||||
tm2=nparam_CalcTwoTM(tparm,oligo2,primer2,o2->patlen) - 273.15;
|
||||
tm = (tm1 < tm2) ? tm1:tm2;
|
||||
//tm = (tm1 < tm2) ? tm1:tm2;
|
||||
|
||||
if isnan(tm1)
|
||||
tm1 = OBIFloat_NA;
|
||||
if isnan(tm2)
|
||||
tm2 = OBIFloat_NA;
|
||||
|
||||
// Get the taxon structure
|
||||
main_taxon = obi_taxo_get_taxon_with_taxid(taxonomy, taxid);
|
||||
|
@ -655,7 +655,7 @@ int obi_ecotag(const char* dms_name,
|
||||
obi_close_dms(ref_dms, false);
|
||||
obi_close_dms(taxo_dms, false);
|
||||
|
||||
fprintf(stderr,"\rDone : 100 %% ");
|
||||
fprintf(stderr,"\rDone : 100 %% \n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user