pairwiseAlign.h
资源名称:MSA_MST.rar [点击查看]
上传用户:szpanda
上传日期:2016-03-09
资源大小:9k
文件大小:1k
源码类别:
DNA
开发平台:
C/C++
- /* File: pairwiseAlign.h */
- /* Author:Qichan Ma, Student No.:250494898 */
- #ifndef PAIRWISEALIGN_H
- #define PAIRWISEALIGN_H
- /* get the maximal number from 2 numbers */
- int max(int x1, int x2);
- /* get the maximal number from 3 numbers */
- int max1(int x1, int x2, int x3);
- /* compute the optimal pairwise alignment score of two sequences */
- int pairwiseScore(char *x, char *y);
- /* compute the optimal pairwise alignment score of two sequences and do traceback to get the alignment */
- int pairwiseAlign(char *x, char *y);
- #endif