Sleipnir
|
00001 /***************************************************************************** 00002 * This file is provided under the Creative Commons Attribution 3.0 license. 00003 * 00004 * You are free to share, copy, distribute, transmit, or adapt this work 00005 * PROVIDED THAT you attribute the work to the authors listed below. 00006 * For more information, please see the following web page: 00007 * http://creativecommons.org/licenses/by/3.0/ 00008 * 00009 * This file is a component of the Sleipnir library for functional genomics, 00010 * authored by: 00011 * Curtis Huttenhower (chuttenh@princeton.edu) 00012 * Mark Schroeder 00013 * Olga G. Troyanskaya (ogt@princeton.edu, primary contact) 00014 * 00015 * If you use this library, the included executable tools, or any related 00016 * code in your work, please cite the following publication: 00017 * Curtis Huttenhower, Mark Schroeder, and Olga G. Troyanskaya. 00018 * "The Sleipnir library for computational functional genomics" 00019 *****************************************************************************/ 00020 #ifndef STDAFX_H 00021 #define STDAFX_H 00022 00023 #ifndef _MSC_VER 00024 #include <dirent.h> 00025 #endif // _MSC_VER 00026 00027 #include <fstream> 00028 using namespace std; 00029 00030 #include <pthread.h> 00031 00032 #include "bayesnet.h" 00033 #include "dataset.h" 00034 #include "genome.h" 00035 #include "meta.h" 00036 using namespace Sleipnir; 00037 00038 #ifndef _MSC_VER 00039 #include <unistd.h> 00040 #define _tempnam tempnam 00041 #define _unlink unlink 00042 #endif // _MSC_VER 00043 00044 #endif // STDAFX_H