File: indelCoderProject.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 (32 lines) | stat: -rw-r--r-- 651 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
#include "indelCoder.h"
#include "indelCoderOptions.h"
#include "indelCoderUtils.h"
#include "Parameters.h"



using namespace std;

int main(int argc, char **argv){

	//printICProgramInfo();
	//time_t t1,t2;
	//time(&t1);
	if (argc == 1) {printICHelp();// here the -h option will be printed
		return 0; 
	}
	string paramStr = argv[1];
	indelCoderOptions::initOptions(paramStr);

	myLog::setLog(indelCoderOptions::_logFile, indelCoderOptions::_logValue);

	//Parameters::dump(cout);

	indelCoder gl;
	gl.run();

	//time(&t2);
	//LOGnOUT(4,<<endl<<"TOTAL RUNNING TIME = "<<(t2-t1)/60.0<<" minutes"<<endl);
	return 0;
}