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
|
/*******************************************************************************
* $Id: IntervalList.cpp,v 1.12 2004/03/01 02:40:08 darling Exp $
* This file is copyright 2002-2007 Aaron Darling and authors listed in the AUTHORS file.
* Please see the file called COPYING for licensing, copying, and modification
* Please see the file called COPYING for licensing details.
* **************
******************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "libMems/IntervalList.h"
#include "libMems/DNAFileSML.h"
#include "libMems/MemHash.h"
#include "libMems/GappedAlignment.h"
#include <map>
#include <sstream>
using namespace std;
using namespace genome;
namespace mems {
}
|