Public Member Functions | Protected Member Functions | Protected Attributes | Static Protected Attributes

CDynProg Class Reference


Detailed Description

Dynamic Programming Class.

Structure and Function collection. This Class implements a Dynamic Programming functions.

Definition at line 75 of file DynProg.h.

Inheritance diagram for CDynProg:
Inheritance graph
[legend]

List of all members.

Public Member Functions

 CDynProg (int32_t p_num_svms=8)
virtual ~CDynProg ()
void set_num_states (int32_t N)
int32_t get_num_states ()
int32_t get_num_svms ()
void init_content_svm_value_array (const int32_t p_num_svms)
void init_tiling_data (int32_t *probe_pos, float64_t *intensities, const int32_t num_probes)
void precompute_tiling_plifs (CPlif **PEN, const int32_t *tiling_plif_ids, const int32_t num_tiling_plifs)
void resize_lin_feat (int32_t num_new_feat)
void set_p_vector (float64_t *p, int32_t N)
void set_q_vector (float64_t *q, int32_t N)
void set_a (float64_t *a, int32_t M, int32_t N)
void set_a_id (int32_t *a, int32_t M, int32_t N)
void set_a_trans_matrix (float64_t *a_trans, int32_t num_trans, int32_t N)
void init_mod_words_array (int32_t *p_mod_words_array, int32_t num_elem, int32_t num_columns)
bool check_svm_arrays ()
void set_observation_matrix (float64_t *seq, int32_t *dims, int32_t ndims)
int32_t get_num_positions ()
void set_content_type_array (float64_t *seg_path, int32_t rows, int32_t cols)
void set_pos (int32_t *pos, int32_t seq_len)
void set_orf_info (int32_t *orf_info, int32_t m, int32_t n)
void set_gene_string (char *genestr, int32_t genestr_len)
void set_dict_weights (float64_t *dictionary_weights, int32_t dict_len, int32_t n)
void best_path_set_segment_loss (float64_t *segment_loss, int32_t num_segment_id1, int32_t num_segment_id2)
void best_path_set_segment_ids_mask (int32_t *segment_ids, float64_t *segment_mask, int32_t m)
void set_sparse_features (CSparseFeatures< float64_t > *seq_sparse1, CSparseFeatures< float64_t > *seq_sparse2)
void set_plif_matrices (CPlifMatrix *pm)
void get_scores (float64_t **scores, int32_t *n)
void get_states (int32_t **states, int32_t *m, int32_t *n)
void get_positions (int32_t **positions, int32_t *m, int32_t *n)
void compute_nbest_paths (int32_t max_num_signals, bool use_orf, int16_t nbest, bool with_loss, bool with_multiple_sequences)
void best_path_trans_deriv (int32_t *my_state_seq, int32_t *my_pos_seq, int32_t my_seq_len, const float64_t *seq_array, int32_t max_num_signals)
void set_my_state_seq (int32_t *my_state_seq)
void set_my_pos_seq (int32_t *my_pos_seq)
void get_path_scores (float64_t **my_scores, int32_t *seq_len)
void get_path_losses (float64_t **my_losses, int32_t *seq_len)
T_STATES get_N () const
 access function for number of states N
void set_q (T_STATES offset, float64_t value)
void set_p (T_STATES offset, float64_t value)
void set_a (T_STATES line_, T_STATES column, float64_t value)
float64_t get_q (T_STATES offset) const
float64_t get_q_deriv (T_STATES offset) const
float64_t get_p (T_STATES offset) const
float64_t get_p_deriv (T_STATES offset) const
void precompute_content_values ()
float64_tget_lin_feat (int32_t &dim1, int32_t &dim2)
void set_lin_feat (float64_t *p_lin_feat, int32_t p_num_svms, int32_t p_seq_len)
void create_word_string ()
void precompute_stop_codons ()
float64_t get_a (T_STATES line_, T_STATES column) const
float64_t get_a_deriv (T_STATES line_, T_STATES column) const
void set_intron_list (CIntronList *intron_list, int32_t num_plifs)
CSegmentLossget_segment_loss_object ()
void long_transition_settings (bool use_long_transitions, int32_t threshold, int32_t max_len)

Protected Member Functions

void lookup_content_svm_values (const int32_t from_state, const int32_t to_state, const int32_t from_pos, const int32_t to_pos, float64_t *svm_values, int32_t frame)
void lookup_tiling_plif_values (const int32_t from_state, const int32_t to_state, const int32_t len, float64_t *svm_values)
int32_t find_frame (const int32_t from_state)
int32_t raw_intensities_interval_query (const int32_t from_pos, const int32_t to_pos, float64_t *intensities, int32_t type)
bool extend_orf (int32_t orf_from, int32_t orf_to, int32_t start, int32_t &last_pos, int32_t to)
virtual const char * get_name () const

Protected Attributes

int32_t m_num_degrees
int32_t m_num_svms
CArray< int32_t > m_word_degree
CArray< int32_t > m_cum_num_words
int32_t * m_cum_num_words_array
CArray< int32_t > m_num_words
int32_t * m_num_words_array
CArray2< int32_t > m_mod_words
int32_t * m_mod_words_array
CArray< bool > m_sign_words
bool * m_sign_words_array
CArray< int32_t > m_string_words
int32_t * m_string_words_array
CArray< int32_t > m_num_unique_words
bool m_svm_arrays_clean
int32_t m_max_a_id
CArray3< float64_tm_observation_matrix
CArray< int32_t > m_pos
int32_t m_seq_len
CArray2< int32_t > m_orf_info
CArray2< float64_tm_segment_sum_weights
CArray< CPlifBase * > m_plif_list
CArray2< CPlifBase * > m_PEN
CArray2< CPlifBase * > m_PEN_state_signals
CArray< char > m_genestr
uint16_t *** m_wordstr
CArray2< float64_tm_dict_weights
CArray3< float64_tm_segment_loss
CArray< int32_t > m_segment_ids
CArray< float64_tm_segment_mask
CArray< int32_t > m_my_state_seq
CArray< int32_t > m_my_pos_seq
CArray< float64_tm_my_scores
CArray< float64_tm_my_losses
CSegmentLossm_seg_loss_obj
CArray< float64_tm_scores
CArray2< int32_t > m_states
CArray2< int32_t > m_positions
CSparseFeatures< float64_t > * m_seq_sparse1
CSparseFeatures< float64_t > * m_seq_sparse2
CPlifMatrixm_plif_matrices
CArray< bool > m_genestr_stop
CIntronListm_intron_list
int32_t m_num_intron_plifs
CArray2< float64_tm_lin_feat
float64_tm_raw_intensities
int32_t * m_probe_pos
int32_t * m_num_probes_cum
int32_t * m_num_lin_feat_plifs_cum
int32_t m_num_raw_data
bool m_long_transitions
int32_t m_long_transition_threshold
model specific variables.

these are p,q,a,b,N,M etc

int32_t m_N
 number of states
CArray2< int32_t > m_transition_matrix_a_id
 transition matrix
CArray2< float64_tm_transition_matrix_a
CArray2< float64_tm_transition_matrix_a_deriv
CArray< float64_tm_initial_state_distribution_p
 initial distribution of states
CArray< float64_tm_initial_state_distribution_p_deriv
CArray< float64_tm_end_state_distribution_q
 distribution of end-states
CArray< float64_tm_end_state_distribution_q_deriv

Static Protected Attributes

static int32_t word_degree_default [4] = {3,4,5,6}
static int32_t cum_num_words_default [5] = {0,64,320,1344,5440}
static int32_t frame_plifs [3] = {4,5,6}
static int32_t num_words_default [4] = {64,256,1024,4096}
static int32_t mod_words_default [32]
static bool sign_words_default [16]
static int32_t string_words_default [16]

Constructor & Destructor Documentation

CDynProg ( int32_t  p_num_svms = 8  ) 

constructor

Parameters:
p_num_svms number of SVMs

Definition at line 48 of file DynProg.cpp.

~CDynProg (  )  [virtual]

Definition at line 147 of file DynProg.cpp.


Member Function Documentation

void best_path_set_segment_ids_mask ( int32_t *  segment_ids,
float64_t segment_mask,
int32_t  m 
)

set best path segmend ids mask

Parameters:
segment_ids segment ids
segment_mask segment mask
m dimension m

Definition at line 820 of file DynProg.cpp.

void best_path_set_segment_loss ( float64_t segment_loss,
int32_t  num_segment_id1,
int32_t  num_segment_id2 
)

set best path segment loss

Parameters:
segment_loss segment loss
num_segment_id1 number of segment id1
num_segment_id2 number of segment id2

Definition at line 804 of file DynProg.cpp.

void best_path_trans_deriv ( int32_t *  my_state_seq,
int32_t *  my_pos_seq,
int32_t  my_seq_len,
const float64_t seq_array,
int32_t  max_num_signals 
)

given a path though the state model and the corresponding positions compute the features. This can be seen as the derivative of the score (output of dynamic program) with respect to the parameters

Parameters:
my_state_seq state sequence of the path
my_pos_seq sequence of positions
my_seq_len length of state and position sequences
seq_array array of features
max_num_signals maximal number of signals

Definition at line 2080 of file DynProg.cpp.

bool check_svm_arrays (  ) 

check SVM arrays call this function to check consistency

Returns:
whether arrays are ok

Definition at line 606 of file DynProg.cpp.

void compute_nbest_paths ( int32_t  max_num_signals,
bool  use_orf,
int16_t  nbest,
bool  with_loss,
bool  with_multiple_sequences 
)

run the viterbi algorithm to compute the n best viterbi paths

Parameters:
max_num_signals maximal number of signals for a single state
use_orf whether orf shall be used
nbest number of best paths (n)
with_loss use loss
with_multiple_sequences !!!not functional set to false!!!

Definition at line 966 of file DynProg.cpp.

void create_word_string (  ) 

create word string from char* Jonas

Definition at line 366 of file DynProg.cpp.

bool extend_orf ( int32_t  orf_from,
int32_t  orf_to,
int32_t  start,
int32_t &  last_pos,
int32_t  to 
) [protected]

extend orf

Parameters:
orf_from orf from
orf_to orf to
start start
last_pos last position
to to

Definition at line 915 of file DynProg.cpp.

int32_t find_frame ( const int32_t  from_state  )  [protected]

find frame

Parameters:
from_state from state
float64_t get_a ( T_STATES  line_,
T_STATES  column 
) const

access function for matrix a

Parameters:
line_ row in matrix 0...N-1
column column in matrix 0...N-1
Returns:
value at position line colum

Definition at line 471 of file DynProg.h.

float64_t get_a_deriv ( T_STATES  line_,
T_STATES  column 
) const

access function for matrix a derivated

Parameters:
line_ row in matrix 0...N-1
column column in matrix 0...N-1
Returns:
value at position line colum

Definition at line 482 of file DynProg.h.

float64_t* get_lin_feat ( int32_t &  dim1,
int32_t &  dim2 
)

return array of precomputed linear features like content predictions and PLiFed tiling array data Jonas

Returns:
lin_feat_array

Definition at line 438 of file DynProg.h.

T_STATES get_N (  )  const

access function for number of states N

Definition at line 353 of file DynProg.h.

virtual const char* get_name ( void   )  const [protected, virtual]
Returns:
object name

Implements CSGObject.

Definition at line 591 of file DynProg.h.

int32_t get_num_positions (  ) 

get number of positions; the dynamic program is sparse encoded and this function gives the number of positions that can actually be part of a predicted path

Returns:
number of positions

Definition at line 684 of file DynProg.cpp.

int32_t get_num_states (  ) 

get num states

Definition at line 239 of file DynProg.cpp.

int32_t get_num_svms (  ) 

get num svms

Definition at line 195 of file DynProg.cpp.

float64_t get_p ( T_STATES  offset  )  const

access function for probability of initial states

Parameters:
offset index 0...N-1
Returns:
value at offset

Definition at line 412 of file DynProg.h.

float64_t get_p_deriv ( T_STATES  offset  )  const

access function for derivated probability of initial states

Parameters:
offset index 0...N-1
Returns:
value at offset

Definition at line 422 of file DynProg.h.

void get_path_losses ( float64_t **  my_losses,
int32_t *  seq_len 
)

get path losses

best_path_trans_deriv result retrieval functions

Parameters:
my_losses my losses
seq_len length of sequence

Definition at line 899 of file DynProg.cpp.

void get_path_scores ( float64_t **  my_scores,
int32_t *  seq_len 
)

get path scores

best_path_trans_deriv result retrieval functions

Parameters:
my_scores scores
seq_len length of sequence

Definition at line 885 of file DynProg.cpp.

void get_positions ( int32_t **  positions,
int32_t *  m,
int32_t *  n 
)

best path get positions

Parameters:
positions positions
m dimension m
n dimension n

Definition at line 870 of file DynProg.cpp.

float64_t get_q ( T_STATES  offset  )  const

access function for probability of end states

Parameters:
offset index 0...N-1
Returns:
value at offset

Definition at line 392 of file DynProg.h.

float64_t get_q_deriv ( T_STATES  offset  )  const

access function for derivated probability of end states

Parameters:
offset index 0...N-1
Returns:
value at offset

Definition at line 402 of file DynProg.h.

void get_scores ( float64_t **  scores,
int32_t *  n 
)

best path get scores

Parameters:
scores scores
n dimension n

Definition at line 840 of file DynProg.cpp.

CSegmentLoss* get_segment_loss_object (  ) 

get the segment loss object

Definition at line 495 of file DynProg.h.

void get_states ( int32_t **  states,
int32_t *  m,
int32_t *  n 
)

best path get states

Parameters:
states states
m dimension m
n dimension n

Definition at line 855 of file DynProg.cpp.

void init_content_svm_value_array ( const int32_t  p_num_svms  ) 

init CArray for precomputed content svm values with size seq_len x num_svms

Parameters:
p_num_svms,: number of svm weight vectors for content prediction

Definition at line 274 of file DynProg.cpp.

void init_mod_words_array ( int32_t *  p_mod_words_array,
int32_t  num_elem,
int32_t  num_columns 
)

init mod words array

Parameters:
p_mod_words_array new mod words array
num_elem number of array elements
num_columns number of columns

Definition at line 583 of file DynProg.cpp.

void init_tiling_data ( int32_t *  probe_pos,
float64_t intensities,
const int32_t  num_probes 
)

init CArray for precomputed tiling intensitie-plif-values with size seq_len x num_svms

Parameters:
probe_pos local positions of probes
intensities intensities of probes
num_probes number of probes

Definition at line 244 of file DynProg.cpp.

void long_transition_settings ( bool  use_long_transitions,
int32_t  threshold,
int32_t  max_len 
)

settings for long transition handling

Parameters:
use_long_transitions use the long transition approximation
threshold use long transition for segments larger than
max_len allow transitions up to

Definition at line 506 of file DynProg.h.

void lookup_content_svm_values ( const int32_t  from_state,
const int32_t  to_state,
const int32_t  from_pos,
const int32_t  to_pos,
float64_t svm_values,
int32_t  frame 
) [protected]

lookup content SVM values

Parameters:
from_state from state
to_state to state
from_pos from position
to_pos to position
svm_values SVM values
frame frame

Definition at line 2508 of file DynProg.cpp.

void lookup_tiling_plif_values ( const int32_t  from_state,
const int32_t  to_state,
const int32_t  len,
float64_t svm_values 
) [protected]

lookup tiling Plif values

Parameters:
from_state from state
to_state to state
len length
svm_values SVM values
void precompute_content_values (  ) 

create array of precomputed content svm values

Definition at line 397 of file DynProg.cpp.

void precompute_stop_codons (  ) 

precompute stop codons

Definition at line 200 of file DynProg.cpp.

void precompute_tiling_plifs ( CPlif **  PEN,
const int32_t *  tiling_plif_ids,
const int32_t  num_tiling_plifs 
)

precompute tiling Plifs

Parameters:
PEN Plif PEN
tiling_plif_ids tiling plif id's
num_tiling_plifs number of tiling plifs

Definition at line 317 of file DynProg.cpp.

int32_t raw_intensities_interval_query ( const int32_t  from_pos,
const int32_t  to_pos,
float64_t intensities,
int32_t  type 
) [protected]

raw intensities interval query

Parameters:
from_pos from position
to_pos to position
intensities intensities
type type
Returns:
an integer

Definition at line 2482 of file DynProg.cpp.

void resize_lin_feat ( int32_t  num_new_feat  ) 

append rows to linear features array

Parameters:
num_new_feat number of new rows to add

Definition at line 284 of file DynProg.cpp.

void set_a ( float64_t a,
int32_t  M,
int32_t  N 
)

set matrix a

Parameters:
a new matrix a
M dimension M of matrix a
N dimension N of matrix a

Definition at line 462 of file DynProg.cpp.

void set_a ( T_STATES  line_,
T_STATES  column,
float64_t  value 
)

access function for matrix a

Parameters:
line_ row in matrix 0...N-1
column column in matrix 0...N-1
value value to be set

Definition at line 382 of file DynProg.h.

void set_a_id ( int32_t *  a,
int32_t  M,
int32_t  N 
)

set a id

Parameters:
a new a id (identity?)
M dimension M of matrix a
N dimension N of matrix a

Definition at line 470 of file DynProg.cpp.

void set_a_trans_matrix ( float64_t a_trans,
int32_t  num_trans,
int32_t  N 
)

set a transition matrix

Parameters:
a_trans transition matrix a
num_trans number of transitions
N dimension N of matrix a

Definition at line 483 of file DynProg.cpp.

void set_content_type_array ( float64_t seg_path,
int32_t  rows,
int32_t  cols 
)

set an array of length #(candidate positions) which specifies the content type of each pos and a mask that determines to which extend the loss should be applied to this position; this is a way to encode label confidence via weights between zero and one

Parameters:
seg_path seg path
rows rows
cols cols

Definition at line 689 of file DynProg.cpp.

void set_dict_weights ( float64_t dictionary_weights,
int32_t  dict_len,
int32_t  n 
)

set best path dict weights

Parameters:
dictionary_weights dictionary weights
dict_len length of dictionary weights
n dimension n

Definition at line 787 of file DynProg.cpp.

void set_gene_string ( char *  genestr,
int32_t  genestr_len 
)

set best path genesstr

Parameters:
genestr gene string
genestr_len length of gene string

Definition at line 763 of file DynProg.cpp.

void set_intron_list ( CIntronList intron_list,
int32_t  num_plifs 
)

set intron list

Parameters:
intron_list 
num_plifs number of intron plifs

Definition at line 2561 of file DynProg.cpp.

void set_lin_feat ( float64_t p_lin_feat,
int32_t  p_num_svms,
int32_t  p_seq_len 
)

set your own array of precomputed linear features like content predictions and PLiFed tiling array data Jonas

Parameters:
p_lin_feat array of features
p_num_svms number of tracks
p_seq_len number of candidate positions

Definition at line 451 of file DynProg.h.

void set_my_pos_seq ( int32_t *  my_pos_seq  ) 

set best path my position sequence

Parameters:
my_pos_seq my position sequence

Definition at line 779 of file DynProg.cpp.

void set_my_state_seq ( int32_t *  my_state_seq  ) 

set best path my state sequence

Parameters:
my_state_seq my state sequence

Definition at line 771 of file DynProg.cpp.

void set_num_states ( int32_t  N  ) 

set number of states use this to set N first

Parameters:
N new N

Definition at line 223 of file DynProg.cpp.

void set_observation_matrix ( float64_t seq,
int32_t *  dims,
int32_t  ndims 
)

set best path seq

Parameters:
seq signal features
dims dimensions
ndims number of dimensions

Definition at line 662 of file DynProg.cpp.

void set_orf_info ( int32_t *  orf_info,
int32_t  m,
int32_t  n 
)

set best path orf info only for compute_nbest_paths

Parameters:
orf_info the orf info
m dimension m
n dimension n

Definition at line 731 of file DynProg.cpp.

void set_p ( T_STATES  offset,
float64_t  value 
)

access function for probability of first state

Parameters:
offset index 0...N-1
value value to be set

Definition at line 371 of file DynProg.h.

void set_p_vector ( float64_t p,
int32_t  N 
)

set vector p

Parameters:
p new vector p
N size of vector p

Definition at line 447 of file DynProg.cpp.

void set_plif_matrices ( CPlifMatrix pm  ) 

set plif matrices

Parameters:
pm plif matrix object

Definition at line 754 of file DynProg.cpp.

void set_pos ( int32_t *  pos,
int32_t  seq_len 
)

set best path pos

Parameters:
pos the position
seq_len length of sequence

Definition at line 722 of file DynProg.cpp.

void set_q ( T_STATES  offset,
float64_t  value 
)

access function for probability of end states

Parameters:
offset index 0...N-1
value value to be set

Definition at line 362 of file DynProg.h.

void set_q_vector ( float64_t q,
int32_t  N 
)

set vector q

Parameters:
q new vector q
N size of vector q

Definition at line 455 of file DynProg.cpp.

void set_sparse_features ( CSparseFeatures< float64_t > *  seq_sparse1,
CSparseFeatures< float64_t > *  seq_sparse2 
)

set sparse feature matrices

Definition at line 740 of file DynProg.cpp.


Member Data Documentation

int32_t cum_num_words_default = {0,64,320,1344,5440} [static, protected]

default values storing the cumulative sum of the number of kmers that exist for the different degrees e.g. matlab spoken: cumsum(4.^[3 4 5 6])

Definition at line 803 of file DynProg.h.

int32_t frame_plifs = {4,5,6} [static, protected]

default values defining which of the plif are the frame specific plifs

Definition at line 807 of file DynProg.h.

CArray<int32_t> m_cum_num_words [protected]

cum num words

Definition at line 656 of file DynProg.h.

int32_t* m_cum_num_words_array [protected]

cum num words array

Definition at line 658 of file DynProg.h.

dict weights

Definition at line 720 of file DynProg.h.

distribution of end-states

Definition at line 643 of file DynProg.h.

Definition at line 644 of file DynProg.h.

CArray<char> m_genestr [protected]

a single string (to be segmented)

Definition at line 703 of file DynProg.h.

CArray<bool> m_genestr_stop [protected]

storeage of stop codons array of size length(sequence)

Definition at line 758 of file DynProg.h.

initial distribution of states

Definition at line 639 of file DynProg.h.

Definition at line 640 of file DynProg.h.

CIntronList* m_intron_list [protected]

administers a list of introns and quality scores and provides functions for fast access

Definition at line 762 of file DynProg.h.

array for storage of precomputed linear features linge content svm values or pliffed tiling data Jonas

Definition at line 771 of file DynProg.h.

int32_t m_long_transition_threshold [protected]

threshold for transitions that are computed the traditional way

Definition at line 788 of file DynProg.h.

bool m_long_transitions [protected]

use long transition approximation

Definition at line 785 of file DynProg.h.

int32_t m_max_a_id [protected]

max a id

Definition at line 683 of file DynProg.h.

CArray2<int32_t> m_mod_words [protected]

mod words

Definition at line 664 of file DynProg.h.

int32_t* m_mod_words_array [protected]

mod words array

Definition at line 666 of file DynProg.h.

my losses

Definition at line 734 of file DynProg.h.

CArray<int32_t> m_my_pos_seq [protected]

my position sequence

Definition at line 730 of file DynProg.h.

my scores

Definition at line 732 of file DynProg.h.

CArray<int32_t> m_my_state_seq [protected]

my state seq

Definition at line 728 of file DynProg.h.

int32_t m_N [protected]

number of states

Definition at line 631 of file DynProg.h.

int32_t m_num_degrees [protected]

number of degress

Definition at line 649 of file DynProg.h.

int32_t m_num_intron_plifs [protected]

number of intron features and plifs

Definition at line 765 of file DynProg.h.

int32_t* m_num_lin_feat_plifs_cum [protected]

num lin feat plifs cum

Definition at line 780 of file DynProg.h.

int32_t* m_num_probes_cum [protected]

number of probes

Definition at line 778 of file DynProg.h.

int32_t m_num_raw_data [protected]

number of additional data tracks like tiling, RNA-Seq, ...

Definition at line 782 of file DynProg.h.

int32_t m_num_svms [protected]

number of SVMs

Definition at line 651 of file DynProg.h.

CArray<int32_t> m_num_unique_words [protected]

SVM start position number of unique words

Definition at line 679 of file DynProg.h.

CArray<int32_t> m_num_words [protected]

num words

Definition at line 660 of file DynProg.h.

int32_t* m_num_words_array [protected]

num words array

Definition at line 662 of file DynProg.h.

sequence

Definition at line 687 of file DynProg.h.

CArray2<int32_t> m_orf_info [protected]

orf info

Definition at line 693 of file DynProg.h.

CArray2<CPlifBase*> m_PEN [protected]

PEN

Definition at line 699 of file DynProg.h.

PEN state signals

Definition at line 701 of file DynProg.h.

CArray<CPlifBase*> m_plif_list [protected]

Plif list

Definition at line 697 of file DynProg.h.

plif matrices

Definition at line 753 of file DynProg.h.

CArray<int32_t> m_pos [protected]

candidate position

Definition at line 689 of file DynProg.h.

CArray2<int32_t> m_positions [protected]

positions

Definition at line 746 of file DynProg.h.

int32_t* m_probe_pos [protected]

probe position

Definition at line 776 of file DynProg.h.

raw intensities

Definition at line 774 of file DynProg.h.

CArray<float64_t> m_scores [protected]

scores

Definition at line 742 of file DynProg.h.

segment loss object containing the functions to compute the segment loss

Definition at line 738 of file DynProg.h.

CArray<int32_t> m_segment_ids [protected]

segment IDs

Definition at line 724 of file DynProg.h.

segment loss

Definition at line 722 of file DynProg.h.

segment mask

Definition at line 726 of file DynProg.h.

segment sum weights

Definition at line 695 of file DynProg.h.

int32_t m_seq_len [protected]

number of candidate positions

Definition at line 691 of file DynProg.h.

sparse feature matrix dim1

Definition at line 749 of file DynProg.h.

sparse feature matrix dim2

Definition at line 751 of file DynProg.h.

CArray<bool> m_sign_words [protected]

sign words

Definition at line 668 of file DynProg.h.

bool* m_sign_words_array [protected]

sign words array

Definition at line 670 of file DynProg.h.

CArray2<int32_t> m_states [protected]

states

Definition at line 744 of file DynProg.h.

CArray<int32_t> m_string_words [protected]

string words

Definition at line 672 of file DynProg.h.

int32_t* m_string_words_array [protected]

string words array

Definition at line 674 of file DynProg.h.

bool m_svm_arrays_clean [protected]

SVM arrays clean

Definition at line 681 of file DynProg.h.

Definition at line 635 of file DynProg.h.

Definition at line 636 of file DynProg.h.

CArray2<int32_t> m_transition_matrix_a_id [protected]

transition matrix

Definition at line 634 of file DynProg.h.

CArray<int32_t> m_word_degree [protected]

word degree

Definition at line 654 of file DynProg.h.

uint16_t*** m_wordstr [protected]

wordstr is a vector of L n-gram indices, with wordstr(i) representing a number betweeen 0 and 4095 corresponding to the 6-mer in genestr(i-5:i) pos is a vector of candidate transition positions (it is input to compute_nbest_paths) t_end is some index in pos

svs has been initialized by init_svm_values

At the end of this procedure, svs.svm_values[i+s*svs.seqlen] has the value of the s-th SVM on genestr(pos(t_end-i):pos(t_end)) for every i satisfying pos(t_end)-pos(t_end-i) <= svs.maxlookback

The SVM weights are precomputed in m_dict_weights

Definition at line 718 of file DynProg.h.

int32_t mod_words_default [static, protected]
Initial value:
 {1,1,1,1,1,1,1,1,
                                    1,1,1,1,1,1,1,1,
                                    0,0,0,0,0,0,0,0,
                                    0,0,0,0,0,0,0,0}

default values

Definition at line 814 of file DynProg.h.

int32_t num_words_default = {64,256,1024,4096} [static, protected]

default values like cum_num_words_default but not cumsumed: e.g. 4.^[3 4 5 6]

Definition at line 811 of file DynProg.h.

bool sign_words_default [static, protected]
Initial value:
 {true,true,true,true,true,true,true,true,
                                      false,false,false,false,false,false,false,false}

default values

Definition at line 817 of file DynProg.h.

int32_t string_words_default [static, protected]
Initial value:
 {0,0,0,0,0,0,0,0,
                                       1,1,1,1,1,1,1,1}

default values

Definition at line 820 of file DynProg.h.

int32_t word_degree_default = {3,4,5,6} [static, protected]

maximal length of a long transition Note: is ignored in the current implementation => arbitrarily long transitions can be decodeddefault values defining the k-mer degrees used for content type prediction

Definition at line 798 of file DynProg.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

SHOGUN Machine Learning Toolbox - Documentation