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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: alnmgr_sample.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 18:31:40  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: alnmgr_sample.cpp,v 1000.2 2004/06/01 18:31:40 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:  Kamen Todorov, NCBI
  35. *
  36. * File Description:
  37. *   Sample alignment manager application
  38. *
  39. * ===========================================================================
  40. */
  41. #include <ncbi_pch.hpp>
  42. #include <corelib/ncbiapp.hpp>
  43. #include <corelib/ncbiargs.hpp>
  44. #include <corelib/ncbienv.hpp>
  45. #include <connect/ncbi_core_cxx.hpp>
  46. #include <serial/iterator.hpp>
  47. #include <serial/objistr.hpp>
  48. #include <serial/objostr.hpp>
  49. #include <serial/serial.hpp>
  50. #include <objects/seq/Bioseq.hpp>
  51. #include <objects/seqloc/Seq_id.hpp>
  52. #include <objects/seqloc/Textseq_id.hpp>
  53. #include <objects/seqset/Seq_entry.hpp>
  54. #include <objects/seqalign/Seq_align.hpp>
  55. #include <objects/seqalign/Seq_align_set.hpp>
  56. #include <objtools/data_loaders/genbank/gbloader.hpp>
  57. #include <objmgr/object_manager.hpp>
  58. #include <objmgr/scope.hpp>
  59. #include <objmgr/seq_vector.hpp>
  60. #include <objtools/alnmgr/alnmix.hpp>
  61. USING_SCOPE(ncbi);
  62. USING_SCOPE(objects);
  63. class CSampleAlnmgrApplication : public CNcbiApplication
  64. {
  65.     virtual void Init(void);
  66.     virtual int  Run(void);
  67. };
  68. void CSampleAlnmgrApplication::Init(void)
  69. {
  70.     // Create command-line argument descriptions class
  71.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  72.     // Specify USAGE context
  73.     arg_desc->SetUsageContext
  74.         (GetArguments().GetProgramBasename(),
  75.          "Alignment manager demo program: Seq-align extractor/viewer");
  76.     // Describe the expected command-line arguments
  77.     arg_desc->AddDefaultKey
  78.         ("in", "InputFile",
  79.          "name of file to read from (standard input by default)",
  80.          CArgDescriptions::eInputFile, "-", CArgDescriptions::fPreOpen);
  81.     arg_desc->AddDefaultKey
  82.         ("out", "OutputFile",
  83.          "name of file to write to (standard output by default)",
  84.          CArgDescriptions::eOutputFile, "-", CArgDescriptions::fPreOpen);
  85.     arg_desc->AddDefaultKey
  86.         ("asnout", "OutputFile",
  87.          "name of asn file to write to (standard output by default)",
  88.          CArgDescriptions::eOutputFile, "-", CArgDescriptions::fPreOpen);
  89.     // Setup arg.descriptions for this application
  90.     SetupArgDescriptions(arg_desc.release());
  91. }
  92. int CSampleAlnmgrApplication::Run(void)
  93. {
  94.     // Setup application registry, error log, and MT-lock for CONNECT library
  95.     CONNECT_Init(&GetConfig());
  96.     // Get arguments
  97.     CArgs args = GetArgs();
  98.     CSeq_align in_sa;
  99.     CSeq_entry in_se;
  100.     // Read the file
  101.     {{
  102.         auto_ptr<CObjectIStream> in
  103.             (CObjectIStream::Open(eSerial_AsnText,
  104.                                    args["in"].AsInputFile()));
  105.         *in >> in_se;
  106.     }}
  107.     auto_ptr<CObjectOStream> asn_out 
  108.         (CObjectOStream::Open(eSerial_AsnText, args["asnout"].AsOutputFile()));
  109.     asn_out->SetSeparator("n");
  110.     CNcbiOstream& out = args["out"].AsOutputFile();
  111.     CObjectManager objmgr;
  112.     objmgr.RegisterDataLoader(*new CGBDataLoader("ID"),
  113.                               CObjectManager::eDefault);
  114.     CScope scope(objmgr);
  115.     scope.AddDefaults();
  116.     CAlnMix mix(scope);
  117.     for (CTypeIterator<CDense_seg> sa_it = Begin(in_se); sa_it; ++sa_it) {
  118.         mix.Add(*sa_it);
  119.     }
  120.     mix.Merge(CAlnMix::fGen2EST |
  121.               CAlnMix::fNegativeStrand |
  122.               CAlnMix::fTruncateOverlaps);
  123.     *asn_out << mix.GetDenseg();
  124.     *asn_out << Separator;
  125.     asn_out->Flush();
  126.     CAlnVec av(mix.GetDenseg(), scope);
  127.     av.SetAnchor(0);
  128.     CAlnMap::TSignedRange range(5, 12);
  129.     CRef<CAlnMap::CAlnChunkVec> chunk_vec = av.GetAlnChunks(1, range);
  130.     
  131.     for (int i = 0;  i < chunk_vec->size();  i++) {
  132.         CConstRef<CAlnMap::CAlnChunk> chunk = (*chunk_vec)[i];
  133.         if (!chunk->IsGap()) {
  134.             out << chunk->GetRange().GetFrom() << "-"
  135.                 << chunk->GetRange().GetTo();
  136.         } else {
  137.             out << "gap";
  138.         }
  139.         if (chunk->GetType() & CAlnMap::fSeq) {
  140.             cout << "(Seq)";
  141.         }
  142.         if (chunk->GetType() & CAlnMap::fNotAlignedToSeqOnAnchor) {
  143.             cout << "(NotAlignedToSeqOnAnchor)";
  144.         }
  145.         if (chunk->GetType() & CAlnMap::fUnalignedOnRight) {
  146.             cout << "(UnalignedOnRight)";
  147.         }
  148.         if (chunk->GetType() & CAlnMap::fUnalignedOnLeft) {
  149.             cout << "(UnalignedOnLeft)";
  150.         }
  151.         if (chunk->GetType() & CAlnMap::fNoSeqOnRight) {
  152.             cout << "(NoSeqOnRight)";
  153.         }
  154.         if (chunk->GetType() & CAlnMap::fNoSeqOnLeft) {
  155.             cout << "(NoSeqOnLeft)";
  156.         }
  157.         if (chunk->GetType() & CAlnMap::fEndOnRight) {
  158.             cout << "(EndOnRight)";
  159.         }
  160.         if (chunk->GetType() & CAlnMap::fEndOnLeft) {
  161.             cout << "(EndOnLeft)";
  162.         }
  163.         cout << NcbiEndl;
  164.     }
  165.     return 0;
  166. }
  167. /////////////////////////////////////////////////////////////////////////////
  168. //  MAIN
  169. int main(int argc, const char* argv[])
  170. {
  171.     // Execute main application function
  172.     return CSampleAlnmgrApplication().AppMain(argc, argv, 0, eDS_Default, 0);
  173. }
  174. /*
  175. * ===========================================================================
  176. *
  177. * $Log: alnmgr_sample.cpp,v $
  178. * Revision 1000.2  2004/06/01 18:31:40  gouriano
  179. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  180. *
  181. * Revision 1.8  2004/05/21 21:41:41  gorelenk
  182. * Added PCH ncbi_pch.hpp
  183. *
  184. * Revision 1.7  2004/01/07 17:38:03  vasilche
  185. * Fixed include path to genbank loader.
  186. *
  187. * Revision 1.6  2003/12/22 21:29:27  ucko
  188. * Fix for new alnmgr API.
  189. *
  190. * Revision 1.5  2003/06/02 16:06:17  dicuccio
  191. * Rearranged src/objects/ subtree.  This includes the following shifts:
  192. *     - src/objects/asn2asn --> arc/app/asn2asn
  193. *     - src/objects/testmedline --> src/objects/ncbimime/test
  194. *     - src/objects/objmgr --> src/objmgr
  195. *     - src/objects/util --> src/objmgr/util
  196. *     - src/objects/alnmgr --> src/objtools/alnmgr
  197. *     - src/objects/flat --> src/objtools/flat
  198. *     - src/objects/validator --> src/objtools/validator
  199. *     - src/objects/cddalignview --> src/objtools/cddalignview
  200. * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  201. * replaces the three libmmdb? libs.
  202. *
  203. * Revision 1.4  2002/10/25 02:54:09  ucko
  204. * Update for more alnmgr API changes.
  205. *
  206. * Revision 1.3  2002/09/26 20:14:27  ucko
  207. * Update for replacement of fAlignedToSeqOnAnchor by fNotAlignedToSeqOnAnchor.
  208. *
  209. * Revision 1.2  2002/08/23 18:57:34  ucko
  210. * Add CVS log block (accidentally left out at first).
  211. *
  212. * Revision 1.1  2002/08/23 14:43:55  ucko
  213. * Add the new C++ alignment manager to the public tree (thanks, Kamen!)
  214. *
  215. * ===========================================================================
  216. */