Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ee207adc authored by BOULLE Olivier's avatar BOULLE Olivier
Browse files

comment

parent 18410788
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include <sys/time.h> #include <sys/time.h>
using namespace std; using namespace std;
int ind; int ind;
double score_match = 10; double score_match = 10;
double score_gap = -7; double score_gap = -7;
...@@ -183,7 +183,7 @@ void SmithWaterman(const std::string& seqA, const std::string& seqB, double& adj ...@@ -183,7 +183,7 @@ void SmithWaterman(const std::string& seqA, const std::string& seqB, double& adj
//for(int j=tick-1;j>=0;j--) cout<<consensus_b[j]; //for(int j=tick-1;j>=0;j--) cout<<consensus_b[j];
//cout<<endl; //cout<<endl;
adjusted_score = matrix_max/lengthSeqB; adjusted_score = matrix_max/lengthSeqB; // makes the score between 0 and 10
align_start = next_i; align_start = next_i;
align_stop = i_max; align_stop = i_max;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment