#ifndef DYNAMITEestloop3HEADERFILE #define DYNAMITEestloop3HEADERFILE #ifdef _cplusplus extern "C" { #endif #include "dyna.h" #include "cdparser.h" #include "genewisemodel.h" struct Wise2_EstLoop3 { int dynamite_hard_link; BaseMatrix * basematrix; int leni; int lenj; GeneWiseScore * query; ComplexSequence* target; cDNAParserScore * cp; } ; /* EstLoop3 defined */ #ifndef DYNAMITE_DEFINED_EstLoop3 typedef struct Wise2_EstLoop3 Wise2_EstLoop3; #define EstLoop3 Wise2_EstLoop3 #define DYNAMITE_DEFINED_EstLoop3 #endif #ifdef PTHREAD struct thread_pool_holder_EstLoop3 { GeneWiseScore * query; /* Static query data: never free'd */ ComplexSequence* target;/* Target object placeholder */ cDNADB* targetdb; /* Target database object */ boolean target_init; cDNAParserScore * cp; pthread_mutex_t input_lock; pthread_mutex_t output_lock; Hscore * out; pthread_t * pool; int number_of_threads; boolean search_has_ended; DBSearchImpl * dbsi; } ; #endif /* PTHREAD */ /***************************************************/ /* Callable functions */ /* These are the functions you are expected to use */ /***************************************************/ /* Function: search_EstLoop3(dbsi,out,query,targetdb,cp) * * Descrip: This function makes a database search of EstLoop3 * It uses the dbsi structure to choose which implementation * to use of the database searching. This way at run time you * can switch between single threaded/multi-threaded or hardware * * * Arg: dbsi [UNKN ] Undocumented argument [DBSearchImpl *] * Arg: out [UNKN ] Undocumented argument [Hscore *] * Arg: query [UNKN ] Undocumented argument [GeneWiseScore *] * Arg: targetdb [UNKN ] Undocumented argument [cDNADB*] * Arg: cp [UNKN ] Undocumented argument [cDNAParserScore *] * * Return [UNKN ] Undocumented return value [Search_Return_Type] * */ Search_Return_Type Wise2_search_EstLoop3(DBSearchImpl * dbsi,Hscore * out,GeneWiseScore * query,cDNADB* targetdb ,cDNAParserScore * cp); #define search_EstLoop3 Wise2_search_EstLoop3 /* Function: serial_search_EstLoop3(out,query,targetdb,cp) * * Descrip: This function makes a database search of EstLoop3 * It is a single processor implementation * * * Arg: out [UNKN ] Undocumented argument [Hscore *] * Arg: query [UNKN ] Undocumented argument [GeneWiseScore *] * Arg: targetdb [UNKN ] Undocumented argument [cDNADB*] * Arg: cp [UNKN ] Undocumented argument [cDNAParserScore *] * * Return [UNKN ] Undocumented return value [Search_Return_Type] * */ Search_Return_Type Wise2_serial_search_EstLoop3(Hscore * out,GeneWiseScore * query,cDNADB* targetdb ,cDNAParserScore * cp); #define serial_search_EstLoop3 Wise2_serial_search_EstLoop3 /* Function: PackAln_bestmemory_EstLoop3(query,target,cp,dpenv,dpri) * * Descrip: This function chooses the best memory set-up for the alignment * using calls to basematrix, and then implements either a large * or small memory model. * * It is the best function to use if you just want an alignment * * If you want a label alignment, you will need * /convert_PackAln_to_AlnBlock_EstLoop3 * * * Arg: query [UNKN ] query data structure [GeneWiseScore *] * Arg: target [UNKN ] target data structure [ComplexSequence*] * Arg: cp [UNKN ] Resource [cDNAParserScore *] * Arg: dpenv [UNKN ] Undocumented argument [DPEnvelope *] * Arg: dpri [UNKN ] Undocumented argument [DPRunImpl *] * * Return [UNKN ] Undocumented return value [PackAln *] * */ PackAln * Wise2_PackAln_bestmemory_EstLoop3(GeneWiseScore * query,ComplexSequence* target ,cDNAParserScore * cp,DPEnvelope * dpenv,DPRunImpl * dpri); #define PackAln_bestmemory_EstLoop3 Wise2_PackAln_bestmemory_EstLoop3 /* Function: allocate_Expl_EstLoop3(query,target,cp) * * Descrip: This function allocates the EstLoop3 structure * and the basematrix area for explicit memory implementations * It calls /allocate_EstLoop3_only * * * Arg: query [UNKN ] query data structure [GeneWiseScore *] * Arg: target [UNKN ] target data structure [ComplexSequence*] * Arg: cp [UNKN ] Resource [cDNAParserScore *] * * Return [UNKN ] Undocumented return value [EstLoop3 *] * */ EstLoop3 * Wise2_allocate_Expl_EstLoop3(GeneWiseScore * query,ComplexSequence* target ,cDNAParserScore * cp); #define allocate_Expl_EstLoop3 Wise2_allocate_Expl_EstLoop3 /* Function: recalculate_PackAln_EstLoop3(pal,mat) * * Descrip: This function recalculates the PackAln structure produced by EstLoop3 * For example, in linear space methods this is used to score them * * * Arg: pal [UNKN ] Undocumented argument [PackAln *] * Arg: mat [UNKN ] Undocumented argument [EstLoop3 *] * */ void Wise2_recalculate_PackAln_EstLoop3(PackAln * pal,EstLoop3 * mat); #define recalculate_PackAln_EstLoop3 Wise2_recalculate_PackAln_EstLoop3 /* Function: allocate_Small_EstLoop3(query,target,cp) * * Descrip: This function allocates the EstLoop3 structure * and the basematrix area for a small memory implementations * It calls /allocate_EstLoop3_only * * * Arg: query [UNKN ] query data structure [GeneWiseScore *] * Arg: target [UNKN ] target data structure [ComplexSequence*] * Arg: cp [UNKN ] Resource [cDNAParserScore *] * * Return [UNKN ] Undocumented return value [EstLoop3 *] * */ EstLoop3 * Wise2_allocate_Small_EstLoop3(GeneWiseScore * query,ComplexSequence* target ,cDNAParserScore * cp); #define allocate_Small_EstLoop3 Wise2_allocate_Small_EstLoop3 /* Function: PackAln_calculate_Small_EstLoop3(mat,dpenv) * * Descrip: This function calculates an alignment for EstLoop3 structure in linear space * If you want only the start/end points * use /AlnRangeSet_calculate_Small_EstLoop3 * * The function basically * finds start/end points * foreach start/end point * calls /full_dc_EstLoop3 * * * Arg: mat [UNKN ] Undocumented argument [EstLoop3 *] * Arg: dpenv [UNKN ] Undocumented argument [DPEnvelope *] * * Return [UNKN ] Undocumented return value [PackAln *] * */ PackAln * Wise2_PackAln_calculate_Small_EstLoop3(EstLoop3 * mat,DPEnvelope * dpenv); #define PackAln_calculate_Small_EstLoop3 Wise2_PackAln_calculate_Small_EstLoop3 /* Function: AlnRangeSet_calculate_Small_EstLoop3(mat) * * Descrip: This function calculates an alignment for EstLoop3 structure in linear space * If you want the full alignment, use /PackAln_calculate_Small_EstLoop3 * If you have already got the full alignment, but want the range set, use /AlnRangeSet_from_PackAln_EstLoop3 * If you have got the small matrix but not the alignment, use /AlnRangeSet_from_EstLoop3 * * * Arg: mat [UNKN ] Undocumented argument [EstLoop3 *] * * Return [UNKN ] Undocumented return value [AlnRangeSet *] * */ AlnRangeSet * Wise2_AlnRangeSet_calculate_Small_EstLoop3(EstLoop3 * mat); #define AlnRangeSet_calculate_Small_EstLoop3 Wise2_AlnRangeSet_calculate_Small_EstLoop3 /* Function: AlnRangeSet_from_EstLoop3(mat) * * Descrip: This function reads off a start/end structure * for EstLoop3 structure in linear space * If you want the full alignment use * /PackAln_calculate_Small_EstLoop3 * If you have not calculated the matrix use * /AlnRange_calculate_Small_EstLoop3 * * * Arg: mat [UNKN ] Undocumented argument [EstLoop3 *] * * Return [UNKN ] Undocumented return value [AlnRangeSet *] * */ AlnRangeSet * Wise2_AlnRangeSet_from_EstLoop3(EstLoop3 * mat); #define AlnRangeSet_from_EstLoop3 Wise2_AlnRangeSet_from_EstLoop3 /* Function: convert_PackAln_to_AlnBlock_EstLoop3(pal) * * Descrip: Converts a path alignment to a label alignment * The label alignment is probably much more useful than the path * * * Arg: pal [UNKN ] Undocumented argument [PackAln *] * * Return [UNKN ] Undocumented return value [AlnBlock *] * */ AlnBlock * Wise2_convert_PackAln_to_AlnBlock_EstLoop3(PackAln * pal); #define convert_PackAln_to_AlnBlock_EstLoop3 Wise2_convert_PackAln_to_AlnBlock_EstLoop3 /* Function: PackAln_read_Expl_EstLoop3(mat) * * Descrip: Reads off PackAln from explicit matrix structure * * * Arg: mat [UNKN ] Undocumented argument [EstLoop3 *] * * Return [UNKN ] Undocumented return value [PackAln *] * */ PackAln * Wise2_PackAln_read_Expl_EstLoop3(EstLoop3 * mat); #define PackAln_read_Expl_EstLoop3 Wise2_PackAln_read_Expl_EstLoop3 /* Function: calculate_EstLoop3(mat) * * Descrip: This function calculates the EstLoop3 matrix when in explicit mode * To allocate the matrix use /allocate_Expl_EstLoop3 * * * Arg: mat [UNKN ] EstLoop3 which contains explicit basematrix memory [EstLoop3 *] * * Return [UNKN ] Undocumented return value [boolean] * */ boolean Wise2_calculate_EstLoop3(EstLoop3 * mat); #define calculate_EstLoop3 Wise2_calculate_EstLoop3 /* Function: EstLoop3_alloc(void) * * Descrip: Allocates structure: assigns defaults if given * * * * Return [UNKN ] Undocumented return value [EstLoop3 *] * */ EstLoop3 * Wise2_EstLoop3_alloc(void); #define EstLoop3_alloc Wise2_EstLoop3_alloc /* Function: free_EstLoop3(obj) * * Descrip: Free Function: removes the memory held by obj * Will chain up to owned members and clear all lists * * * Arg: obj [UNKN ] Object that is free'd [EstLoop3 *] * * Return [UNKN ] Undocumented return value [EstLoop3 *] * */ EstLoop3 * Wise2_free_EstLoop3(EstLoop3 * obj); #define free_EstLoop3 Wise2_free_EstLoop3 /* Unplaced functions */ /* There has been no indication of the use of these functions */ /***************************************************/ /* Internal functions */ /* you are not expected to have to call these */ /***************************************************/ int Wise2_score_only_EstLoop3(GeneWiseScore * query,ComplexSequence* target ,cDNAParserScore * cp); #define score_only_EstLoop3 Wise2_score_only_EstLoop3 EstLoop3 * Wise2_allocate_EstLoop3_only(GeneWiseScore * query,ComplexSequence* target ,cDNAParserScore * cp); #define allocate_EstLoop3_only Wise2_allocate_EstLoop3_only void Wise2_init_EstLoop3(EstLoop3 * mat); #define init_EstLoop3 Wise2_init_EstLoop3 AlnRange * Wise2_AlnRange_build_EstLoop3(EstLoop3 * mat,int stopj,int stopspecstate,int * startj,int * startspecstate); #define AlnRange_build_EstLoop3 Wise2_AlnRange_build_EstLoop3 boolean Wise2_read_hidden_EstLoop3(EstLoop3 * mat,int starti,int startj,int startstate,int stopi,int stopj,int stopstate,PackAln * out); #define read_hidden_EstLoop3 Wise2_read_hidden_EstLoop3 int Wise2_max_hidden_EstLoop3(EstLoop3 * mat,int hiddenj,int i,int j,int state,boolean isspecial,int * reti,int * retj,int * retstate,boolean * retspecial,int * cellscore); #define max_hidden_EstLoop3 Wise2_max_hidden_EstLoop3 boolean Wise2_read_special_strip_EstLoop3(EstLoop3 * mat,int stopi,int stopj,int stopstate,int * startj,int * startstate,PackAln * out); #define read_special_strip_EstLoop3 Wise2_read_special_strip_EstLoop3 int Wise2_max_special_strip_EstLoop3(EstLoop3 * mat,int i,int j,int state,boolean isspecial,int * reti,int * retj,int * retstate,boolean * retspecial,int * cellscore); #define max_special_strip_EstLoop3 Wise2_max_special_strip_EstLoop3 int Wise2_max_matrix_to_special_EstLoop3(EstLoop3 * mat,int i,int j,int state,int cscore,int * reti,int * retj,int * retstate,boolean * retspecial,int * cellscore); #define max_matrix_to_special_EstLoop3 Wise2_max_matrix_to_special_EstLoop3 void Wise2_calculate_hidden_EstLoop3(EstLoop3 * mat,int starti,int startj,int startstate,int stopi,int stopj,int stopstate,DPEnvelope * dpenv); #define calculate_hidden_EstLoop3 Wise2_calculate_hidden_EstLoop3 void Wise2_init_hidden_EstLoop3(EstLoop3 * mat,int starti,int startj,int stopi,int stopj); #define init_hidden_EstLoop3 Wise2_init_hidden_EstLoop3 boolean Wise2_full_dc_EstLoop3(EstLoop3 * mat,int starti,int startj,int startstate,int stopi,int stopj,int stopstate,PackAln * out,int * donej,int totalj,DPEnvelope * dpenv); #define full_dc_EstLoop3 Wise2_full_dc_EstLoop3 boolean Wise2_do_dc_single_pass_EstLoop3(EstLoop3 * mat,int starti,int startj,int startstate,int stopi,int stopj,int stopstate,DPEnvelope * dpenv,int perc_done); #define do_dc_single_pass_EstLoop3 Wise2_do_dc_single_pass_EstLoop3 void Wise2_push_dc_at_merge_EstLoop3(EstLoop3 * mat,int starti,int stopi,int startj,int * stopj,DPEnvelope * dpenv); #define push_dc_at_merge_EstLoop3 Wise2_push_dc_at_merge_EstLoop3 void Wise2_follow_on_dc_EstLoop3(EstLoop3 * mat,int starti,int stopi,int startj,int stopj,DPEnvelope * dpenv,int perc_done); #define follow_on_dc_EstLoop3 Wise2_follow_on_dc_EstLoop3 void Wise2_run_up_dc_EstLoop3(EstLoop3 * mat,int starti,int stopi,int startj,int stopj,DPEnvelope * dpenv,int perc_done); #define run_up_dc_EstLoop3 Wise2_run_up_dc_EstLoop3 void Wise2_init_dc_EstLoop3(EstLoop3 * mat); #define init_dc_EstLoop3 Wise2_init_dc_EstLoop3 boolean Wise2_dc_start_end_calculate_EstLoop3(EstLoop3 * mat,DPEnvelope * dpenv); #define dc_start_end_calculate_EstLoop3 Wise2_dc_start_end_calculate_EstLoop3 int Wise2_start_end_find_end_EstLoop3(EstLoop3 * mat,int * endj); #define start_end_find_end_EstLoop3 Wise2_start_end_find_end_EstLoop3 void Wise2_init_start_end_linear_EstLoop3(EstLoop3 * mat); #define init_start_end_linear_EstLoop3 Wise2_init_start_end_linear_EstLoop3 AlnConvertSet * Wise2_AlnConvertSet_EstLoop3(void); #define AlnConvertSet_EstLoop3 Wise2_AlnConvertSet_EstLoop3 int Wise2_find_end_EstLoop3(EstLoop3 * mat,int * ri,int * rj,int * state,boolean * isspecial); #define find_end_EstLoop3 Wise2_find_end_EstLoop3 void Wise2_EstLoop3_debug_show_matrix(EstLoop3 * mat,int starti,int stopi,int startj,int stopj,FILE * ofp); #define EstLoop3_debug_show_matrix Wise2_EstLoop3_debug_show_matrix int Wise2_max_calc_EstLoop3(EstLoop3 * mat,int i,int j,int state,boolean isspecial,int * reti,int * retj,int * retstate,boolean * retspecial,int * cellscore); #define max_calc_EstLoop3 Wise2_max_calc_EstLoop3 int Wise2_max_calc_special_EstLoop3(EstLoop3 * mat,int i,int j,int state,boolean isspecial,int * reti,int * retj,int * retstate,boolean * retspecial,int * cellscore); #define max_calc_special_EstLoop3 Wise2_max_calc_special_EstLoop3 #ifdef _cplusplus } #endif #endif