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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gi2taxid.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:30:28  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: gi2taxid.cpp,v 1000.1 2004/06/01 18:30:28 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.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiapp.hpp>
  41. #include <corelib/ncbienv.hpp>
  42. #include <corelib/ncbiargs.hpp>
  43. #include <corelib/ncbireg.hpp>
  44. #include <objects/taxon1/taxon1.hpp>
  45. #include <objects/id1/id1_client.hpp>
  46. USING_SCOPE(ncbi);
  47. USING_SCOPE(ncbi::objects);
  48. class CGi2TaxIdApp : public CNcbiApplication
  49. {
  50. public:
  51.     virtual void Init(void);
  52.     virtual int  Run (void);
  53. };
  54. void CGi2TaxIdApp::Init()
  55. {
  56.     // Prepare command line descriptions
  57.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  58.     arg_desc->AddDefaultKey("gi", "GI",
  59.                             "gi to test",
  60.                             CArgDescriptions::eInteger,
  61.                             "0");
  62.     arg_desc->AddOptionalKey("file", "InputFile",
  63.                              "Input file to test, one gi or accession per line",
  64.                              CArgDescriptions::eInputFile);
  65.     arg_desc->AddFlag("show_acc",
  66.                       "Show the passed accession as well as the gi");
  67.     // Pass argument descriptions to the application
  68.     //
  69.     SetupArgDescriptions(arg_desc.release());
  70. }
  71. int CGi2TaxIdApp::Run()
  72. {
  73.     CArgs args = GetArgs();
  74.     bool show = args["show_acc"];
  75.     vector<string> id_list;
  76.     id_list.push_back("gi|" + NStr::IntToString(args["gi"].AsInteger()));
  77.     if (args["file"]) {
  78.         CNcbiIstream& istr = args["file"].AsInputFile();
  79.         string acc;
  80.         while (istr >> acc) {
  81.             id_list.push_back(acc);
  82.         }
  83.     }
  84.     CID1Client id1_client;
  85.     CTaxon1 tax;
  86.     tax.Init();
  87.     ITERATE (vector<string>, iter, id_list) {
  88.         if ( iter->empty() ) {
  89.             LOG_POST(Info << "ignoring empty accession: ");
  90.             continue;
  91.         }
  92.         // resolve the id to a gi
  93.         int gi = 0;
  94.         try {
  95.             gi = NStr::StringToInt(*iter);
  96.         }
  97.         catch (...) {
  98.             CSeq_id id(*iter);
  99.             if ( id.Which() != CSeq_id::e_not_set) {
  100.                 gi = id1_client.AskGetgi(id);
  101.             }
  102.         }
  103.         if (gi == 0) {
  104.             LOG_POST(Error << "don't know anything about accession/id: "
  105.                 << *iter);
  106.             continue;
  107.         }
  108.         int tax_id = 0;
  109.         tax.GetTaxId4GI(gi, tax_id);
  110.         if (show) {
  111.             cout << *iter << " ";
  112.         }
  113.         cout << gi << " " << tax_id << endl;
  114.     }
  115.     return 0;
  116. }
  117. int main(int argc, const char* argv[])
  118. {
  119.     return CGi2TaxIdApp().AppMain(argc, argv, 0, eDS_Default, 0);
  120. }
  121. /*
  122.  * ===========================================================================
  123.  * $Log: gi2taxid.cpp,v $
  124.  * Revision 1000.1  2004/06/01 18:30:28  gouriano
  125.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  126.  *
  127.  * Revision 1.2  2004/05/21 21:41:40  gorelenk
  128.  * Added PCH ncbi_pch.hpp
  129.  *
  130.  * Revision 1.1  2004/02/05 13:33:57  dicuccio
  131.  * Moved from taxon1/demo - this now makes use of CID1Client
  132.  *
  133.  * Revision 1.1  2003/10/16 16:13:20  dicuccio
  134.  * Initial revision
  135.  *
  136.  * ===========================================================================
  137.  */