Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cluster_alns.cc
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file apps/pilot/brunette/cluster_alns.cc
11 ///
12 /// @brief Divide input alns into clusters based on gdtmm comparison of partial models.
13 /// @author TJ Brunette
14 
15 
16 #include <devel/init.hh>
17 #include <protocols/comparative_modeling/AlignmentClustering.hh>
18 
19 #include <utility/vector1.hh>
21 
22 
23 int main( int argc, char * argv [] ) {
24  try {
25 
26  using namespace protocols::comparative_modeling;
27  devel::init(argc, argv);
28  AlignmentClusteringOP cluster( new AlignmentClustering() );
29  } catch ( utility::excn::EXCN_Base const & e ) {
30  std::cout << "caught exception " << e.msg() << std::endl;
31  return -1;
32  }
33  return 0;
34 }
virtual std::string const msg() const
Definition: EXCN_Base.hh:70
void init(int argc, char *argv[])
Command line init() version.
Definition: init.cc:23
common derived classes for thrown exceptions
ocstream cout(std::cout)
Wrapper around std::cout.
Definition: ocstream.hh:287
vector1: std::vector with 1-based indexing
int main(int argc, char *argv[])
Definition: cluster_alns.cc:23