1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
|
#include <iostream>
#include <sstream>
#include <fstream>
#include <list>
#include <map>
#include <queue>
#include <stack>
#include <cstring>
#include <cstdlib>
#include <string>
#include <algorithm>
#define MAX 1024
#define MAX_NB_NODES 5000000
using namespace std;
typedef struct node{
int number;
char *direction;
}NODE;
ofstream file1; // for all the cycles
ofstream myfile; // for the cycles in fasta format
ofstream tabfile; // for the cycles in tab format file
list<NODE> **adjacency_list;
list<NODE> **adjacency_list_copy;
map<string,int> labels;
map<int, int> coverage1;
map<int, int> coverage2;
vector<int>cyclesnew;
map<int,string>allcycles;
vector<int>cycles;
vector<int>cycle_reverse;
vector<int>switching;
vector<int>path1;
vector<int>path2;
map<int,string>sequences;
int cycles1=0;
int count_events=0;
int snps=0;
int k_value;
string expanding1;
string expanding2;
/*Added this for cycle detection using Pilu's code*/
stack<int> marked;
stack<int> point;
bool* mark;
bool** adjacency;
int numberOfCycles;
/////////////////////////////////////////////////////// FUNCTION PROTOTYPES /////////////////////////////////////////////////
int read_nodes(char **correspondance);
char * Trim_char(char *input);
string *read_graph(list<NODE> **adjacency_list, int *nb_nodes, char *file_name);
int connected_components(int *E, list<int> **adjacency_list, int nb_nodes);
void find_nodes(vector<int>path, int start, int end, list<NODE>**adjacency_list, string *correspondance);
void allPaths(vector<int>path, int start, int end, list<NODE>**adjacency_list, string *correspondance);
int valid_path(char *direction1, char *direction2);
void Print_Path_twonodes(string * correspondance, int* predecessor, int start, int end);
void Get_paths(vector<int>*path1,vector<int>*path2, vector<int>cycles, int start,int end);
int Get_Length(vector<int>path1, map<int,string>&sequence, string *correspondance);
void Switching_Nodes(vector<int>cycles, list<NODE>**adjacency_list, string *correspondance, int numofcycles);
void Print_Path(string * correspondance, int* predecessor, int i, int it);
void DFS_Visit(int i, list<NODE> **adjacency_list, int nb_nodes, string* color, int* predecessor,int time, string *correspondance, int* discovered, int* finished);
void DFS(list<NODE> **adjacency_list, int nb_nodes, string * correspondance);
void Get_sequences(string *correspondance, char *filename, map<int,string>&sequences, map<int,int>&coverage1,map<int,int>&coverage2 );
/////////////////////////////////////////////////////// FUNCTION DEFINITIONS ////////////////////////////////////////////////
int read_nodes(char **correspondance)
{
return 4;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// REMOVE \t from string/////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
char * Trim_char(char *input){
int i=0;
int length=strlen(input);
//cout<< length;
char *trimmed=new char[length];
int j=0;
for(i=0;i<length;i++){
if(input[i]!='\t'){
trimmed[j]=input[i];
// cout << trimmed[i];
j++;
}
}
trimmed[j]='\0';
// int length2= strlen(trimmed);
// cout << trimmed << length2 <<endl;
return trimmed;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// REVERSE COMPLEMENT /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// TODO: replace by an array of lenght 256 : return revcomp[b]
static char complement(char b)
{
switch(b)
{
case 'A': return 'T';
case 'T': return 'A';
case 'G': return 'C';
case 'C': return 'G';
case 'a': return 't';
case 't': return 'a';
case 'g': return 'c';
case 'c': return 'g';
}
return '?';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// REVERSE COMPLEMENT /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
string revcomp(string seq){
string s(seq.begin(),seq.end());
// iterate through all of the characters
string::iterator pos;
for (pos = s.begin(); pos != s.end(); ++pos) { // FIXME: remove this
// cout << *pos;
}
// cout << endl;
reverse (s.begin(), s.end());
// cout << "reverse: " << s << endl;
for(pos=s.begin();pos!=s.end();++pos){
*pos=complement(*pos);
}
return s;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// READ GRAPH /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*reads a graph and returns the number of nodes*/
string *read_graph(list<NODE> **adjacency_list, int *nb_nodes, char *file_name)
{
NODE *mynode=new NODE;
char *str = new char[2*MAX];
char *str1 = new char[MAX];
char *str2 = new char[MAX];
char *sequence = new char[MAX];
char *str3=new char[3];
string untabbed;
char *strdirect=new char[2];
char *tmp_str;
int k=0; //nb_node iterator
int n1,n2=0;
map<string, int> directions;
std::ifstream file_op(file_name,ios::in);
if (!file_op.is_open())
{
cerr<<"unable to open file, did you specify one ?"<<endl;
cerr<<"usage is ./cyclepaths input_file1 input_file2"<<endl;
cerr<<endl;
exit(0);
}
while(!file_op.eof())
{
file_op.getline(str,2 * MAX);
int i=0;
/*get first string*/
while (str[i]!='\t')// || str[i]==' ')
{
str1[i]=str[i];
i++;
}
str1[i]='\0';
i++;
/*get_second string*/
int j=0;
while (str[i]!='\t')
{
str2[j]=str[i];
i++;
j++;
}
str2[j]='\0';
/*get third string RF, RR, FF. FR*/
int w=0;
while (str[i]!='\0')
{
str3[w]=str[i];
i++;
w++;
}
str3[w]='\0';
map<string,int>::iterator it;
it = labels.find(str1);
// cout << str1 << "\t"<< str2 <<"\t";
// cout<< str3<<endl;
/*process string 1*/
if((labels.find(str1)) == (labels.end()))
{
/*the node has not been seen before, we add it*/
tmp_str=new char[MAX];
tmp_str=strcpy(tmp_str,str1);
labels[tmp_str]=k;
n1=k;
k++;
}
else{
n1=it->second;
}
/*process string 2*/
it=labels.find(str2);
if(it == (labels.end()))
{
/*the node has not been seen before, we add it*/
tmp_str=new char[MAX];
tmp_str=strcpy(tmp_str,str2);
labels[tmp_str]=k;
n2=k;
k++;
}
else{
n2=it->second;
}
mynode->number=n2;
//untabbed.erase(std::remove(untabbed.begin(),untabbed.end(),'\t'),untabbed.end());
// strcpy(mynode->direction,"asa");
//length=str.copy(buffer,6,5);
mynode->direction=new char[2];
char *trimmed=Trim_char(str3);
strcpy(mynode->direction,trimmed);
//cout <<mynode->number << " "<< mynode->direction << "\t"<< endl;
/*add edge*/
adjacency_list[n1]->push_back(*mynode);
// NODE *mynode2=new NODE;
mynode->number=n1;
// strcpy(mynode2->direction,mynode->direction);
// adjacency_list[n2]->push_back(*mynode);
// adjacency_list-[n1].number->push_back(n2);
//adjacency_list[n2]->push_back(n1);
}
map<string,int>::iterator it;
it = labels.find(str1);
/*fill correspondance array*/
string *correspondance = new string[labels.size()];
// direction=new string[labels.size()];
for(map<string,int>::iterator iter = labels.begin();iter!=labels.end();iter++)
correspondance[(*iter).second] = (*iter).first;
file_op.close();
//(*nb_nodes)=k;
/*VL220410*/
/*I think that the number of nodes was not correct*/
(*nb_nodes)=k-1;
return correspondance;
}
/**
* This method gives the number of connected components of a graph.
* It is based on a breadth-first search.
* @param E array of integers indicating which connected component each node belongs to. This array is initialised to 0 and is filled during the bfs.
* @param adjacency_list graph stored as adjacency lists
* @param nb_nodes number of nodes of the graph
* @return nb_connected_components number of connected components of the graph
*/
int connected_components(int *E, list<int> **adjacency_list, int nb_nodes)
{
queue<int> Q;
bool* visited=new bool[nb_nodes];
bool* finished= new bool[nb_nodes];
for (int i=0;i<nb_nodes;i++)
visited[i]=0;
int c=0;
for (int i=0;i<nb_nodes;i++)
if (!visited[i])
{
/*bfs*/
Q.push(i);
visited[i]=true;
while(!Q.empty())
{
int node_to_process=Q.front();
Q.pop();
/*process node, i.e. determine its component*/
E[node_to_process]=c;
finished[node_to_process]=true;
/*add unvisited neighbors to the queue*/
for (list<int>::iterator it=adjacency_list[node_to_process]->begin(); it!=adjacency_list[node_to_process]->end(); it++){
if (!visited[*it])
{
visited[*it]=true;
Q.push(*it);
}
}
}
/*end of bfs*/
/*next iteration of this loop will correspond to a new connected component*/
c++;
}
return c;
}
/////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// ALL PATHS between 2 nodes //////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void find_nodes(vector<int>path, int start, int end, list<NODE>**adjacency_list, string *correspondance){
if(start==end){
for( vector<int>::iterator it1=path.begin(); it1 != path.end(); it1++)
cout << *it1 << " " ;
return;
}
for (list<NODE>::iterator it=adjacency_list[start]->begin(); it!=adjacency_list[start]->end(); it++){
path.push_back(it->number);
find_nodes(path, it->number, end, adjacency_list, correspondance);
path.pop_back();
return;
}
return;
}
void allPaths(vector<int>path, int start, int end, list<NODE>**adjacency_list, string *correspondance){
cout << start << end << endl;
path.push_back(start);
find_nodes (path,start,end, adjacency_list, correspondance) ;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// VALID PATH /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int valid_path(char *direction1, char *direction2){
// cout<< "To check:" << direction1 <<" " << direction2<<endl;
if(strcmp(direction1,"RR")==0 || (strcmp(direction1,"FR")==0))
if(strcmp(direction2,"RR")==0 || (strcmp(direction2,"RF")==0))
return 1;
else{ //cout << direction1 << direction2<<endl;
return 0;
}
if(strcmp(direction1,"FF")==0 || (strcmp(direction1,"RF")==0))
if(strcmp(direction2,"FF")==0 || (strcmp(direction2,"FR")==0))
return 1;
else{// cout << direction1 << direction2<<endl;
return 0;
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////GET 2 PATHS //////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
void Get_paths(vector<int>*path1, vector<int>*path2, vector<int>cycles, int start,int end){
bool found=0;
vector<int>path3;
vector<int>path4;
vector<int>::iterator it=cycles.begin();
while(*it!=start && it!=cycles.end()){
path3.push_back(*it);
it++;
}
if(*it==start){
path3.push_back(*it);
path2->push_back(*it);
it++;
}
while(*it!=end && it!=cycles.end()){
path2->push_back(*it);
//cout << *it<< " ";
it++;
}
if(*it==end){
path4.push_back(*it);
path2->push_back(*it);
it++;
}
while(it!=cycles.end()){
path4.push_back(*it);
it++;
}
for( vector<int>::iterator it=path3.end()-1; it != path3.begin()-1; it--)
path1->push_back(*it);
for( vector<int>::iterator it=path4.end()-1; it != path4.begin()-1; it--)
path1->push_back(*it);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// Merge Sequence ////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void Merge_Sequence(string& seq1, string sequence1, string seq2, string direction,int k){
string add;
string reverse;
string reverse2;
if (strcmp(direction.c_str(), "FF")==0){
// file1 << direction << endl;
// file1 << "seq1:"<< sequence1 << endl;
// file1 << "seq2:" << seq2<<endl;
// file1 <<"seq1_common:" << sequence1.substr(sequence1.length()-k+1)<< endl;
// file1 << "seq2_common:"<< seq2.substr(0,k-1)<< endl;
if(sequence1.substr(sequence1.length()-k+1)!=seq2.substr(0,k-1)) cout << "NOT EQUAL"<<endl;
add=seq2.substr(k-1);
//file1 << " toadd " << add << endl;
seq1.append(add);
// file1 << "seq1: " << seq1<< endl;
}
if (strcmp(direction.c_str(), "FR")==0){
// file1 << direction << endl;
reverse=revcomp(seq2);
//file1 << "seq1:"<< sequence1<< endl;
//file1 << "seq2:" << seq2<<endl;
//file1 << "seq2reverse:" << reverse <<endl;
//file1 <<"seq1_common:" << sequence1.substr(sequence1.length()-k+1)<< endl;
//file1 << "seq2_common:"<< reverse.substr(0,k-1)<< endl;
if(sequence1.substr(sequence1.length()-k+1)!=reverse.substr(0,k-1)) cout << "NOT EQUAL"<<endl;
add=reverse.substr(k-1);
//file1<< " toadd " << add << endl;
seq1.append(add);
// file1 << "seq1: " << seq1<< endl;
}
if (strcmp(direction.c_str(), "RF")==0){
// file1 << direction << endl;
add=seq2.substr(k-1);
reverse=revcomp(sequence1);
//file1 << "seq1:"<< sequence1 <<" " << reverse << endl;
//file1 << "seq2:" << seq2 << endl;
//file1 <<"seq1_common:" << reverse.substr(reverse.length()-k+1)<< endl;
//file1 << "seq2_common:"<< seq2.substr(0,k-1)<< endl;
//if(reverse.substr(reverse.length()-k+1)!=seq2.substr(0,k-1)) cout << "NOT EQUAL"<<endl;
//file1 << " toadd " << add << endl;
seq1.append(add);
// file1 << "seq1: " << seq1<< endl;
}
if (strcmp(direction.c_str(), "RR")==0){
// file1 << direction << endl;
reverse=revcomp(seq2);
add=reverse.substr(k-1);
reverse2=revcomp(sequence1);
// file1 << "seq1:"<< sequence1 << " "<< reverse2 << endl;
// file1 << "seq2:" << seq2<< " " << reverse << endl;
//file1 <<"seq1_common:" << reverse2.substr(reverse2.length()-k+1)<< endl;
// file1 << "seq2_common:"<< reverse.substr(0,k-1)<< endl;
if(reverse2.substr(reverse2.length()-k+1)!=reverse.substr(0,k-1)) cout << "NOT EQUAL"<<endl;
//file1 << " toadd " << add << endl;
seq1.append(add);
// file1 << "seq1: " << seq1<< endl;
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// Get Length /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int Get_Length(vector<int> path, map<int, string>&sequences, string *correspondance, list<NODE>**adjacency_list, string& expanding)
{
int length=0;
int current=0;
map<int, char*>::iterator iter;
map<string,int>::iterator it1;
for( vector<int>::iterator it=path.begin(); it != path.end(); it++){
int nu1=atoi(correspondance[*it].c_str());
}
char *direct1=new char[2];
strcpy(direct1,"00");
int first_time=0;
int one=cycles.front();
// cycles.push_back(one);
for(int i=0;i+1 < path.size();i++){
int num1=path[i];
int num2=path[i+1];
// cout <<"num1: " <<correspondance[num1]<< " " <<"num2: "<< correspondance[num2] << endl;
int n1=atoi(correspondance[num1].c_str());
int n2=atoi(correspondance[num2].c_str());
// cout << sequences[n1] << endl;
for (list<NODE>::iterator it=adjacency_list[num1]->begin(); it!=adjacency_list[num1]->end(); it++){
if(num2==it->number){
// cout<< it->direction << endl;
direct1=it->direction;
if(first_time==0){
if (strcmp((it->direction), "RF")==0 || strcmp((it->direction), "RR")==0 ){
expanding=revcomp(sequences[n1]);}
else {expanding=sequences[n1];}
// file1 << expanding <<endl;
first_time++;
}
// cout << "dsd"<< first_time << endl;
Merge_Sequence(expanding,sequences[n1], sequences[n2], it->direction, k_value);
}
}
}
length=expanding.length();
//cout << "Path sequence: " << expanding << endl;
//cout << " with length "<< length << endl;
return length;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// SWITCHING NODES /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void Switching_Nodes(vector<int>cycles, list<NODE>**adjacency_list, string *correspondance, int cycles1){
vector<int>::iterator iterator=cycles.begin();
vector<int>::iterator p=cycles.begin()+1;
//list<NODE>::iterator it;
int vertex1=0;
int vertex2=0;
char *direct1=new char[2];
strcpy(direct1,"00");
char *directfirst=new char[2];
strcpy(directfirst,"00");
char *directlast=new char[2];
strcpy(directlast,"00");
int valid;
int one=cycles.front();
int total1=0;
double mean1=0;
int total2=0;
double mean2=0;
int total3=0;
int mean3=0;
int total4=0;
int mean4=0;
int lastnum=cycles[cycles.size()-1];
//file1 << "last " <<correspondance[lastnum]<<endl;
int firstnum=cycles[0];
//file1 << correspondance[firstnum]<<endl;
for (list<NODE>::iterator it=adjacency_list[lastnum]->begin(); it!=adjacency_list[lastnum]->end(); it++){
if(firstnum==it->number){
strcpy(direct1,it->direction);
strcpy(directfirst,it->direction);
// file1<< "first direction :" << direct1 <<endl;
}
}
for(int i=0;i+1 < cycles.size();i++){
int num1=cycles[i];
int num2=cycles[i+1];
//cout <<"num1: " <<correspondance[num1]<< " " <<"num2: "<< correspondance[num2] << endl;
for (list<NODE>::iterator it=adjacency_list[num1]->begin(); it!=adjacency_list[num1]->end(); it++){
if(num2==it->number){
//cout<< it->direction << endl;
if( (valid=valid_path(direct1, it->direction))==0){
// file1 << direct1 << " "<< it->direction << endl;
//cout<< direct1 << " "<< it->direction << endl;
switching.push_back(num1);
}
strcpy(direct1,it->direction);
}
}
}
//if( (valid=valid_path(directlast, directfirst))==0){
// cout << directlast << " "<< directfirst << endl;
// switching.push_back(1);
//}
file1 << "No of switching nodes:"<< switching.size() << endl;
file1 << "Number of nodes in cycle:"<< cycles.size() <<endl;
// cout << "The switching nodes are: ";
// for( vector<int>::iterator it1=switching.begin(); it1 != switching.end(); it1++)
// cout <<correspondance[ *it1] << " " ;
if(switching.size()==2 ){
file1 << "The switching nodes are: ";
for( vector<int>::iterator it1=switching.begin(); it1 != switching.end(); it1++)
file1 <<correspondance[ *it1] << " " ;
int start=switching[0];
int end=switching[1];
// cout << "start:" <<start << " " << end<<endl;
// cout << "start:" <<correspondance[start] << " " << correspondance[end]<<endl;
file1 << "\nPaths: " << endl;
// Print_Path_twonodes(correspondance, predecessor, start, end);
Get_paths(&path1,&path2, cycles, start, end);
int length1=Get_Length(path1,sequences, correspondance, adjacency_list,expanding1);
// cout << "Next path" << endl;
int length2=Get_Length(path2,sequences, correspondance,adjacency_list,expanding2);
if (length1>=length2){
file1 <<"Upper path:"<<endl;
file1 <<"Node\tCoverage_1\tCoverage_2"<< endl;
for( vector<int>::iterator it1=path1.begin(); it1 != path1.end(); it1++){
file1 <<correspondance[*it1] << "\t " ;
int num=atoi(correspondance[*it1].c_str());
file1<< coverage1[num] <<"\t";
total3=total3+ coverage1[num];
file1<< coverage2[num]<<"\t";
total4=total4+coverage2[num];
file1 << " " << endl;
}
file1 << " " << endl;
if(length1-k_value-1==0){
mean3=0;
mean4=0;
}
else{
mean3=total3/(length1-k_value-1);
mean4=total4/(length1-k_value-1);
}
file1 << "Average coverage of upper path in condition 1:"<< mean3 <<endl;
file1 << "Average coverage of upper path in condition 2:"<< mean4 <<endl;
file1 << " " << endl;
//cout <<" "<< endl;
file1<<"Lower path: "<<endl;
;
file1 <<"Node\tCoverage_1\tCoverage_2"<< endl;
for( vector<int>::iterator it1=path2.begin(); it1 != path2.end(); it1++){
file1 <<correspondance[*it1] << "\t " ;
int num=atoi(correspondance[*it1].c_str());
file1<< coverage1[num] <<"\t";
total1=total1+coverage1[num];
file1<< coverage2[num]<<"\t";
total2=total2+coverage2[num];
file1 << " " << endl;
}
file1 << " " << endl;
if(length2-k_value-1==0){
mean1=0;
mean2=0;
}
else{
mean1=total1/(length2-k_value-1);
mean2=total2/(length2-k_value-1);
}
file1 << "Average coverage of lower path in condition 1:"<< mean1 <<endl;
file1 << "Average coverage of lower path in condition 2:"<< mean2 <<endl;
file1 << " " << endl;
file1 <<"Upper Length:" << length1 << endl;
file1 <<"Lower Length:" << length2 << endl;
file1<< ">"<< "Cycle_"<< cycles1 <<"_upper_Length:"<< length1<<"_coverage1:"<<mean3<<"_coverage2:"<< mean4 << endl;
file1 << expanding1 << endl;
file1<< ">"<< "Cycle_"<< cycles1 <<"_lower_Length:"<< length2<<"_coverage1:"<<mean1<<"_coverage2:"<< mean2 << endl;
file1 << expanding2 << endl;
file1 <<" "<< endl;
tabfile<<cycles1<<"\t"<<expanding1<<"\t"<<expanding2<<"\t"<<length1<<"\t"<<length2<<"\t"<<mean3<<"\t"<<mean4<<"\t"<<mean1<<"\t"<<mean2<<"\t"<<endl;
myfile << ">"<< "Cycle_"<< cycles1 <<"_upper_Length:"<< length1<<"_coverage1:"<<mean3<<"_coverage2:"<< mean4 << endl;
myfile << expanding1 << endl;
myfile<< ">"<< "Cycle_"<< cycles1 <<"_lower_Length:"<< length2 <<"_coverage1:"<<mean1<<"_coverage2:"<< mean2 << endl;
myfile << expanding2 << endl;
// myfile <<" "<< endl;
if(length1==length2) snps++;
}
//else largest length is upper, reverse them
else{
file1 <<"Upper path:"<< endl;
file1 <<"Node\tCoverage_1\tCoverage_2"<< endl;
for( vector<int>::iterator it1=path2.begin(); it1 != path2.end(); it1++){
file1 <<correspondance[*it1] << "\t " ;
int num=atoi(correspondance[*it1].c_str());
file1<< coverage1[num] <<"\t";
total1=total1+coverage1[num];
file1<< coverage2[num]<<"\t";
total2=total2+coverage2[num];
file1 << " " << endl;
}
file1 << " " << endl;
if(length2-k_value-1==0){
mean1=0;
mean2=0;
}
else{
mean1=total1/(length2-k_value-1);
mean2=total2/(length2-k_value-1);
}
file1 << "Average coverage of upper path in condition 1:"<< mean1 <<endl;
file1 << "Average coverage of upper path in condition 2:"<< mean2 <<endl;
file1 << " " << endl;
//cout <<" "<< endl;
file1<<"Lower path: "<<endl;
for( vector<int>::iterator it1=path1.begin(); it1 != path1.end(); it1++){
file1 <<correspondance[*it1] << "\t " ;
int num=atoi(correspondance[*it1].c_str());
file1<< coverage1[num] <<"\t";
total3=total3+ coverage1[num];
file1<< coverage2[num]<<"\t";
total4=total4+coverage2[num];
file1 << " " << endl;
}
file1 << " " << endl;
if(length1-k_value-1==0){
mean3=0;
mean4=0;
}
else{
mean3=total3/(length1-k_value-1);
mean4=total4/(length1-k_value-1);
}
file1 << "Average coverage of lower path in condition 1:"<< mean3 <<endl;
file1 << "Average coverage of lower path in condition 2:"<< mean4<<endl;
file1 << " " << endl;
file1 <<"Upper Length:" << length2 << endl;
file1 <<"Lower Length:" << length1 << endl;
file1<< ">"<< "Cycle_"<< cycles1 <<"_upper_Length:"<< length2<<"_coverage1:"<<mean1<<"_coverage2:"<< mean2 << endl;
file1 << expanding2 << endl;
file1<< ">"<< "Cycle_"<< cycles1 <<"_lower_Length:"<< length1<<"_coverage1:"<<mean3<<"_coverage2:"<< mean4 << endl;
file1 << expanding1 << endl;
file1 <<" "<< endl;
tabfile<<cycles1<<"\t"<<expanding2<<"\t"<<expanding1<<"\t"<<length2<<"\t"<<length1<<"\t"<<mean1<<"\t"<<mean2<<"\t"<<mean3<<"\t"<<mean4<<"\t"<<endl;
myfile << ">"<< "Cycle_"<< cycles1 <<"_upper_Length:"<< length2<<"_coverage1:"<<mean1<<"_coverage2:"<< mean2 << endl;
myfile << expanding2 << endl;
myfile<< ">"<< "Cycle_"<< cycles1 <<"_lower_Length:"<< length1<<"_coverage1:"<<mean3<<"_coverage2:"<< mean4 << endl;
myfile << expanding1 << endl;
}
path1.clear();
path2.clear();
count_events++;
}
switching.clear();
// Print_path(vertex1, vertex2, adjacency_list,correspondance);
}
/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////// PRINT PATH //////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
void Print_Path(string * correspondance, int* predecessor, int i, int it){
//cout << "Print_path"<<endl;
if (i==it){
// cout << correspondance[i]<< " ";
cycles.push_back(i);
}
else if (predecessor[it]==-1)
{ //cout << correspondance[it]<< " ";
cycles.push_back(it);
// cout << "direction: " << direction[it]<<" ";
}
else {
Print_Path(correspondance, predecessor, i, predecessor[it]);
//cout << correspondance[it] <<" ";
cycles.push_back(it);
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////// DFS_VISIT /////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void DFS_Visit(int i, list<NODE> **adjacency_list, int nb_nodes, string* color, int* predecessor,int time, string *correspondance, int* discovered, int* finished){
color[i]="gray";
time++;
discovered[i]=time;
//cout << "discovered: "<< correspondance[i]<<endl;
for (list<NODE>::iterator it=adjacency_list[i]->begin(); it!=adjacency_list[i]->end(); it++){
if(color[it->number].compare("white")==0){
predecessor[it->number]=i;
DFS_Visit(it->number,adjacency_list, nb_nodes,color,predecessor,time, correspondance, discovered, finished);
}
if(color[it->number].compare("gray")==0 && (predecessor[i]!=it->number) ){
//list<int>*cycleslist;
//cycleslist->push_front(it->number);
Print_Path(correspondance, predecessor,it->number,i);
// Switching_Nodes(cycleslist, adjacency_list);
//cout<<endl;
//cout << correspondance[it->number]<<" "<< correspondance[i];
file1<<"\n"<<endl;
file1 << "Cycle:" << cycles1 <<endl ;
for(vector<int>::iterator i=cycles.begin();i!=cycles.end();i++){
file1 << correspondance[*i]<< " ";
}
file1 <<" "<<endl;
Switching_Nodes(cycles, adjacency_list, correspondance,cycles1);
//reverse(cycles.begin(),cycles.end());
// Switching_Nodes(cycles, adjacency_list, correspondance,cycles1);
cycles1++;
cycles.clear();
// cycle_reverse.clear();
//cout << cycles<< " cycle"<< endl;
}
}
color[i]="black";
finished[i]=time++;
//cout<< "finished:"<< correspondance[i] << endl;
//cout << cycles<<endl;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////// DFS ///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
void DFS(list<NODE> **adjacency_list, int nb_nodes, string * correspondance ){
string* color=new string[nb_nodes];
int* predecessor=new int[nb_nodes];
int *discovered=new int[nb_nodes];
int *finished=new int[nb_nodes];
for (int i=0;i<nb_nodes;i++) {
color[i]="white";
predecessor[i]=-1;
discovered[i]=-1;
finished[i]=-1;
}
int time=0;
int cycles;
for (int i=0;i<nb_nodes;i++) {
if(color[i].compare("white")==0)
DFS_Visit(i, adjacency_list, nb_nodes,color,predecessor,time,correspondance, discovered, finished);
}
}
//void print_correspondance(int i, string *correspondance){
//cout << correspondance[i];
//}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////// ENUMERATE ALL CYCLES ///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
void printArray(bool *array, int size)
{
for (int i=0;i<size;i++)
cout<<array[i]<<" ";
cout<<endl;
}
void printCircuit(stack<int> stack1, string *correspondance) {
stack<int> stack2;
while (!stack1.empty())
{
int u=stack1.top();
stack1.pop();
// cout<<u<<" ";
stack2.push(u);
cyclesnew.push_back(u);
//cout << correspondance[u] << " ";
}
if(cyclesnew.size()!=2){
numberOfCycles++;
for(vector<int>::iterator i=cyclesnew.end()-1;i!=cyclesnew.begin()-1;i--){
//cout << correspondance[*i]<< " ";
//sum=sum+correspondance[*i];
cycles.push_back(*i);
}
//cout << " " << endl;
file1 << "Cycle:" << numberOfCycles <<endl ;
for(vector<int>::iterator i=cyclesnew.begin();i!=cyclesnew.end();i++){
file1 << correspondance[*i]<< " ";
}
file1 << endl;
Switching_Nodes(cycles, adjacency_list, correspondance,numberOfCycles);
file1<<"\n"<< endl;
}
cyclesnew.clear();
cycles.clear();
while (!stack2.empty())
{
int u=stack2.top();
stack2.pop();
stack1.push(u);
}
//cout<<endl;
}
bool backtrack(int s, int v, bool *mark,stack<int>& marked, stack<int>& point, int nb_nodes, string *correspondance) {
bool f = false;
point.push(v);
mark[v] = true;
marked.push(v);
int w;
list<NODE>::iterator it1;
/*This section could be optimised using adjacency lists instead of adjacency matrix, as in the original Tarjan publication*/
for (list<NODE>::iterator it=adjacency_list_copy[v]->begin(); it!=adjacency_list_copy[v]->end(); it++)
{
w=it->number;
if(w < s)
{
//erase v from the adjacency list of w
for (list<NODE>::iterator it2=adjacency_list_copy[w]->begin(); it2!=adjacency_list_copy[w]->end(); it2++)
{
if (v==it2->number)
it2=adjacency_list_copy[w]->erase(it2);
}
//erase w from the adjacency list of v
it=adjacency_list_copy[v]->erase(it);
}
else if (w == s)
{
printCircuit(point, correspondance);
f = true;
}
else if (!mark[w]) {
bool g = backtrack(s, w,mark, marked, point, nb_nodes,correspondance);
f = f || g;
}
}
//for (int w = 0; w < nb_nodes; w++) {
// if (adjacency[v][w]) {
// if (w < s) {
// adjacency[v][w] = false;
// adjacency[w][v]=false;
// } else if (w == s) {
// printCircuit(point, correspondance);
// f = true;
// } else if (!mark[w]) {
// bool g = backtrack(s, w,mark, marked, point, nb_nodes,correspondance, adjacency_list);
// f = f || g;
// }
// }
// }
if (f)
{
while (marked.top() != v)
{
int u = marked.top();
marked.pop();
mark[u] = false;
}
marked.pop();
mark[v] = false;
}
point.pop();
return f;
}
void enumerateAllCircuits(int nb_nodes, string *correspondance) {
cout << "Cycles found:\n"<<endl;
mark = new bool[nb_nodes];
for (int i = 0; i < nb_nodes; i++) {
mark[i] = false;
}
for (int s = 0; s < nb_nodes; s++) {
backtrack(s, s, mark, marked, point,nb_nodes,correspondance);
while (!marked.empty()) {
int u = marked.top();
marked.pop();
mark[u] = false;
}
}
}
void printAdjacencyMatrix(int nb_nodes) {
for (int i=0;i<nb_nodes;i++)
{
for (int j=0;j<nb_nodes;j++)
cout<<adjacency[i][j]<<" ";
cout<<endl;
}
}
void printAdjacencyList(int nb_nodes,list<NODE> **adjacency_list, string * correspondance) {
for (int i=0;i<nb_nodes;i++)
{
for (list<NODE>::iterator it=adjacency_list[i]->begin(); it!=adjacency_list[i]->end(); it++){
cout<<it->number<<" ";
//cout<< correspondance[it->number] << " ";
}
cout<<endl;
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////// GET SEQUENCES/////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void Get_sequences(string *correspondance, char *filename, map<int,string>& sequences, map<int,int>& coverage1,map<int,int>& coverage2){
char *str = new char[10*MAX];
char *str1 = new char[10*MAX];
char *str2 = new char[10*MAX];
char *sequence = new char[10*MAX];
char *number1=new char[10*MAX];
char *number2=new char[10*MAX];
std::ifstream file_op(filename,ios::in);
if (!file_op.is_open())
{
cerr<<"unable to open file, did you specify one ?"<<endl;
cerr<<"usage is ./paths graph_edges_400k25.txt graph_nodes_400k25.txt 25 sequences_25.fa events_new25.txt events_tab_25.txt"<<endl;
cerr<<endl;
exit(0);
}
while(!file_op.eof())
{
file_op.getline(str,10 * MAX);
int i=0;
/*get first string label*/
while (str[i]!='\t')// || str[i]==' ')
{
str1[i]=str[i];
i++;
}
str1[i]='\0';
i++;
/*get_second string sequence*/
int j=0;
while (str[i]!='\t')
{
sequence[j]=str[i];
i++;
j++;
}
i++;
sequence[j]='\0';
int lengthofseq=strlen(sequence);
//cout << sequence <<" "<<endl;
// cout << "NEW"<<endl;
map<string,int>::iterator it;
it = labels.find(str1);
int n1 =atoi(str1);
// third string-ignore
while (str[i]!='\t')
{
i++;
}
//get fourth string-coverage1
i++;
int w=0;
while (str[i]!='\t')
{
number1[w]=str[i];
i++;
w++;
}
number1[w]='\0';
// cout << number1 <<endl;
int cov1=atoi(number1);
// cout << cov1 <<endl;
//get fifth string-coverage2
int z=0;
while (str[i]!='\0')
{
number2[z]=str[i];
i++;
z++;
}
number2[z]='\0';
// cout << number1 <<endl;
int cov2=atoi(number2);
// cout << cov2 <<endl;
// if((labels.find(str1)) != (labels.end()))
// {
// int n1=it->second;
// cout << n1 << " n1" << endl;
// cout << it->first << " "<<endl; ;
//sequences[it]=new string();
// coverage1[n1]=new int[2];
// coverage1[n1]=new int;
coverage1.insert(pair<int, int>(n1, cov1));
coverage2.insert(pair<int, int>(n1, cov2));
// n1=it->second;
sequences[n1]=new char[lengthofseq];
// cout << "coverage1 " << cov1;
// cout << "coverage2 " << cov2;
sequences[n1]=sequence;
sequences.insert(pair<int, string>(n1,sequence));
//mymap.insert ( pair<char,int>('a',100) );
// cout << n1 << " " << sequences[n1]<<" " << endl;
// strcpy(sequences[n1],sequence);
// for(map<string,int>::iterator iter = labels.begin();iter!=labels.end();iter++)
//correspondance[(*iter).second] = (*iter).first;
}
file_op.close();
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////// MAIN FUNCTION /////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int main(int argc, char ** argv)
{
cout<< "Finding cycles"<<endl;
//list<NODE> **sarah;
/*allocation of necessary structures*/
adjacency_list = new list<NODE> *[MAX_NB_NODES];
adjacency_list_copy = new list<NODE> *[MAX_NB_NODES];
for (int i=0;i<MAX_NB_NODES;i++){
adjacency_list[i]=new list<NODE>;
adjacency_list_copy[i]=new list<NODE>;
}
if (argc != 7) { // Check the value of argc. If not enough parameters have been passed, inform user and exit.
std::cout << "Usage is ./paths graph_edges_file graph_nodes_file k_value outputfile_1.fa outputfile_cycles.txt output_tab_file.txt \n";
std::cin.get();
exit(0);
}
else{
/*read graph*/
int nb_nodes=0;
string *direction;
string *correspondance = read_graph(adjacency_list,&nb_nodes,argv[1]); //reads graph file and creates adjaceny list
// string *correspondance1 = read_graph(adjacency_list_copy,&nb_nodes,argv[1]);
//adjacency_list_copy->merge(adjacency_list);
cout<<"the number of nodes is "<<nb_nodes<<endl;
string value=argv[3]; // k value
char *filefasta=argv[4]; //outpu file1 -fasta formatted results
char *fileresults=argv[5]; //output file 2 -txt output
char *filetabs=argv[6];
myfile.open (filefasta);
file1.open(fileresults);
tabfile.open(filetabs);
k_value=atoi(value.c_str());
tabfile<< "Cycle\tUpperpath\tLowerPath\tLength_Upper\tLength_Lower\tUpper_Coverage_1\tUpper_Coverage_2\tLow_Coverage_1\tLow_Coverage_2\tPrediction"<<endl;
/*vector indicating who is in what class*/
int *E = new int[nb_nodes];
int *newE= new int[nb_nodes];
int *cyc=new int[nb_nodes];
//get the string of each node and the coverages and save it to sequences map<int,string>
Get_sequences(correspondance, argv[2],sequences, coverage1, coverage2);
cout << "Finding events"<< endl;
//for
//file1 << sequences[12] << endl;
file1<<"============================================================================"<<endl;
file1<< "Summary of resutls can be found at the end of this file." << endl;
file1<<"============================================================================"<<endl;
file1<< "The cycles in the graph are: " << endl;
file1<<"============================================================================"<<endl;
/*New method to find cycles*/
/*First store the graph as an adjacency matrix*/
//cout << "create adjacency matrix "<<endl;
// adjacency = new bool*[nb_nodes];
// for(int i = 0; i < nb_nodes; ++i)
// {
// adjacency[i] = new bool[nb_nodes];
// for (int j=0;j<nb_nodes;j++)
// adjacency[i][j]=0;
// }
// adjacency=new bool[nb_nodes][nb_nodes];
// printAdjacencyMatrix(nb_nodes);
//for (int i=0;i<nb_nodes;i++)
// for (list<NODE>::iterator it=adjacency_list[i]->begin(); it!=adjacency_list[i]->end(); it++)
// adjacency[i][it->number]=1;
/*Then query it to get all circuits*/
//printAdjacencyMatrix(nb_nodes);
// for (int i=0;i<MAX_NB_NODES;i++){
//copy (adjacency_list[i]->begin(), adjacency_list[i]->end(), // source
// adjacency_list_copy[i]->begin());
//}
adjacency_list_copy=adjacency_list;
cout<<endl;
cout << "entering enumerateAllcircuits" << endl;
//printAdjacencyList(nb_nodes,adjacency_list,correspondance);
enumerateAllCircuits(nb_nodes,correspondance);
cout<<"Number of cycles is "<< numberOfCycles <<endl;
//exit(0);
cyclesnew.clear();
// Find cycles with depth first search
//DFS(adjacency_list,nb_nodes,correspondance);
file1<<"\n\n============================================================================"<<endl;
file1<<"Summary of results:"<<endl;
file1 << "No of cycles:" << numberOfCycles <<endl;
file1 << "No of cycles investigated for events(having exactly two switching nodes): " << count_events << endl;
file1 << "No of cycles having equal lower and upper paths, identified as SNPs: " << snps <<endl;
file1 << "No of cycles having unequal upper and lower paths: " << count_events-snps << endl;
file1<<"============================================================================"<<endl;
cout<<"============================================================================"<<endl;
cout<< "Summary of resutls" << endl;
cout <<"============================================================================"<<endl;
cout << "No of cycles:" << numberOfCycles <<endl;
cout << "No of cycles investigated for events(having exactly two switching nodes): " << count_events << endl;
cout << "No of cycles having equal lower and upper paths, identified as SNPs: " << snps <<endl;
cout << "No of cycles having unequal upper and lower paths: " << count_events-snps << endl;
cout<<"============================================================================"<<endl;
myfile.close();
file1.close();
tabfile.close();
// cout<<"The number of connected components is "<<nb_connected_components<<endl;
//for (int j=0;j<nb_connected_components;j++)
// {// cout<<j<<"\t";
// for (int i=0;i<nb_nodes;i++)
// if (E[i]==j && newE[i]==j){
// cout<<correspondance[i]<<"\t";
//}
// cout<<endl;
// }
// cout<<endl;
}
}
|