gapinfo.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gapinfo.c,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:07:59  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: gapinfo.c,v 1000.1 2004/06/01 18:07:59 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's offical duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author: Ilya Dondoshansky
  35.  *
  36.  */
  37. /** @file gapinfo.c
  38.  * Initialization and freeing of structures for gapped alignment
  39.  */
  40. static char const rcsid[] = 
  41.     "$Id: gapinfo.c,v 1000.1 2004/06/01 18:07:59 gouriano Exp $";
  42. #include <algo/blast/core/gapinfo.h>
  43. GapStateArrayStruct* 
  44. GapStateFree(GapStateArrayStruct* state_struct)
  45. {
  46. GapStateArrayStruct* next;
  47. while (state_struct)
  48. {
  49. next = state_struct->next;
  50. sfree(state_struct->state_array);
  51. sfree(state_struct);
  52. state_struct = next;
  53. }
  54. return NULL;
  55. }
  56. /*
  57. Allocates an EditScriptPtr and puts it on the end of
  58. the chain of EditScriptPtr's.  Returns a pointer to the
  59. new one.
  60. */
  61. GapEditScript* 
  62. GapEditScriptNew(GapEditScript* old)
  63. {
  64. GapEditScript* new;
  65. new = (GapEditScript*) calloc(1, sizeof(GapEditScript));
  66. if (old == NULL)
  67. return new;
  68. while (old->next != NULL)
  69. {
  70. old = old->next;
  71. }
  72. old->next = new;
  73. return new;
  74. }
  75. GapEditScript*
  76. GapEditScriptDelete(GapEditScript* old)
  77. {
  78. GapEditScript* next;
  79. while (old)
  80. {
  81. next = old->next;
  82. sfree(old);
  83. old = next;
  84. }
  85. return old;
  86. }
  87. GapEditBlock*
  88. GapEditBlockNew(Int4 start1, Int4 start2)
  89. {
  90. GapEditBlock* edit_block;
  91. edit_block = (GapEditBlock*) calloc(1, sizeof(GapEditBlock));
  92. edit_block->start1 = start1;
  93. edit_block->start2 = start2;
  94. return edit_block;
  95. }
  96. GapEditBlock*
  97. GapEditBlockDelete(GapEditBlock* edit_block)
  98. {
  99. if (edit_block == NULL)
  100. return NULL;
  101. edit_block->esp = GapEditScriptDelete(edit_block->esp);
  102. sfree(edit_block);
  103. return edit_block;
  104. }