forked from smarco/WFA2-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
773 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Wavefront Alignment Algorithms | ||
* Copyright (c) 2017 by Santiago Marco-Sola <[email protected]> | ||
* | ||
* This file is part of Wavefront Alignment Algorithms. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
* | ||
* PROJECT: Wavefront Alignment Algorithms | ||
* AUTHOR(S): Santiago Marco-Sola <[email protected]> | ||
*/ | ||
|
||
#include "wavefront_bialigner.h" | ||
#include "wavefront_aligner.h" | ||
#include "wavefront_attributes.h" | ||
#include "wavefront_heuristic.h" | ||
|
||
/* | ||
* Setup | ||
*/ | ||
wavefront_bialigner_t* wavefront_bialigner_new( | ||
wavefront_aligner_attr_t* const attributes) { | ||
// Allocate | ||
wavefront_bialigner_t* const wf_bialigner = malloc(sizeof(wavefront_bialigner_t)); | ||
// Configure subsidiary aligners | ||
wavefront_aligner_attr_t subsidiary_attr = wavefront_aligner_attr_default; | ||
// Inherit attributes from master aligner | ||
subsidiary_attr.distance_metric = attributes->distance_metric; | ||
subsidiary_attr.linear_penalties = attributes->linear_penalties; | ||
subsidiary_attr.affine_penalties = attributes->affine_penalties; | ||
subsidiary_attr.affine2p_penalties = attributes->affine2p_penalties; | ||
subsidiary_attr.match_funct = attributes->match_funct; | ||
subsidiary_attr.match_funct_arguments = attributes->match_funct_arguments; | ||
// Set specifics for subsidiary aligners | ||
subsidiary_attr.heuristic = attributes->heuristic; // Inherit same heuristic | ||
subsidiary_attr.memory_mode = wavefront_memory_high; // Classic WFA | ||
subsidiary_attr.alignment_scope = compute_score; | ||
// Set other parameter for subsidiary aligners | ||
subsidiary_attr.system = attributes->system; | ||
// Allocate forward/reverse aligners | ||
wf_bialigner->alg_forward = wavefront_aligner_new(&subsidiary_attr); | ||
wf_bialigner->alg_forward->align_mode_tag = "BiWFA::Breakpoint_f"; | ||
wf_bialigner->alg_reverse = wavefront_aligner_new(&subsidiary_attr); | ||
wf_bialigner->alg_reverse->align_mode_tag = "BiWFA::Breakpoint_r"; | ||
// Allocate subsidiary aligner | ||
subsidiary_attr.alignment_scope = compute_alignment; | ||
wf_bialigner->alg_subsidiary = wavefront_aligner_new(&subsidiary_attr); | ||
wf_bialigner->alg_subsidiary->align_mode_tag = "BiWFA::SubWFA"; | ||
// Return | ||
return wf_bialigner; | ||
} | ||
void wavefront_bialigner_reap( | ||
wavefront_bialigner_t* const wf_bialigner) { | ||
wavefront_aligner_reap(wf_bialigner->alg_forward); | ||
wavefront_aligner_reap(wf_bialigner->alg_reverse); | ||
wavefront_aligner_reap(wf_bialigner->alg_subsidiary); | ||
} | ||
void wavefront_bialigner_delete( | ||
wavefront_bialigner_t* const wf_bialigner) { | ||
wavefront_aligner_delete(wf_bialigner->alg_forward); | ||
wavefront_aligner_delete(wf_bialigner->alg_reverse); | ||
wavefront_aligner_delete(wf_bialigner->alg_subsidiary); | ||
} | ||
/* | ||
* Accessors | ||
*/ | ||
uint64_t wavefront_bialigner_get_size( | ||
wavefront_bialigner_t* const wf_bialigner) { | ||
return wavefront_aligner_get_size(wf_bialigner->alg_forward) + | ||
wavefront_aligner_get_size(wf_bialigner->alg_reverse) + | ||
wavefront_aligner_get_size(wf_bialigner->alg_subsidiary); | ||
} | ||
void wavefront_bialigner_heuristic_inherit( | ||
wavefront_bialigner_t* const wf_bialigner, | ||
wavefront_heuristic_t* const heuristic) { | ||
wf_bialigner->alg_forward->heuristic = *heuristic; | ||
wf_bialigner->alg_reverse->heuristic = *heuristic; | ||
wf_bialigner->alg_subsidiary->heuristic = *heuristic; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Wavefront Alignment Algorithms | ||
* Copyright (c) 2017 by Santiago Marco-Sola <[email protected]> | ||
* | ||
* This file is part of Wavefront Alignment Algorithms. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
* | ||
* PROJECT: Wavefront Alignment Algorithms | ||
* AUTHOR(S): Santiago Marco-Sola <[email protected]> | ||
*/ | ||
|
||
#ifndef WAVEFRONT_BIALIGNER_H_ | ||
#define WAVEFRONT_BIALIGNER_H_ | ||
|
||
#include "utils/commons.h" | ||
#include "wavefront_penalties.h" | ||
#include "wavefront_attributes.h" | ||
#include "wavefront_heuristic.h" | ||
#include "wavefront_offset.h" | ||
|
||
// Wavefront ahead definition | ||
typedef struct _wavefront_aligner_t wavefront_aligner_t; | ||
|
||
typedef struct { | ||
// Scores | ||
int score; // Score total | ||
int score_forward; // Score (forward) | ||
int score_reverse; // Score (reverse) | ||
// Location | ||
int k_forward; // Breakpoint diagonal (forward) | ||
int k_reverse; // Breakpoint diagonal (reverse) | ||
wf_offset_t offset_forward; // Offset (forward) | ||
wf_offset_t offset_reverse; // Offset (reverse) | ||
affine2p_matrix_type component; // Component (M/I/D) | ||
} wf_bialign_breakpoint_t; | ||
|
||
typedef struct { | ||
wavefront_aligner_t* alg_forward; // Forward aligner | ||
wavefront_aligner_t* alg_reverse; // Reverse aligner | ||
wavefront_aligner_t* alg_subsidiary; // Subsidiary aligner | ||
} wavefront_bialigner_t; | ||
|
||
/* | ||
* Setup | ||
*/ | ||
wavefront_bialigner_t* wavefront_bialigner_new( | ||
wavefront_aligner_attr_t* const attributes); | ||
void wavefront_bialigner_reap( | ||
wavefront_bialigner_t* const wf_bialigner); | ||
void wavefront_bialigner_delete( | ||
wavefront_bialigner_t* const wf_bialigner); | ||
|
||
/* | ||
* Accessors | ||
*/ | ||
uint64_t wavefront_bialigner_get_size( | ||
wavefront_bialigner_t* const wf_bialigner); | ||
void wavefront_bialigner_heuristic_inherit( | ||
wavefront_bialigner_t* const wf_bialigner, | ||
wavefront_heuristic_t* const heuristic); | ||
|
||
#endif /* WAVEFRONT_BIALIGNER_H_ */ |
Oops, something went wrong.