@@ -851,7 +851,8 @@ serial_master(ESL_GETOPTS *go, struct cfg_s *cfg)
851
851
default :
852
852
esl_fatal ("Unexpected error %d reading sequence file %s" , sstatus , dbfp -> filename );
853
853
}
854
-
854
+
855
+ resCnt = 0 ;
855
856
//need to re-compute e-values before merging (when list will be sorted)
856
857
if (esl_opt_IsUsed (go , "-Z" )) {
857
858
resCnt = 1000000 * esl_opt_GetReal (go , "-Z" );
@@ -1050,7 +1051,7 @@ serial_loop(WORKER_INFO *info, ID_LENGTH_LIST *id_length_list, ESL_SQFILE *dbfp,
1050
1051
1051
1052
if (info -> pli -> strands != p7_STRAND_BOTTOMONLY )
1052
1053
{
1053
- info -> pli -> nres += dbsq_dna -> n ;
1054
+ info -> pli -> nres += dbsq_dna -> W ;
1054
1055
1055
1056
/* translate DNA sequence to 3 frame ORFs */
1056
1057
do_sq_by_sequences (info -> gcode , info -> wrk1 , dbsq_dna );
@@ -1063,7 +1064,7 @@ serial_loop(WORKER_INFO *info, ID_LENGTH_LIST *id_length_list, ESL_SQFILE *dbfp,
1063
1064
1064
1065
if (info -> pli -> strands != p7_STRAND_TOPONLY )
1065
1066
{
1066
- info -> pli -> nres += dbsq_dna -> n ;
1067
+ info -> pli -> nres += dbsq_dna -> W ;
1067
1068
1068
1069
/* Reverse complement and translate DNA sequence to 3 frame ORFs */
1069
1070
esl_sq_ReverseComplement (dbsq_dna );
@@ -1237,7 +1238,7 @@ pipeline_thread(void *arg)
1237
1238
1238
1239
if (info -> pli -> strands != p7_STRAND_BOTTOMONLY ) {
1239
1240
1240
- info -> pli -> nres += dnaSeq -> n ;
1241
+ info -> pli -> nres += dnaSeq -> W ;
1241
1242
do_sq_by_sequences (info -> gcode , info -> wrk1 , dnaSeq );
1242
1243
1243
1244
p7_Pipeline_BATH (info -> pli , info -> om , info -> gm , info -> gm_fs , info -> scoredata , info -> bg , info -> th , block -> first_seqidx + i , dnaSeq , info -> wrk1 -> orf_block , info -> wrk2 , info -> gcode , p7_NOCOMPLEMENT );
@@ -1248,7 +1249,7 @@ pipeline_thread(void *arg)
1248
1249
}
1249
1250
1250
1251
if (info -> pli -> strands != p7_STRAND_TOPONLY ) {
1251
- info -> pli -> nres += dnaSeq -> n ;
1252
+ info -> pli -> nres += dnaSeq -> W ;
1252
1253
esl_sq_ReverseComplement (dnaSeq );
1253
1254
do_sq_by_sequences (info -> gcode , info -> wrk1 , dnaSeq );
1254
1255
0 commit comments