~ubuntu-branches/ubuntu/edgy/ncbi-tools6/edgy

« back to all changes in this revision

Viewing changes to api/alignval.c

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2006-07-19 23:28:07 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060719232807-et3cdmcjgmnyleyx
Tags: 6.1.20060507-3ubuntu1
Re-merge with Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
*
30
30
* Version Creation Date:   6/3/99
31
31
*
32
 
* $Revision: 6.45 $
 
32
* $Revision: 6.46 $
33
33
*
34
34
* File Description:  To validate sequence alignment.
35
35
*
2093
2093
  SeqAlignPtr  salp;
2094
2094
 
2095
2095
  if (hist == NULL) return;
2096
 
  for (salp = hist->assembly; salp != NULL; salp = salp->next) {
2097
 
    ValidateSeqAlign (salp, svp->entityID, svp->message, svp->msg_success, svp->find_remote_bsp, svp->delete_bsp, svp->delete_salp, &svp->dirty);
2098
 
  }
 
2096
  salp = hist->assembly;
 
2097
  /* ValidateSeqAlign will validate the entire chain */
 
2098
  ValidateSeqAlign (salp, svp->entityID, svp->message, svp->msg_success, svp->find_remote_bsp, svp->delete_bsp, svp->delete_salp, &svp->dirty);
2099
2099
}
2100
2100
 
2101
2101
static void ValidateSeqAlignCallback (SeqEntryPtr sep, Pointer mydata,