src/cpsp/SideChain/options/protein_like_option.h
Go to the documentation of this file.00001 /* 00002 * Main authors: 00003 * Mohamad Rabbath <rabbath@informatik.uni-freiburg.de> 00004 * 00005 * Contributing authors: 00006 * Martin Mann <mmann@informatik.uni-freiburg.de> 00007 * Sebastian Will <will@informatik.uni-freiburg.de> 00008 * 00009 * This file is part of the CPSP-tools package: 00010 * http://www.bioinf.uni-freiburg.de/sw/cpsp/ 00011 * 00012 * See the file "LICENSE" for information on usage and 00013 * redistribution of this file, and for a 00014 * DISCLAIMER OF ALL WARRANTIES. 00015 * 00016 */ 00017 00018 #ifndef PROTEIN_LIKE_OPTION_HH 00019 #define PROTEIN_LIIKE_OPTION_HH 00020 #include "chain_option.h" 00021 using namespace std; 00022 namespace cpsp{ 00023 //side chain threading 00024 namespace scth{ 00025 class ProteinLikeOptions { 00026 public: 00028 string RandomizerPath; 00029 00031 int Threshold; 00032 00034 string SeqLen; 00035 00037 bool statistics; 00038 00040 ProteinLikeOptions(); 00041 00043 SideChainOptions sideChainOptions; 00044 }; 00045 } 00046 } 00047 #endif