File: indelCoderUtils.cpp

package info (click to toggle)
fastml 3.11-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,772 kB
  • sloc: cpp: 48,522; perl: 3,588; ansic: 819; makefile: 386; python: 83; sh: 55
file content (33 lines) | stat: -rw-r--r-- 1,474 bytes parent folder | download | duplicates (5)
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

#include "indelCoderUtils.h"
#include "indelCoder.h"




void printICHelp(){
	cout <<"+-------------------------------------------+"<<endl;
	cout <<"*** The indelCoder project.					"<<endl;
	cout <<"use a parameter file with these options:    "<<endl;
	cout <<"+-------------------------------------------+"<<endl;
	cout <<"_seqFile									"<<endl;
	cout <<"|------------------------------------------|"<<endl;
	cout <<"_logFile									"<<endl;
	cout <<"_logValue									"<<endl;
	//cout <<"_outDir										"<<endl;
	cout <<"...(a partial list)							"<<endl;
	cout <<"+------------------------------------------+"<<endl;
}

void printICProgramInfo(){
	LOGnOUT(3,<<"+=================================================================+"<<endl);
	LOGnOUT(3,<<"+  The indelCoder project:									        "<<endl);
	LOGnOUT(3,<<"+  Transforming a multiple sequence alignment (MSA)                "<<endl);
	LOGnOUT(3,<<"+  of amino acids into 0/1 characters                              "<<endl);
	LOGnOUT(3,<<"+  Implementation of Indel Coding scheme SIC (Simmons et al. 2002) "<<endl);
	LOGnOUT(3,<<"+  "<<PROG_INFO<<"											        "<<endl);
	LOGnOUT(3,<<"+  Ofir Cohen - ofircohe@tau.ac.il	  							    "<<endl);
	LOGnOUT(3,<<"+  Tal Pupko  - talp@post.tau.ac.il 							    "<<endl);
	LOGnOUT(3,<<"+  Dorothee Huchon  - huchondp@post.tau.ac.il 			    	    "<<endl);
	LOGnOUT(3,<<"+=================================================================+"<<endl);
}