A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/score__lookup_8cpp_source.html below:

NCBI C++ ToolKit: src/algo/align/util/score_lookup.cpp Source File

95

ostr <<

"Length of the aligned segments, including the length of all gap segments"

;

98

ostr <<

"Length of the aligned segments, excluding all gap segments; thus, this is the length of all actually aligned (i.e., match or mismatch) bases"

;

112  bool

exon_specific =

false

)

125  "'product_gap_length' and 'genomic_gap_length' scores " 126  "valid only for Spliced-seg alignments"

);

135

ostr <<

"Total number of gap bases missing"

;

138

ostr <<

"Number of gap openings"

;

142

ostr <<

" in product exons"

;

143

}

else if

(

m_Row

== 1) {

144

ostr <<

" in genomic exons"

;

148

ostr <<

" in query"

;

149

}

else if

(

m_Row

== 1) {

150

ostr <<

" in subject"

;

192  "failed to retrieve sequence for "

+

197  "Can't count frameshifts on a genomic alignment"

);

212

ostr <<

"Number of "

;

216

ostr <<

"frameshifting insertions"

;

218

ostr <<

" in the query"

;

219

}

else if

(

m_Row

== 1) {

220

ostr <<

" in the subject"

;

222

ostr <<

" or deletions"

;

238

ostr <<

"Length of the longest gap observed in either query or subject"

;

259

ostr <<

"Length of unaligned sequence 3' of alignment end"

;

268  double

score_value = 0;

297

ostr <<

"Length of polya tail"

;

318  double

product_length = 0;

327  if

(product_length == 0) {

342

ostr <<

"Length of unaligned sequence contained within the aligned " 343  "range. Note that this does not count gaps; rather, it computes " 344  "the length of all missing, unaligned sequence bounded by the " 354  double

score_value = 0;

359  "internal_unaligned not implemented for this " 360  "type of alignment"

);

385

ostr <<

"Start of query sequence (0-based coordinates)"

;

387  else if

(

m_Row

== 1) {

388

ostr <<

"Start of subject sequence (0-based coordinates)"

;

393

ostr <<

"End of query sequence (0-based coordinates)"

;

395  else if

(

m_Row

== 1) {

396

ostr <<

"End of subject sequence (0-based coordinates)"

;

423

ostr <<

"Ratio of subject aligned range length to query aligned " 448

ostr <<

"Length of query sequence"

;

450  else if

(

m_Row

== 1) {

451

ostr <<

"Length of subject sequence"

;

471  "Can't get length for sequence "

+

508  "Symmetric overlap, as a percent (0-100). This is similar to " 509  "coverage, except that it takes into account both query and " 510  "subject sequence lengths. Alignment length is divided by " 512

<<

" of the two sequence lengths"

;

520  double

pct_overlap = length * 100;

525  "failed to retrieve sequence for "

+

531  "failed to retrieve sequence for "

+

562  "Length of the shortest exon. Note that this score has " 563  "meaning only for Spliced-seg alignments, as would be generated " 564  "by Splign or ProSplign."

;

585  "Length of the longest intron. Note that this score has " 586  "meaning only for Spliced-seg alignments, as would be generated " 587  "by Splign or ProSplign."

;

608  "Count of the number of exons. Note that this score has " 609  "meaning only for Spliced-seg alignments, as would be generated " 610  "by Splign or ProSplign."

;

628  "'exon_count' score is valid only for " 629  "Spliced-seg alignments"

);

641  "Minimum distance between an indel and a splice site. Note that " 642  "this score has meaning only for Spliced-seg alignments, as would " 643  "be generated by Splign or ProSplign."

;

656  unsigned result

= INT_MAX;

662  unsigned

distance_5prime = 0, distance_3prime = 0;

663  bool

found_indel =

false

;

666  switch

(part.

Which

()) {

668

distance_5prime += part.

GetMatch

();

674

distance_5prime += part.

GetDiag

();

688

distance_5prime = INT_MAX;

690

found_indel =

false

;

693  switch

(part.

Which

()) {

695

distance_3prime += part.

GetMatch

();

701

distance_3prime += part.

GetDiag

();

715

distance_3prime = INT_MAX;

725  "No indels found in exons with splice sites"

);

740  if

((*it)->GetId() == gcode) {

763

ostr <<

"1 if a "

<< (

m_StartCodon

?

"start"

:

"stop"

)

764

<<

" codon was found, 0 otherwise. Note that this score has " 765  "meaning only for Spliced-seg alignments, as would be generated " 766  "by Splign or ProSplign."

;

775  bool

is_protein =

false

;

778  bool

score_precalculated=

false

;

787

? (*it)->IsStart_codon_found()

788

: (*it)->IsStop_codon_found() ) {

789

score_precalculated=

true

;

791

? (*it)->GetStart_codon_found()

792

: (*it)->GetStop_codon_found())

798  if

(score_precalculated) {

804  if

(!product_length) {

809  "Can't get sequence "

+

812

is_protein = product_bsh.

IsAa

();

834  if

( !genomic_bsh ) {

836  "failed to retrieve sequence for "

+

847

cds_loc = mapper.

Map

(loc);

853  "failed to retrieve sequence for "

+

861  for

( ; feat_it; ++feat_it) {

880

total_q_range.

SetTo

(total_q_range.

GetTo

() - 3);

895

total_q_range.

SetTo

(total_q_range.

GetTo

() + offs);

902

query_id, total_q_range.

GetFrom

(),

903

total_q_range.

GetTo

(), q_strand);

906

cds_loc = mapper.

Map

(adjusted_loc);

923  int

to = from + 2 * direction;

925  if

(to >= 0 && to < genomic_len) {

965

gcode = gc->

GetId

();

999  "Count of the number of internal stop codons encountered when " 1000  "translating the aligned coding region. Note that this has meaning " 1001  "only for Spliced-seg transcript alignments with a transcript that " 1002  "has an annotated cdregion, or for Spliced-seg protein alignments."

;

1014  return

stop_finder.

FindStops

(align).size();

1042

-> GetSeq().GetAnnot().front()

1043

-> GetData().GetFtable().front();

1046

cds->

SetData

().SetCdregion().ResetCode_break();

1052

trans.resize(trans.size() - 1);

1056

score += (*

i

==

'*'

);

1101  "Percent-identity score confined to the coding region " 1102  "associated with the align transcipt. Not supported " 1103  "for standard-seg alignments."

;

1107  "Percent-coverage score confined to the coding region " 1108  "associated with the align transcipt."

;

1111

ostr <<

"Start position of product's coding region."

;

1114

ostr <<

"End position of product's coding region."

;

1117

ostr <<

" Note that this has meaning only if product has a coding " 1118  "region annotation."

;

1131  "failed to retrieve sequence for "

+

1150

cds_ranges += it.GetRange();

1181

ostr << (

m_Row

== 0

1182

?

"Percentage of query sequence aligned to subject (0.0-100.0)" 1183

:

"Percentage of subject sequence aligned to query (0.0-100.0)"

);

1196  return

covered_bases ? 100.0f * double(covered_bases) / double(seq_len)

1222

ostr <<

"Taxid of query sequence"

;

1224  else if

(

m_Row

== 1) {

1225

ostr <<

"Taxid of subject sequence"

;

1257  "Position of last splice site. Note that this has meaning only " 1258  "for Spliced-seg transcript alignments, and only if the alignment " 1259  "has at least two exons."

;

1287  "last_splice_site score inapplicable"

);

1306  string

row_name =

m_Row

== 0 ?

"query"

:

"subject"

;

1307  string

range_type =

m_IncludeGaps

?

"total aligned range"

:

"aligned bases"

;

1309  "size of overlap of "

+ range_type +

" with any alignments " 1310  "over the same "

+ row_name +

" sequence that have previously " 1311  "passed this filter. Assumes that input alignments " 1312  "are collated by "

+ row_name +

", and then sorted by priority for " 1313  "inclusion in the output."

;

1369  string

row_name =

m_Row

== 0 ?

"query"

:

"subject"

;

1370  string

range_type =

m_IncludeGaps

?

"total aligned range"

:

"aligned bases"

;

1372  "size of overlap of "

+ range_type +

" with any alignments " 1373  "over the same "

+ row_name +

" sequence that have previously " 1374  "passed this filter. Assumes that input alignments " 1375  "are collated by "

+ row_name +

", and then sorted by priority for " 1376  "inclusion in the output."

;

1399

overlap &= it->second;

1415

it->second += align.GetSeqRange(

m_Row

);

1417

it->second += align.GetAlignedBases(

m_Row

);

1442  "restrict to the first N subjects seen for each query"

;

1451  int

index_row =

m_Row

;

1452  int

alt_row =

abs

(index_row - 1);

1457  if

(it == ranks.

end

()) {

1491  "Recompute a raw BLAST score for an arbitrary protein-to-DNA " 1492  "alignment, using a Spliced-seg as input. Computation is " 1493  "constrained to accept only protein-to-nucleotide Spliced-seg " 1494  "alignments and is slightly different than the raw BLAST score, " 1495  "in that gap computations differ due to the lack of true " 1496  "composition based statistics. These differences are minimal."

;

1509  "CScore_TblastnScore: " 1510  "valid only for spliced-seg alignments"

);

1516  "CScore_TblastnScore: " 1517  "valid only for protein spliced-seg alignments"

);

1543  "Adjusted protein score (ratio of actual score to perfect score)"

;

1565  double

perfect_score =

max

(q_perfect, s_perfect);

1566  return

perfect_score ? score / perfect_score : 0;

1577  "failed to retrieve sequence for "

+

1585

seg.

SetIds

().push_back(

id

);

1586

seg.

SetIds

().push_back(

id

);

1612

<<

" exon. Note that this score has " 1613  "meaning only for Spliced-seg alignments, as would be generated " 1614  "by Splign or ProSplign, and only if it has at least one intron."

;

1627  "CScore_EdgeExonInfo: " 1628  "valid only for spliced-seg alignments with at least one intron"

);

1639  if

((*score_it)->CanGetId() && (*score_it)->GetId().IsStr()

1640

&& (*score_it)->GetId().GetStr() ==

"idty"

)

1642  return

(*score_it)->GetValue().GetReal() * 100;

1681  if

(db->GetDb() ==

"LocusID"

) {

1682  return

db->GetTag().IsId() ? db->GetTag().GetId()

1701

ostr <<

"Gene ID of "

<< (

m_Row

== 0 ?

"query"

:

"subject"

);

1713  "failed to retrieve sequence for "

+

1731

ostr <<

"CRC of the strucural parts of the alignment"

;

1753  "1 if rna Seq-feat based on this alignment is partial; " 1754  "0 if it is complete"

;

1771  if

(feat->GetData().IsRna()) {

1772  return

feat->IsSetPartial() && feat->GetPartial();

1777  "Can't generate rna sequence from alignment"

);

1789  "1 if query is a mRNA and its coding region has ribosomal " 1790  "slippage; 0 otherwise"

;

1802  "failed to retrieve sequence for "

+

1808

feat_it->

GetExcept_text

().find(

"ribosomal slippage"

) != string::npos;

1825  "Computes the percent of residues in the aligned " 1826

<< (

m_Row

== 0 ?

"query"

:

"subject"

)

1827

<<

" region that would be filtered by 'seg'"

;

1839  "failed to retrieve sequence for "

+

1845  "alignment filter requires that the requested " 1846  "sequence be a protein"

);

1856

vec.

GetSeqData

(

r

.GetFrom(),

r

.GetTo(), seq_iupac);

1865  SeqBufferSeg

((

unsigned char

*)seq.data(), seq.size(), 0, sp, &seq_locs);

1869

vector<size_t> counts(seq.size(), 0);

1871  for

(

int i

= itr->ssr->left; i <= itr->ssr->right; ++

i

) {

1880  for

(

const auto

&

i

: counts) {

1883  double val

= count_x * 100.0 / seq.size();

1913  "Computes the value of Shannon's entropy for the specified " 1915

<< (

m_Row

== 0 ?

"query"

:

"subject"

) <<

" region"

;

1927  "failed to retrieve sequence for "

+

1963

(

"align_length_ungap"

,

1975

(

"query_gap_length"

,

1979

(

"subject_gap_length"

,

1983

(

"product_gap_length"

,

1987

(

"genomic_gap_length"

,

2003

(

"nonframe_indel"

,

2007

(

"qnonframe_indel"

,

2011

(

"snonframe_indel"

,

2015

(

"symmetric_overlap"

,

2020

(

"symmetric_overlap_min"

,

2025

(

"3prime_unaligned"

,

2039

(

"max_intron_len"

,

2051

(

"query_start"

, score));

2054

(

"5prime_unaligned"

, score));

2063

(

"internal_unaligned"

,

2068

(

"cds_internal_stops"

,

2080

(

"cds_pct_identity"

,

2084

(

"cds_pct_coverage"

,

2089

(

"query_coverage"

,

2094

(

"subject_coverage"

,

2099

(

"align_length_ratio"

,

2115

(

"query_length"

, score));

2118

(

"product_length"

, score));

2121

(

"subject_length"

,

2139

(

"subject_species"

,

2144

(

"last_splice_site"

,

2159

(

"query_overlap_nogaps"

,

2164

(

"subject_overlap"

,

2169

(

"subject_overlap_nogaps"

,

2174

(

"query_subject_overlap"

,

2179

(

"query_subject_overlap_nogaps"

,

2184

(

"subject_ordinal_pos"

,

2189

(

"query_ordinal_pos"

,

2194

(

"prosplign_tblastn_score"

,

2199

(

"blast_score_ratio"

,

2214

(

"5prime_exon_len"

,

2221

(

"3prime_exon_len"

,

2228

(

"5prime_exon_pct_identity"

,

2235

(

"3prime_exon_pct_identity"

,

2246

(

"subject_geneid"

,

2255

(

"subject_entropy"

,

2264

(

"subject_seg_pct"

,

2269

(

"min_indel_to_splice"

,

2279

(

"ribosomal_slippage"

,

2292  m_Scores

[*it]->UpdateState(align);

2297  const string

&score_name)

2299

ostr <<

" * "

<< score_name << endl;

2304

ostr <<

" "

<< *

i

<< endl;

2310

ostr <<

"Build-in score names: "

<< endl;

2316

ostr <<

"Computed tokens: "

<< endl;

2334

token_it->second->PrintHelp(os);

2338  return "assumed to be a score on the Seq-align"

;

2352  return

token_it->second->GetComplexity();

2359  const string

&score_name)

2369  return

token_it->second->IsInteger();

2373  if

((*stored_score_it)->CanGetValue() &&

2374

(*stored_score_it)->CanGetId() &&

2375

(*stored_score_it)->GetId().IsStr() &&

2376

(*stored_score_it)->GetId().GetStr() == score_name)

2378  return

(*stored_score_it)->GetValue().IsInt();

2385  const string

&score_name)

2388  if

(align.GetNamedScore(score_name, score)) {

2408  return

token_it->second->Get(align, &*

m_Scope

);

User-defined methods of the data storage class.

@ eExtreme_Positional

numerical value

@ eExtreme_Biological

5' and 3'

User-defined methods of the data storage class.

User-defined methods of the data storage class.

User-defined methods of the data storage class.

User-defined methods of the data storage class.

User-defined methods of the data storage class.

User-defined methods of the data storage class.

User-defined methods of the data storage class.

User-defined methods of the data storage class.

BlastSeqLoc * BlastSeqLocFree(BlastSeqLoc *loc)

Deallocate all BlastSeqLoc objects in a chain.

Int2 SeqBufferSeg(Uint1 *sequence, Int4 length, Int4 offset, SegParameters *sparamsp, BlastSeqLoc **seg_locs)

Runs seg on a protein sequence in ncbistdaa.

SegParameters * SegParametersNewAa(void)

Allocated SeqParameter struct for proteins and fills with default values.

void SegParametersFree(SegParameters *sparamsp)

Free SegParameters structure.

CRef< objects::CSeq_feat > ConvertAlignToAnnot(const objects::CSeq_align &align, objects::CSeq_annot &annot, objects::CBioseq_set &seqs, Int8 gene_id=0, const objects::CSeq_feat *cdregion_on_mrna=NULL)

Convert an alignment to an annotation.

void SetFlags(TFeatureGeneratorFlags)

void SetAllowedUnaligned(TSeqPos)

CConstRef< objects::CSeq_align > CleanAlignment(const objects::CSeq_align &align)

Clean an alignment according to our best guess of its biological representation.

static const CTrans_table & GetTransTable(int id)

static const CGenetic_code_table & GetCodeTable(void)

set< TSeqPos > FindStops(const CSeq_align &align)

CNcbiOstrstreamToString class helps convert CNcbiOstrstream to a string Sample usage:

position_type GetCoveredLength(void) const

Returns total length covered by ranges in this collection, i.e.

double GetPercentCoverage(CScope &scope, const CSeq_align &align, unsigned query=0)

Compute percent coverage of the query (sequence 0) (range 0-100)

double GetPercentIdentity(CScope &scope, const CSeq_align &align, EPercentIdentityType type=eGapped)

int ComputeTieBreaker(const CSeq_align &align)

int GetBlastScore(CScope &scope, const CSeq_align &align)

Compute the BLAST score of the alignment.

double ComputeScore(CScope &scope, const CSeq_align &align, const CRangeCollection< TSeqPos > &ranges, CSeq_align::EScoreType score)

TScoreDictionary m_Scores

IScore::EComplexity Complexity(const string &score_name)

double GetScore(const objects::CSeq_align &align, const string &score_name)

Get requested score for alignment.

void UpdateState(const objects::CSeq_align &align)

void PrintDictionary(CNcbiOstream &)

Print out the dictionary of recognized score names.

string HelpText(const string &score_name)

Help text for score.

void x_PrintDictionaryEntry(CNcbiOstream &ostr, const string &score_name)

static int GetGeneId(const objects::CBioseq_Handle &bsh)

set< string > m_ScoresUsed

CRef< objects::CScope > m_Scope

bool IsIntegerScore(const objects::CSeq_align &align, const string &score_name)

virtual EComplexity GetComplexity() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

virtual EComplexity GetComplexity() const

CScore_AlignLength(bool include_gaps)

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

CScore_AlignStartStop(int row, bool start)

virtual bool IsInteger() const

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

double x_GetPerfectScore(CScope &scope, const CSeq_id_Handle &idh) const

CScore_BlastRatio(CScoreLookup &lookup)

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *scope) const

CScoreLookup & m_ScoreLookup

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual EComplexity GetComplexity() const

CScore_CdsScore(EScoreType type)

const EScoreType m_ScoreType

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *scope) const

CScore_EdgeExonInfo(EEdge edge, EInfoType type)

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *) const

virtual EComplexity GetComplexity() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

CScore_FrameShifts(int row=-1, bool frameshifts=true)

virtual EComplexity GetComplexity() const

virtual double Get(const CSeq_align &align, CScope *) const

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

CScore_GapCount(bool count_bases, int row=-1, bool exon_specific=false)

virtual EComplexity GetComplexity() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *) const

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

virtual bool IsInteger() const

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

virtual EComplexity GetComplexity() const

map< CSeq_id_Handle, TOrdinalPos > TIds

virtual double Get(const CSeq_align &align, CScope *) const

map< CSeq_id_Handle, size_t > TOrdinalPos

virtual bool IsInteger() const

CScore_OrdinalPos(int row)

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

CScore_OverlapBoth(int row, bool include_gaps)

virtual EComplexity GetComplexity() const

virtual void UpdateState(const objects::CSeq_align &align)

For any IScore subclasses that have an internal state, this function will be called to update it for ...

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

map< pair< CSeq_id_Handle, CSeq_id_Handle >, CRangeCollection< TSeqPos > > TData

virtual EComplexity GetComplexity() const

virtual void UpdateState(const objects::CSeq_align &align)

For any IScore subclasses that have an internal state, this function will be called to update it for ...

virtual bool IsInteger() const

CRangeCollection< TSeqPos > m_CoveredRanges

virtual void PrintHelp(CNcbiOstream &ostr) const

CScore_Overlap(int row, bool include_gaps)

virtual double Get(const CSeq_align &align, CScope *) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual EComplexity GetComplexity() const

virtual EComplexity GetComplexity() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual bool IsInteger() const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *scope) const

CScore_SequenceLength(int row)

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

CScore_StartStopCodon(bool start_codon)

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *scope) const

CScore_SymmetricOverlap(EType type)

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual EComplexity GetComplexity() const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual double Get(const CSeq_align &align, CScope *scope) const

virtual void PrintHelp(CNcbiOstream &ostr) const

CScore_Taxid(int row, const string &rank="")

virtual EComplexity GetComplexity() const

virtual bool IsInteger() const

CScore_TblastnScore(CScoreLookup &lookup)

virtual EComplexity GetComplexity() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual bool IsInteger() const

virtual double Get(const CSeq_align &align, CScope *scope) const

CScoreLookup & m_ScoreLookup

virtual bool IsInteger() const

virtual void PrintHelp(CNcbiOstream &ostr) const

virtual double Get(const CSeq_align &align, CScope *) const

virtual EComplexity GetComplexity() const

TSeqPos GetTotalGapCount(TDim row=-1) const

Retrieves the total number of gaps in the given row an alignment; all gaps by default.

TLengthRange ExonLengthRange() const

CRangeCollection< TSeqPos > GetAlignedBases(TDim row) const

Retrieves the locations of aligned bases in the given row, excluding gaps and incontinuities.

TSeqPos GetNumGapOpeningsWithinRange(const TSeqRange &range, TDim row=-1) const

TLengthRange IntronLengthRange() const

CRange< TSeqPos > GetSeqRange(TDim row) const

GetSeqRange NB: On a Spliced-seg, in case the product-type is protein, these only return the amin par...

static string HelpText(EScoreType score)

TSeqPos GetSeqStop(TDim row) const

const CSeq_id & GetSeq_id(TDim row) const

Get seq-id (the first one if segments have different ids).

double AlignLengthRatio() const

TSeqPos GetSeqStart(TDim row) const

TSeqPos GetAlignLength(bool include_gaps=true) const

Get the length of this alignment.

TSeqPos GetNumFrameshiftsWithinRange(const TSeqRange &range, TDim row=-1) const

TSeqPos GetNumFrameshifts(TDim row=-1) const

Retrieves the number of times a given row shifts frames; i.e.

static const TScoreNameMap & ScoreNameMap()

TLengthRange GapLengthRange() const

static bool IsIntegerScore(EScoreType score)

TSeqPos GetNumGapOpenings(TDim row=-1) const

Retrieves the number of gap openings in a given row in an alignment (ignoring how many gaps are in th...

Seq-loc iterator class – iterates all intervals from a seq-loc in the correct order.

TSeqPos InternalUnaligned(void) const

TTaxId GetAncestorByRank(TTaxId id_tax, const char *rank_name)

static int SetCodonState(unsigned char ch1, unsigned char ch2, unsigned char ch3)

bool IsAnyStart(int state) const

bool IsOrfStop(int state) const

container_type::const_iterator const_iterator

container_type::iterator iterator

const_iterator end() const

iterator_bool insert(const value_type &val)

container_type::value_type value_type

const_iterator find(const key_type &key) const

iterator_bool insert(const value_type &val)

static int lookup(const char *name, const struct lookup_int *table)

unsigned int TSeqPos

Type for sequence locations and lengths.

#define ITERATE(Type, Var, Cont)

ITERATE macro to sequence through container elements.

#define TAX_ID_TO(T, tax_id)

SStrictId_Tax::TId TTaxId

Taxon id type.

#define REVERSE_ITERATE(Type, Var, Cont)

ITERATE macro to reverse sequence through container elements.

#define NCBI_THROW(exception_class, err_code, message)

Generic macro to throw an exception, given the exception class, error code and message string.

const string AsFastaString(void) const

virtual void Assign(const CSerialObject &source, ESerialRecursionMode how=eRecursive)

Optimized implementation of CSerialObject::Assign, which is not so efficient.

CConstRef< CSeq_id > GetSeqId(void) const

bool Match(const CSeq_id &sid2) const

Match() - TRUE if SeqIds are equivalent.

static CSeq_id_Handle GetHandle(const CSeq_id &id)

Normal way of getting a handle, works for any seq-id.

string AsString(void) const

void SetPacked_int(TPacked_int &v)

TRange GetTotalRange(void) const

TSeqPos GetStart(ESeqLocExtremes ext) const

Return start and stop positions of the seq-loc.

bool IsPartialStop(ESeqLocExtremes ext) const

TSeqPos GetStop(ESeqLocExtremes ext) const

ENa_strand GetStrand(const CSeq_loc &loc, CScope *scope=0)

Returns eNa_strand_unknown if multiple Bioseqs in loc Returns eNa_strand_other if multiple strands in...

const COrg_ref & GetOrg_ref(const CBioseq_Handle &handle)

Return the org-ref associated with a given sequence.

static void Translate(const string &seq, string &prot, const CGenetic_code *code, bool include_stop=true, bool remove_trailing_X=false, bool *alt_start=NULL, bool is_5prime_complete=true, bool is_3prime_complete=true)

Translate a string using a specified genetic code.

CRef< CSeq_loc > Map(const CSeq_loc &src_loc)

Map seq-loc.

TTaxId GetTaxId(const CSeq_id &id, TGetFlags flags=0)

Get taxonomy id of bioseq Return -1 if sequence is not found Return 0 if sequence doesn't have taxono...

static CRef< CObjectManager > GetInstance(void)

Return the existing object manager or create one.

CSeq_entry_Handle AddTopLevelSeqEntry(CSeq_entry &top_entry, TPriority pri=kPriority_Default, EExist action=eExist_Default)

Add seq_entry, default priority is higher than for defaults or loaders Add object to the score with p...

TSeqPos GetSequenceLength(const CSeq_id &id, TGetFlags flags=0)

Get sequence length Return kInvalidSeqPos if sequence is not found.

CBioseq_Handle GetBioseqHandle(const CSeq_id &id)

Get bioseq handle by seq-id.

const CSeqFeatData & GetData(void) const

CConstRef< CDbtag > GetNamedDbxref(const CTempString &db) const

Return a specified DB xref.

TSeqPos GetBioseqLength(void) const

bool IsSetExcept_text(void) const

TInst_Mol GetInst_Mol(void) const

bool IsProtein(void) const

TInst_Topology GetInst_Topology(void) const

const string & GetExcept_text(void) const

TMol GetBioseqMolType(void) const

Get some values from core:

bool CanGetInst_Mol(void) const

@ eCoding_Ncbi

Set coding to binary coding (Ncbi4na or Ncbistdaa)

@ eCoding_Iupac

Set coding to printable coding (Iupacna or Iupacaa)

const CSeq_loc & GetLocation(void) const

TRange GetRange(void) const

Get range for mapped seq-feat's location.

void GetSeqData(TSeqPos start, TSeqPos stop, string &buffer) const

Fill the buffer string with the sequence data for the interval [start, stop).

void SetCoding(TCoding coding)

TObjectType * GetPointer(void) THROWS_NONE

Get pointer,.

void Reset(void)

Reset reference object.

bool IsNull(void) const THROWS_NONE

Check if pointer is null – same effect as Empty().

TThisType & Set(position_type from, position_type to)

#define END_NCBI_SCOPE

End previously defined NCBI scope.

#define BEGIN_NCBI_SCOPE

Define ncbi namespace.

IO_PREFIX::ostream CNcbiOstream

Portable alias for ostream.

static int StringToInt(const CTempString str, TStringToNumFlags flags=0, int base=10)

Convert string to int.

static bool EndsWith(const CTempString str, const CTempString end, ECase use_case=eCase)

Check if a string ends with a specified suffix value.

static void Wrap(const string &str, SIZE_TYPE width, IWrapDest &dest, TWrapFlags flags, const string *prefix, const string *prefix1)

void SetFrom(TFrom value)

Assign a value to From data member.

TTo GetTo(void) const

Get the To member data.

TFrom GetFrom(void) const

Get the From member data.

void SetTo(TTo value)

Assign a value to To data member.

bool IsSetDb(void) const

ids in other dbases Check if a value has been assigned to Db data member.

const TDb & GetDb(void) const

Get the Db member data.

const TTag & GetTag(void) const

Get the Tag member data.

TId GetId(void) const

Get the variant data.

@ eLim_circle

artificial break at origin of circle

const TDonor_after_exon & GetDonor_after_exon(void) const

Get the Donor_after_exon member data.

bool CanGetProduct_length(void) const

Check if it is safe to call GetProduct_length method.

TLens & SetLens(void)

Assign a value to Lens data member.

bool IsSetParts(void) const

basic seqments always are in biologic order Check if a value has been assigned to Parts data member.

vector< CRef< CScore > > TScore

TMatch GetMatch(void) const

Get the variant data.

list< CRef< CScore > > Tdata

bool IsSetProduct_strand(void) const

should be 'plus' or 'minus' Check if a value has been assigned to Product_strand data member.

TGenomic_start GetGenomic_start(void) const

Get the Genomic_start member data.

bool CanGetExons(void) const

Check if it is safe to call GetExons method.

const TAcceptor_before_exon & GetAcceptor_before_exon(void) const

Get the Acceptor_before_exon member data.

void SetSegs(TSegs &value)

Assign a value to Segs data member.

bool IsSetAcceptor_before_exon(void) const

splice sites Check if a value has been assigned to Acceptor_before_exon data member.

TProduct_length GetProduct_length(void) const

Get the Product_length member data.

bool CanGetProduct_type(void) const

Check if it is safe to call GetProduct_type method.

bool IsSetPoly_a(void) const

start of poly(A) tail on the transcript For sense transcripts: aligned product positions < poly-a <= ...

TDiag GetDiag(void) const

Get the variant data.

TProduct_type GetProduct_type(void) const

Get the Product_type member data.

TMismatch GetMismatch(void) const

Get the variant data.

bool CanGetProduct_strand(void) const

Check if it is safe to call GetProduct_strand method.

const TParts & GetParts(void) const

Get the Parts member data.

const TProduct_start & GetProduct_start(void) const

Get the Product_start member data.

const TProduct_end & GetProduct_end(void) const

Get the Product_end member data.

const TSpliced & GetSpliced(void) const

Get the variant data.

list< CRef< CSpliced_seg_modifier > > TModifiers

const TScores & GetScores(void) const

Get the Scores member data.

TStarts & SetStarts(void)

Assign a value to Starts data member.

list< CRef< CSpliced_exon > > TExons

const TExons & GetExons(void) const

Get the Exons member data.

bool IsStd(void) const

Check if variant Std is selected.

bool IsSetExons(void) const

set of segments involved each segment corresponds to one exon exons are always in biological order Ch...

void SetNumseg(TNumseg value)

Assign a value to Numseg data member.

const TBases & GetBases(void) const

Get the Bases member data.

list< CRef< CSpliced_exon_chunk > > TParts

bool IsSetProduct_length(void) const

length of the product, in bases/residues from this (or from poly-a if present), a 3' unaligned length...

TPoly_a GetPoly_a(void) const

Get the Poly_a member data.

TGenomic_end GetGenomic_end(void) const

Get the Genomic_end member data.

bool IsSpliced(void) const

Check if variant Spliced is selected.

const Tdata & Get(void) const

Get the member data.

TProduct_strand GetProduct_strand(void) const

Get the Product_strand member data.

TIds & SetIds(void)

Assign a value to Ids data member.

const TModifiers & GetModifiers(void) const

Get the Modifiers member data.

TNucpos GetNucpos(void) const

Get the variant data.

const TSegs & GetSegs(void) const

Get the Segs member data.

bool IsSetDonor_after_exon(void) const

Check if a value has been assigned to Donor_after_exon data member.

bool CanGetProduct_end(void) const

Check if it is safe to call GetProduct_end method.

bool IsSetScores(void) const

scores for this exon Check if a value has been assigned to Scores data member.

E_Choice Which(void) const

Which variant is currently selected.

@ e_Diag

both sequences are represented, there is sufficient similarity between product and genomic sequences....

@ e_Match

both sequences represented, product and genomic sequences match

@ e_Mismatch

both sequences represented, product and genomic sequences do not match

@ eProduct_type_transcript

list< CRef< CGenetic_code > > Tdata

const TLocation & GetLocation(void) const

Get the Location member data.

TFrame GetFrame(void) const

Get the Frame member data.

void SetData(TData &value)

Assign a value to Data data member.

const TCdregion & GetCdregion(void) const

Get the variant data.

const TGene & GetGene(void) const

Get the variant data.

const Tdata & Get(void) const

Get the member data.

bool IsSetFrame(void) const

Check if a value has been assigned to Frame data member.

ENa_strand

strand of nucleic acid

void SetFuzz_to(TFuzz_to &value)

Assign a value to Fuzz_to data member.

void SetFuzz_from(TFuzz_from &value)

Assign a value to Fuzz_from data member.

const TSeq_set & GetSeq_set(void) const

Get the Seq_set member data.

const TFtable & GetFtable(void) const

Get the variant data.

const TData & GetData(void) const

Get the Data member data.

unsigned int

A callback function used to compare two keys in a database.

double ComputeNormalizedProteinEntropy(const CTempString &sequence, size_t word_size)

Sequence Entropy Calculation.

double r(size_t dimension_, const Int4 *score_, const double *prob_, double theta_)

static TSeqPos s_GetNaLength(CBioseq_Handle bsh)

Get sequence's length in nucleic acids.

static const CGenetic_code * s_GetGeneticCode(const CSeq_id &seq_id, CScope *scope)

#define row(bind, expected)

Used to hold a set of positions, mostly used for filtering.

struct BlastSeqLoc * next

next in linked list

Structure to hold parameters for seg search.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4