📄 blast_nucl_options.cpp
字号:
/* * =========================================================================== * PRODUCTION $Log: blast_nucl_options.cpp,v $ * PRODUCTION Revision 1000.2 2004/06/01 18:05:41 gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11 * PRODUCTION * =========================================================================== *//* $Id: blast_nucl_options.cpp,v 1000.2 2004/06/01 18:05:41 gouriano Exp $ * =========================================================================== * * PUBLIC DOMAIN NOTICE * National Center for Biotechnology Information * * This software/database is a "United States Government Work" under the * terms of the United States Copyright Act. It was written as part of * the author's official duties as a United States Government employee and * thus cannot be copyrighted. This software/database is freely available * to the public for use. The National Library of Medicine and the U.S. * Government have not placed any restriction on its use or reproduction. * * Although all reasonable efforts have been taken to ensure the accuracy * and reliability of the software and data, the NLM and the U.S. * Government do not and cannot warrant the performance or results that * may be obtained by using this software or data. The NLM and the U.S. * Government disclaim all warranties, express or implied, including * warranties of performance, merchantability or fitness for any particular * purpose. * * Please cite the author in any work or product based on this material. * * =========================================================================== * * Authors: Christiam Camacho * *//// @file blast_nucl_options.cpp/// Implements the CBlastNucleotideOptionsHandle class.#include <ncbi_pch.hpp>#include <algo/blast/core/blast_encoding.h>#include <algo/blast/api/blast_nucl_options.hpp>#include <objects/seqloc/Na_strand.hpp>#include "blast_setup.hpp"/** @addtogroup AlgoBlast * * @{ */BEGIN_NCBI_SCOPEBEGIN_SCOPE(blast)CBlastNucleotideOptionsHandle::CBlastNucleotideOptionsHandle(EAPILocality locality) : CBlastOptionsHandle(locality){ SetDefaults();}voidCBlastNucleotideOptionsHandle::SetDefaults(){ SetTraditionalMegablastDefaults(); m_Opts->SetProgram(eBlastn);}voidCBlastNucleotideOptionsHandle::SetTraditionalBlastnDefaults(){ if (m_Opts->GetLocality() == CBlastOptions::eRemote) { return; } SetQueryOptionDefaults(); SetLookupTableDefaults(); // NB: Initial word defaults must be set after lookup table defaults, // because default scanning stride depends on the lookup table type. SetInitialWordOptionsDefaults(); SetGappedExtensionDefaults(); SetScoringOptionsDefaults(); SetHitSavingOptionsDefaults(); SetEffectiveLengthsOptionsDefaults();}voidCBlastNucleotideOptionsHandle::SetTraditionalMegablastDefaults(){ if (m_Opts->GetLocality() == CBlastOptions::eRemote) { return; } SetQueryOptionDefaults(); SetMBLookupTableDefaults(); // NB: Initial word defaults must be set after lookup table defaults, // because default scanning stride depends on the lookup table type. SetMBInitialWordOptionsDefaults(); SetMBGappedExtensionDefaults(); SetMBScoringOptionsDefaults(); SetHitSavingOptionsDefaults(); SetEffectiveLengthsOptionsDefaults();}void CBlastNucleotideOptionsHandle::SetLookupTableDefaults(){ SetLookupTableType(NA_LOOKUP_TABLE); SetWordSize(BLAST_WORDSIZE_NUCL); m_Opts->SetWordThreshold(BLAST_WORD_THRESHOLD_BLASTN); SetAlphabetSize(BLASTNA_SIZE); unsigned int stride = CalculateBestStride(GetWordSize(), BLAST_VARWORD_NUCL, GetLookupTableType()); SetScanStep(stride);}void CBlastNucleotideOptionsHandle::SetMBLookupTableDefaults(){ SetLookupTableType(MB_LOOKUP_TABLE); SetWordSize(BLAST_WORDSIZE_MEGABLAST); m_Opts->SetWordThreshold(BLAST_WORD_THRESHOLD_MEGABLAST); m_Opts->SetMBMaxPositions(INT4_MAX); SetAlphabetSize(BLASTNA_SIZE); // Note: stride makes no sense in the context of eRight extension // method unsigned int stride = CalculateBestStride(GetWordSize(), BLAST_VARWORD_MEGABLAST, GetLookupTableType()); SetScanStep(stride);}voidCBlastNucleotideOptionsHandle::SetQueryOptionDefaults(){ SetFilterString("D"); SetStrandOption(objects::eNa_strand_both);}voidCBlastNucleotideOptionsHandle::SetInitialWordOptionsDefaults(){ SetXDropoff(BLAST_UNGAPPED_X_DROPOFF_NUCL); SetWindowSize(BLAST_WINDOW_SIZE_NUCL); SetSeedContainerType(eDiagArray); SetVariableWordSize(BLAST_VARWORD_NUCL); SetSeedExtensionMethod(eRightAndLeft); SetUngappedExtension();}voidCBlastNucleotideOptionsHandle::SetMBInitialWordOptionsDefaults(){ SetWindowSize(BLAST_WINDOW_SIZE_NUCL); SetSeedContainerType(eDiagArray); SetVariableWordSize(BLAST_VARWORD_MEGABLAST); SetSeedExtensionMethod(eRightAndLeft);}voidCBlastNucleotideOptionsHandle::SetGappedExtensionDefaults(){ SetGapXDropoff(BLAST_GAP_X_DROPOFF_NUCL); SetGapXDropoffFinal(BLAST_GAP_X_DROPOFF_FINAL_NUCL); SetGapTrigger(BLAST_GAP_TRIGGER_NUCL); SetGapExtnAlgorithm(eDynProgExt);}voidCBlastNucleotideOptionsHandle::SetMBGappedExtensionDefaults(){ SetGapXDropoff(BLAST_GAP_X_DROPOFF_NUCL); SetGapXDropoffFinal(BLAST_GAP_X_DROPOFF_FINAL_NUCL); SetGapTrigger(BLAST_GAP_TRIGGER_NUCL); SetGapExtnAlgorithm(eGreedyWithTracebackExt);}voidCBlastNucleotideOptionsHandle::SetScoringOptionsDefaults(){ SetMatrixName(NULL); SetMatrixPath(FindMatrixPath(GetMatrixName(), false).c_str()); SetGapOpeningCost(BLAST_GAP_OPEN_NUCL); SetGapExtensionCost(BLAST_GAP_EXTN_NUCL); SetMatchReward(BLAST_REWARD); SetMismatchPenalty(BLAST_PENALTY); SetGappedMode(); // set out-of-frame options to invalid? values m_Opts->SetOutOfFrameMode(false); m_Opts->SetFrameShiftPenalty(INT2_MAX); m_Opts->SetDecline2AlignPenalty(INT2_MAX);}voidCBlastNucleotideOptionsHandle::SetMBScoringOptionsDefaults(){ SetMatrixName(NULL); SetMatrixPath(FindMatrixPath(GetMatrixName(), false).c_str()); SetGapOpeningCost(BLAST_GAP_OPEN_MEGABLAST); SetGapExtensionCost(BLAST_GAP_EXTN_MEGABLAST); SetMatchReward(BLAST_REWARD); SetMismatchPenalty(BLAST_PENALTY); SetGappedMode(); // set out-of-frame options to invalid? values m_Opts->SetOutOfFrameMode(false); m_Opts->SetFrameShiftPenalty(INT2_MAX); m_Opts->SetDecline2AlignPenalty(INT2_MAX);}voidCBlastNucleotideOptionsHandle::SetHitSavingOptionsDefaults(){ SetHitlistSize(500); SetPrelimHitlistSize(550); SetEvalueThreshold(BLAST_EXPECT_VALUE); SetPercentIdentity(0); // set some default here, allow INT4MAX to mean infinity SetMaxNumHspPerSequence(0); // this is never used... altough it could be calculated //m_Opts->SetTotalHspLimit(FIXME); SetCutoffScore(0); // will be calculated based on evalue threshold, // effective lengths and Karlin-Altschul params in BLAST_Cutoffs_simple // and passed to the engine in the params structure // not applicable m_Opts->SetRequiredStart(0); m_Opts->SetRequiredEnd(0);}voidCBlastNucleotideOptionsHandle::SetEffectiveLengthsOptionsDefaults(){ SetDbLength(0); SetDbSeqNum(1); SetEffectiveSearchSpace(0); SetUseRealDbSize();}voidCBlastNucleotideOptionsHandle::SetSubjectSequenceOptionsDefaults(){}END_SCOPE(blast)END_NCBI_SCOPE/* @} *//* * =========================================================================== * $Log: blast_nucl_options.cpp,v $ * Revision 1000.2 2004/06/01 18:05:41 gouriano * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11 * * Revision 1.11 2004/05/21 21:41:02 gorelenk * Added PCH ncbi_pch.hpp * * Revision 1.10 2004/05/17 15:32:39 madden * Int algorithm_type replaced with enum EBlastPrelimGapExt * * Revision 1.9 2004/04/07 03:06:15 camacho * Added blast_encoding.[hc], refactoring blast_stat.[hc] * * Revision 1.8 2004/03/22 20:15:26 dondosha * Set final x-dropoff for MB extension defaults * * Revision 1.7 2004/03/19 15:13:34 camacho * Move to doxygen group AlgoBlast * * Revision 1.6 2004/03/17 19:15:28 dondosha * Corrected order of defaults setting, so scanning stride is set properly * * Revision 1.5 2004/03/11 17:27:12 camacho * Fix incorrect doxygen file directive * * Revision 1.4 2004/02/17 23:53:31 dondosha * Added setting of preliminary hitlist size * * Revision 1.3 2004/02/10 19:47:46 dondosha * Added SetMBGappedExtensionDefaults method; corrected megablast defaults setting * * Revision 1.2 2004/01/16 21:49:26 bealer * - Add locality flag for Blast4 API * * Revision 1.1 2003/11/26 18:23:59 camacho * +Blast Option Handle classes * * =========================================================================== */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -