NCBI C++ ToolKit
|
#include <ncbi_pch.hpp>
#include <corelib/ncbiapp.hpp>
#include <corelib/ncbi_system.hpp>
#include <corelib/test_boost.hpp>
#include <objects/seq/Seq_annot.hpp>
#include <objects/seqloc/Seq_loc.hpp>
#include <objects/seqloc/Seq_interval.hpp>
#include <objects/seqloc/Seq_point.hpp>
#include <objects/seqfeat/Seq_feat.hpp>
#include <objects/seqfeat/SeqFeatData.hpp>
#include <objects/seqfeat/SeqFeatXref.hpp>
#include <objects/seqfeat/Cdregion.hpp>
#include <objects/seqfeat/Prot_ref.hpp>
#include <objects/seqfeat/RNA_ref.hpp>
#include <objects/seqfeat/Trna_ext.hpp>
#include <objects/seqfeat/RNA_gen.hpp>
#include <objects/seqfeat/Gene_ref.hpp>
#include <objects/seqfeat/Imp_feat.hpp>
#include <objects/general/Dbtag.hpp>
#include <objects/general/Object_id.hpp>
#include <objects/general/User_object.hpp>
#include <objects/general/User_field.hpp>
#include <objects/misc/sequence_util_macros.hpp>
#include <objmgr/util/sequence.hpp>
#include <objtools/readers/readfeat.hpp>
#include <objtools/readers/table_filter.hpp>
#include <objtools/readers/message_listener.hpp>
#include <objtools/readers/line_error.hpp>
Go to the source code of this file.
Go to the SVN repository for this file.
Classes | |
struct | SRegulatoryFeatSubtypeCases |
Typedefs | |
typedef list< ILineError::EProblem > | TErrList |
typedef list< CRef< CSeq_annot > > | TAnnotRefList |
typedef unique_ptr< TAnnotRefList > | TAnnotRefListPtr |
Functions | |
USING_SCOPE (objects) | |
static bool | s_IgnoreError (const ILineError &line_error) |
static void | s_ListLinesWithPattern (const CTempString &str, const CTempString &pattern, vector< size_t > &out_vecOfLinesThatMatch) |
static size_t | s_CountOccurrences (const CTempString &str, const CTempString &pattern) |
static void | s_CheckErrorsVersusExpected (ILineErrorListener *pMessageListener, TErrList expected_errors) |
static CRef< CSeq_annot > | s_ReadOneTableFromString (const char *str, const TErrList &expected_errors=TErrList(), CFeature_table_reader::TFlags additional_flags=0, ILineErrorListener *pMessageListener=nullptr, CSimpleTableFilter *p_tbl_filter=nullptr) |
static TAnnotRefListPtr | s_ReadMultipleTablesFromString (const char *str, const TErrList &expected_errors=TErrList(), CFeature_table_reader::TFlags additional_flags=0, ILineErrorListener *pMessageListener=nullptr) |
static void | CheckExpectedQuals (CConstRef< CSeq_feat > feat, const set< string > &expected_quals) |
NCBITEST_INIT_CMDLINE (descrs) | |
BOOST_AUTO_TEST_CASE (Test_FeatureTableWithGeneAndCodingRegion) | |
Test a simple table. More... | |
BOOST_AUTO_TEST_CASE (Test_MultipleFeatureTables) | |
Test reading multiple tables. More... | |
BOOST_AUTO_TEST_CASE (Test_FlybaseFeatureTableWithMultiIntervalTranslExcept) | |
Test a simple table. More... | |
BOOST_AUTO_TEST_CASE (Test_NCTableWithtRNAs) | |
Test a simple table. More... | |
BOOST_AUTO_TEST_CASE (Test_NCTableWithtRNAsWithCodons) | |
Test a simple table. More... | |
BOOST_AUTO_TEST_CASE (Test_CPTableWithncRNAs) | |
Test a simple table. More... | |
BOOST_AUTO_TEST_CASE (Test_TableWithVariationsAndGoTerms) | |
Test a simple table. More... | |
BOOST_AUTO_TEST_CASE (Test_CapitalizedQualifiers) | |
Test a simple table. More... | |
BOOST_AUTO_TEST_CASE (Test_tRNAAnticodonQualifiers) | |
BOOST_AUTO_TEST_CASE (Test_ForbidMixedStrandAnticodonQualifier) | |
BOOST_AUTO_TEST_CASE (TestCDSInGenesCheck) | |
BOOST_AUTO_TEST_CASE (TestCreateGenesFromCDSs) | |
BOOST_AUTO_TEST_CASE (TestOffsetCommand) | |
BOOST_AUTO_TEST_CASE (TestBetweenBaseIntervals) | |
BOOST_AUTO_TEST_CASE (TestSpacesBeforeFeature) | |
BOOST_AUTO_TEST_CASE (TestErrorIfRangeAfterQuals) | |
BOOST_AUTO_TEST_CASE (TestIfHandlesWhenJunkAfterFeature) | |
BOOST_AUTO_TEST_CASE (TestCaseInsensitivity) | |
BOOST_AUTO_TEST_CASE (TestDiscouragedKeys) | |
BOOST_AUTO_TEST_CASE (TestRegulatoryFeat) | |
BOOST_AUTO_TEST_CASE (TestPeptideFeats) | |
BOOST_AUTO_TEST_CASE (TestBadTranslTable) | |
BOOST_AUTO_TEST_CASE (TestRiboswitch) | |
BOOST_AUTO_TEST_CASE (TestSimpleTableFilter) | |
BOOST_AUTO_TEST_CASE (TestRW1172) | |
Variables | |
USING_NCBI_SCOPE | |
static const char * | sc_Table1 |
static const char * | sc_Table2 |
static const char * | sc_Table3 |
static const char * | sc_Table4 |
static const char * | sc_TableTrnaWithCodon |
static const char * | sc_Table5 |
static const char * | sc_Table6 |
static const char * | sc_Table7 |
static const char * | sc_Table8 |
static const char * | sc_Table9 |
static const char * | sc_Table10 |
static const char * | sc_Table11 |
static const char * | sc_Table12 |
static const char * | sc_Table13 |
static const char * | sc_Table14 |
static const char * | sc_Table15 |
static const char * | sc_Table16 |
static const char * | sc_Table17 |
const SRegulatoryFeatSubtypeCases | subtype_cases [] |
static const char * | sc_Table18 |
static const char * | sc_Table19 |
static const char * | sc_Table20 |
static const char * | sc_Table21 |
static const char * | sc_Table22 |
typedef list< CRef<CSeq_annot> > TAnnotRefList |
Definition at line 231 of file unit_test_feature_table_reader.cpp.
typedef unique_ptr<TAnnotRefList> TAnnotRefListPtr |
Definition at line 232 of file unit_test_feature_table_reader.cpp.
typedef list<ILineError::EProblem> TErrList |
Definition at line 150 of file unit_test_feature_table_reader.cpp.
BOOST_AUTO_TEST_CASE | ( | Test_CapitalizedQualifiers | ) |
Test a simple table.
Definition at line 1387 of file unit_test_feature_table_reader.cpp.
References s_ReadOneTableFromString(), and sc_Table7.
BOOST_AUTO_TEST_CASE | ( | Test_CPTableWithncRNAs | ) |
Test a simple table.
Definition at line 719 of file unit_test_feature_table_reader.cpp.
References CRNA_ref_Base::eType_ncRNA, ftable, CSeq_annot_Base::GetData(), CSeq_feat_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), CSeqFeatData_Base::GetRna(), CSeqFeatData_Base::IsRna(), CSeq_feat_Base::IsSetData(), rna, s_ReadOneTableFromString(), and sc_Table5.
BOOST_AUTO_TEST_CASE | ( | Test_FeatureTableWithGeneAndCodingRegion | ) |
Test a simple table.
Definition at line 343 of file unit_test_feature_table_reader.cpp.
References ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), s_ReadOneTableFromString(), and sc_Table1.
BOOST_AUTO_TEST_CASE | ( | Test_FlybaseFeatureTableWithMultiIntervalTranslExcept | ) |
Test a simple table.
Definition at line 453 of file unit_test_feature_table_reader.cpp.
References CheckExpectedQuals(), ftable, CSeq_annot_Base::GetData(), CSeq_feat_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), CSeq_feat_Base::GetQual(), CSeq_feat_Base::GetXref(), set< Key, Compare >::insert(), CSeqFeatData_Base::IsCdregion(), CSeq_feat_Base::IsSetData(), NCBITEST_CHECK, s_ReadOneTableFromString(), and sc_Table3.
BOOST_AUTO_TEST_CASE | ( | Test_ForbidMixedStrandAnticodonQualifier | ) |
Definition at line 1467 of file unit_test_feature_table_reader.cpp.
References CheckExpectedQuals(), ILineError::eProblem_QualifierBadValue, CRNA_ref_Base::eType_tRNA, ftable, CSeq_annot_Base::GetData(), CRNA_ref_Base::GetExt(), CSeq_annot_Base::C_Data::GetFtable(), CRNA_ref_Base::C_Ext::GetTRNA(), CRNA_ref_Base::GetType(), CTrna_ext_Base::IsSetAa(), CTrna_ext_Base::IsSetAnticodon(), s_ReadOneTableFromString(), and sc_Table9.
BOOST_AUTO_TEST_CASE | ( | Test_MultipleFeatureTables | ) |
Test reading multiple tables.
Definition at line 384 of file unit_test_feature_table_reader.cpp.
References ftable, ITERATE, s_ReadMultipleTablesFromString(), and sc_Table2.
BOOST_AUTO_TEST_CASE | ( | Test_NCTableWithtRNAs | ) |
Test a simple table.
Definition at line 631 of file unit_test_feature_table_reader.cpp.
References CheckExpectedQuals(), NStr::Equal(), CRNA_ref_Base::eType_rRNA, CRNA_ref_Base::eType_tRNA, ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), set< Key, Compare >::insert(), NStr::IsBlank(), CGene_ref_Base::IsSetLocus(), ITERATE, prot, rna, s_ReadOneTableFromString(), sc_Table4, and tag.
BOOST_AUTO_TEST_CASE | ( | Test_NCTableWithtRNAsWithCodons | ) |
Test a simple table.
Definition at line 688 of file unit_test_feature_table_reader.cpp.
References CRNA_ref_Base::eType_tRNA, ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), ITERATE, rna, s_ReadOneTableFromString(), and sc_TableTrnaWithCodon.
BOOST_AUTO_TEST_CASE | ( | Test_TableWithVariationsAndGoTerms | ) |
Test a simple table.
Definition at line 1334 of file unit_test_feature_table_reader.cpp.
References NStr::Equal(), ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), ITERATE, s_ReadOneTableFromString(), and sc_Table6.
BOOST_AUTO_TEST_CASE | ( | Test_tRNAAnticodonQualifiers | ) |
Definition at line 1408 of file unit_test_feature_table_reader.cpp.
References CheckExpectedQuals(), CSerialObject::Equals(), CRNA_ref_Base::eType_tRNA, ftable, CTrna_ext_Base::GetAa(), CTrna_ext_Base::GetAnticodon(), CSeq_annot_Base::GetData(), CRNA_ref_Base::GetExt(), CSeq_annot_Base::C_Data::GetFtable(), CTrna_ext_Base::C_Aa::GetNcbieaa(), CRNA_ref_Base::C_Ext::GetTRNA(), CRNA_ref_Base::GetType(), ITERATE, MSerial_AsnText, s_ReadOneTableFromString(), and sc_Table8.
BOOST_AUTO_TEST_CASE | ( | TestBadTranslTable | ) |
Definition at line 2085 of file unit_test_feature_table_reader.cpp.
References CheckExpectedQuals(), ILineError::eProblem_QualifierBadValue, ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), s_ReadOneTableFromString(), and sc_Table19.
BOOST_AUTO_TEST_CASE | ( | TestBetweenBaseIntervals | ) |
Definition at line 1805 of file unit_test_feature_table_reader.cpp.
References NStr::BoolToString(), CInt_fuzz_Base::eLim_tl, CInt_fuzz_Base::eLim_tr, ILineError::eProblem_BadFeatureInterval, FIELD_IS_SET_AND_IS, ftable, CSeq_annot_Base::GetData(), CSeq_feat_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), CSeq_point_Base::GetFuzz(), CSeqFeatData_Base::GetImp(), CImp_feat_Base::GetKey(), CInt_fuzz_Base::GetLim(), CSeq_feat_Base::GetLocation(), CSeq_loc_Base::GetPnt(), CSeq_point_Base::GetPoint(), CSeq_loc::IsReverseStrand(), ITERATE_BOTH_BOOL_VALUES, NStr::Replace(), s_ReadOneTableFromString(), and sc_Table13.
BOOST_AUTO_TEST_CASE | ( | TestCaseInsensitivity | ) |
Definition at line 1918 of file unit_test_feature_table_reader.cpp.
References CSeqFeatData::eSubtype_otherRNA, CSeqFeatData::eSubtype_rRNA, ftable, CSeq_annot_Base::GetData(), CRNA_ref_Base::GetExt(), CSeq_annot_Base::C_Data::GetFtable(), CRNA_ref_Base::C_Ext::GetName(), CSeqFeatData_Base::GetRna(), CSeqFeatData::GetSubtype(), s_ReadOneTableFromString(), and sc_Table16.
BOOST_AUTO_TEST_CASE | ( | TestCDSInGenesCheck | ) |
Definition at line 1525 of file unit_test_feature_table_reader.cpp.
References ILineError::eProblem_FeatMustBeInXrefdGene, CFeature_table_reader::fCDSsMustBeInTheirGenes, ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), ITERATE_0_IDX, ILineError::Line(), ILineError::OtherLines(), s_CountOccurrences(), s_ListLinesWithPattern(), s_ReadOneTableFromString(), and sc_Table10.
BOOST_AUTO_TEST_CASE | ( | TestCreateGenesFromCDSs | ) |
Definition at line 1586 of file unit_test_feature_table_reader.cpp.
References CTempString::begin(), set< Key, Compare >::begin(), NStr::BoolToString(), CTempString::empty(), CTempString::end(), set< Key, Compare >::end(), ILineError::eProblem_FeatMustBeInXrefdGene, NStr::eTrunc_Begin, CFeature_table_reader::fCDSsMustBeInTheirGenes, CFeature_table_reader::fCreateGenesFromCDSs, FIELD_IS_SET_AND_IS, CTempString::find_first_of(), ftable, CSeq_annot_Base::GetData(), CSeq_feat_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), CSeqFeatData_Base::GetGene(), CSeq_feat::GetGeneXref(), CGene_ref_Base::GetLocus(), set< Key, Compare >::insert(), isspace(), ITERATE, ITERATE_0_IDX, ITERATE_BOTH_BOOL_VALUES, kEmptyStr, CTempString::length(), ILineError::Line(), NCBITEST_CHECK, NPOS, ILineError::OtherLines(), ILineError::Problem(), RAW_FIELD_IS_EMPTY_OR_UNSET, s_CountOccurrences(), s_ReadOneTableFromString(), sc_Table11, set< Key, Compare >::size(), ct::sort(), NStr::SplitByPattern(), NStr::StartsWith(), CTempString::substr(), and NStr::TruncateSpacesInPlace().
BOOST_AUTO_TEST_CASE | ( | TestDiscouragedKeys | ) |
Definition at line 1962 of file unit_test_feature_table_reader.cpp.
References ILineError::eProblem_DiscouragedFeatureName, ILineError::eProblem_DiscouragedQualifierName, CFeature_table_reader::fReportDiscouragedKey, s_ReadOneTableFromString(), and sc_Table17.
BOOST_AUTO_TEST_CASE | ( | TestErrorIfRangeAfterQuals | ) |
Definition at line 1885 of file unit_test_feature_table_reader.cpp.
References ILineError::eProblem_NoFeatureProvidedOnIntervals, s_ReadOneTableFromString(), and sc_Table14.
BOOST_AUTO_TEST_CASE | ( | TestIfHandlesWhenJunkAfterFeature | ) |
Definition at line 1902 of file unit_test_feature_table_reader.cpp.
References s_ReadOneTableFromString(), and sc_Table15.
BOOST_AUTO_TEST_CASE | ( | TestOffsetCommand | ) |
Definition at line 1740 of file unit_test_feature_table_reader.cpp.
References ArraySize(), copy(), eExtreme_Biological, ILineError::eProblem_UnrecognizedSquareBracketCommand, FIELD_IS_SET_AND_IS, CSeq_loc::GetStart(), CSeq_loc::GetStop(), ITERATE, ITERATE_0_IDX, s_ReadMultipleTablesFromString(), and sc_Table12.
BOOST_AUTO_TEST_CASE | ( | TestPeptideFeats | ) |
Definition at line 2057 of file unit_test_feature_table_reader.cpp.
References CProt_ref_Base::eProcessed_mature, CProt_ref_Base::eProcessed_propeptide, ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), CProt_ref_Base::GetProcessed(), CSeqFeatData_Base::GetProt(), s_ReadOneTableFromString(), and sc_Table18.
BOOST_AUTO_TEST_CASE | ( | TestRegulatoryFeat | ) |
Definition at line 1990 of file unit_test_feature_table_reader.cpp.
References ArraySize(), NStr::BoolToString(), ILineError::eProblem_DiscouragedFeatureName, ILineError::eProblem_QualifierBadValue, CSeqFeatData::eSubtype_10_signal, CFeature_table_reader::fReportDiscouragedKey, CSeqFeatData::GetRegulatoryClass(), SRegulatoryFeatSubtypeCases::is_regulatory, ITERATE_0_IDX, ITERATE_BOTH_BOOL_VALUES, s_ReadOneTableFromString(), SRegulatoryFeatSubtypeCases::subtype, subtype_cases, and CSeqFeatData::SubtypeValueToName().
BOOST_AUTO_TEST_CASE | ( | TestRiboswitch | ) |
Definition at line 2110 of file unit_test_feature_table_reader.cpp.
References s_ReadOneTableFromString(), and sc_Table20.
BOOST_AUTO_TEST_CASE | ( | TestRW1172 | ) |
Definition at line 2156 of file unit_test_feature_table_reader.cpp.
References ILineError::eProblem_BadFeatureInterval, ILineError::eProblem_FeatureBadStartAndOrStop, ILineError::eProblem_QualifierWithoutFeature, s_ReadOneTableFromString(), and sc_Table22.
BOOST_AUTO_TEST_CASE | ( | TestSimpleTableFilter | ) |
Definition at line 2127 of file unit_test_feature_table_reader.cpp.
References ITableFilter::eAction_Disallowed, ITableFilter::eAction_Okay, ILineError::eProblem_FeatureNameNotAllowed, ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), s_ReadOneTableFromString(), sc_Table21, and CSimpleTableFilter::SetActionForFeat().
BOOST_AUTO_TEST_CASE | ( | TestSpacesBeforeFeature | ) |
Definition at line 1858 of file unit_test_feature_table_reader.cpp.
References ftable, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), ITERATE_0_IDX, s_ReadOneTableFromString(), and string.
|
static |
Definition at line 283 of file unit_test_feature_table_reader.cpp.
References set< Key, Compare >::begin(), set< Key, Compare >::end(), CSeq_feat_Base::GetQual(), set< Key, Compare >::insert(), and ITERATE.
Referenced by BOOST_AUTO_TEST_CASE().
NCBITEST_INIT_CMDLINE | ( | descrs | ) |
Definition at line 316 of file unit_test_feature_table_reader.cpp.
|
static |
Definition at line 153 of file unit_test_feature_table_reader.cpp.
References ILineErrorListener::Count(), ILineErrorListener::GetError(), i, ILineError::Message(), ILineError::ProblemStr(), and s_IgnoreError().
Referenced by s_ReadMultipleTablesFromString(), and s_ReadOneTableFromString().
|
static |
Definition at line 140 of file unit_test_feature_table_reader.cpp.
References NStr::SplitByPattern(), and str().
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 116 of file unit_test_feature_table_reader.cpp.
References eDiag_Info, and ILineError::Severity().
Referenced by s_CheckErrorsVersusExpected().
|
static |
Definition at line 124 of file unit_test_feature_table_reader.cpp.
References NStr::Find(), ITERATE_0_IDX, NPOS, NStr::Split(), and str().
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 243 of file unit_test_feature_table_reader.cpp.
References ITableFilter::eAction_Disallowed, ITableFilter::eAction_Okay, CSeq_annot_Base::GetData(), CSeq_annot_Base::C_Data::GetFtable(), CSeq_annot::IsFtable(), ILineReader::New(), CFeature_table_reader::ReadSequinFeatureTable(), s_CheckErrorsVersusExpected(), CSimpleTableFilter::SetActionForFeat(), and str().
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 187 of file unit_test_feature_table_reader.cpp.
References ITableFilter::eAction_Disallowed, ITableFilter::eAction_Okay, CSeq_annot::IsFtable(), MSerial_AsnText, ILineReader::New(), CFeature_table_reader::ReadSequinFeatureTable(), s_CheckErrorsVersusExpected(), CSimpleTableFilter::SetActionForFeat(), and str().
Referenced by BOOST_AUTO_TEST_CASE().
USING_SCOPE | ( | objects | ) |
|
static |
Definition at line 103 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1493 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1558 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1713 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1795 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1876 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1895 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1909 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1952 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 2049 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 2077 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 359 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 2102 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 2119 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 2149 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 403 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 482 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 705 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 738 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1369 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1392 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 1460 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
|
static |
Definition at line 677 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
const SRegulatoryFeatSubtypeCases subtype_cases[] |
Definition at line 1981 of file unit_test_feature_table_reader.cpp.
Referenced by BOOST_AUTO_TEST_CASE().
USING_NCBI_SCOPE |
Definition at line 68 of file unit_test_feature_table_reader.cpp.