First version of alignment functions (imported from suma* programs)

This commit is contained in:
Celine Mercier
2016-05-11 16:36:23 +02:00
parent 3567681339
commit b3c47809da
27 changed files with 1991 additions and 43 deletions

37
src/obi_align.h Normal file
View File

@ -0,0 +1,37 @@
/****************************************************************************
* Sequence alignment functions header file *
****************************************************************************/
/**
* @file obi_align.h
* @author Celine Mercier
* @date May 11th 2016
* @brief Header file for the functions handling the alignment of DNA sequences.
*/
#ifndef OBI_ALIGN_H_
#define OBI_ALIGN_H_
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include "obidms.h"
#include "obidmscolumn.h"
#include "obitypes.h"
/**
* @brief
*
* TODO
*
*/
int obi_align_one_column(Obiview_p seq_view, OBIDMS_column_p seq_column, Obiview_p score_view, OBIDMS_column_p score_column, double threshold, bool normalize, int reference, bool similarity_mode);
#endif /* OBI_ALIGN_H_ */