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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sequtil_convert.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:42:14  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sequtil_convert.cpp,v 1000.1 2004/06/01 19:42:14 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 official 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:  Mati Shomrat
  35.  *
  36.  * File Description:
  37.  *      Sequence conversion utility.
  38.  */   
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbistd.hpp>
  41. #include <corelib/ncbistr.hpp>
  42. #include <vector>
  43. #include <util/sequtil/sequtil_convert.hpp>
  44. #include "sequtil_convert_imp.hpp"
  45. BEGIN_NCBI_SCOPE
  46. //  -- Conversion methods
  47. // string to string
  48. SIZE_TYPE CSeqConvert::Convert
  49. (const string& src,
  50.  TCoding src_coding,
  51.  TSeqPos pos,
  52.  TSeqPos length,
  53.  string& dst, 
  54.  TCoding dst_coding)
  55. {
  56.     return CSeqConvert_imp::Convert(src, src_coding,
  57.                                     pos, length,
  58.                                     dst, dst_coding);
  59. }
  60. // string to vector
  61. SIZE_TYPE CSeqConvert::Convert
  62. (const string& src,
  63.  TCoding src_coding,
  64.  TSeqPos pos,
  65.  TSeqPos length,
  66.  vector< char >& dst,
  67.  TCoding dst_coding)
  68. {
  69.     return CSeqConvert_imp::Convert(src, src_coding,
  70.                                     pos, length,
  71.                                     dst, dst_coding);
  72. }
  73. // vector to string
  74. SIZE_TYPE CSeqConvert::Convert
  75. (const vector< char >& src,
  76.  TCoding src_coding,
  77.  TSeqPos pos,
  78.  TSeqPos length,
  79.  string& dst,
  80.  TCoding dst_coding)
  81. {
  82.     return CSeqConvert_imp::Convert(src, src_coding,
  83.                                     pos, length,
  84.                                     dst, dst_coding);
  85. }
  86. // vector to vector
  87. SIZE_TYPE CSeqConvert::Convert
  88. (const vector< char >& src,
  89.  TCoding src_coding,
  90.  TSeqPos pos,
  91.  TSeqPos length,
  92.  vector< char >& dst,
  93.  TCoding dst_coding)
  94. {
  95.     return CSeqConvert_imp::Convert(src, src_coding,
  96.                                     pos, length,
  97.                                     dst, dst_coding);
  98. }
  99. // char* to char*
  100. SIZE_TYPE CSeqConvert::Convert
  101. (const char src[],
  102.  TCoding src_coding,
  103.  TSeqPos pos,
  104.  TSeqPos length,
  105.  char dst[],
  106.  TCoding dst_coding)
  107. {
  108.     return CSeqConvert_imp::Convert(src, src_coding,
  109.                                     pos, length,
  110.                                     dst, dst_coding);
  111. }
  112. //  -- Get part of a sequence (same coding conversion)
  113. SIZE_TYPE CSeqConvert::Subseq
  114. (const string& src,
  115.  TCoding coding,
  116.  TSeqPos pos,
  117.  TSeqPos length,
  118.  string& dst)
  119. {
  120.     return CSeqConvert_imp::Subseq(src, coding, pos, length, dst);
  121. }
  122. SIZE_TYPE CSeqConvert::Subseq
  123. (const string& src,
  124.  TCoding coding,
  125.  TSeqPos pos,
  126.  TSeqPos length,
  127.  vector<char>& dst)
  128. {
  129.     return CSeqConvert_imp::Subseq(src, coding, pos, length, dst);
  130. }
  131. SIZE_TYPE CSeqConvert::Subseq
  132. (const vector<char>& src,
  133.  TCoding coding,
  134.  TSeqPos pos,
  135.  TSeqPos length,
  136.  string& dst)
  137. {
  138.     return CSeqConvert_imp::Subseq(src, coding, pos, length, dst);
  139. }
  140. SIZE_TYPE CSeqConvert::Subseq
  141. (const vector<char>& src,
  142.  TCoding coding,
  143.  TSeqPos pos,
  144.  TSeqPos length,
  145.  vector<char>& dst)
  146. {
  147.     return CSeqConvert_imp::Subseq(src, coding, pos, length, dst);
  148. }
  149. SIZE_TYPE CSeqConvert::Subseq
  150. (const char* src,
  151.  TCoding coding,
  152.  TSeqPos pos,
  153.  TSeqPos length,
  154.  char* dst)
  155. {
  156.     return CSeqConvert_imp::Subseq(src, coding, pos, length, dst);
  157. }
  158. // -- Packing
  159. SIZE_TYPE CSeqConvert::Pack
  160. (const string& src,
  161.  TCoding src_coding,
  162.  vector<char>& dst,
  163.  TCoding& dst_coding,
  164.  TSeqPos length)
  165. {
  166.     return CSeqConvert_imp::Pack(src, src_coding, dst, dst_coding, length);
  167. }
  168. SIZE_TYPE CSeqConvert::Pack
  169. (const vector<char>& src,
  170.  TCoding src_coding,
  171.  vector<char>& dst,
  172.  TCoding& dst_coding,
  173.  TSeqPos length)
  174. {
  175.     return CSeqConvert_imp::Pack(src, src_coding, dst, dst_coding, length);
  176. }
  177. SIZE_TYPE CSeqConvert::Pack
  178. (const char* src,
  179.  TSeqPos length,
  180.  TCoding src_coding,
  181.  char* dst,
  182.  TCoding& dst_coding)
  183. {
  184.     return CSeqConvert_imp::Pack(src, length, src_coding, dst, dst_coding);
  185. }
  186. END_NCBI_SCOPE
  187.  /*
  188. * ===========================================================================
  189. *
  190. * $Log: sequtil_convert.cpp,v $
  191. * Revision 1000.1  2004/06/01 19:42:14  gouriano
  192. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  193. *
  194. * Revision 1.2  2004/05/17 21:08:53  gorelenk
  195. * Added include of PCH ncbi_pch.hpp
  196. *
  197. * Revision 1.1  2003/10/08 13:34:37  shomrat
  198. * Initial version
  199. *
  200. *
  201. * ===========================================================================
  202. */