17 #include <ObjexxFCL/string.functions.hh>
21 #include <utility/io/izstream.hh>
24 #include <utility/vector1.hh>
28 namespace simple_filters {
32 ) : evaluation::SingleValuePoseEvaluator< core::
Real >(
"burial" )
54 resi.xyz(resi.nbr_atom()).
distance( resj.xyz(resj.nbr_atom()) )
61 Real const score_ii( -1 * burial_prediction * countN );
71 utility::io::izstream input;
75 while ( getline(input,line) ) {
76 if ( line.substr(9,1) ==
"[" ) {
77 std::istringstream line_input(line);
80 while( !line_input.fail() ) line_input >> token;
82 float pred = ObjexxFCL::float_of( token.substr(2,4) );
83 if ( token.substr(1,1) ==
"1" ) pred *= -1;
84 std::cout <<
"line = " << line << std::endl;
85 std::cout <<
"pred = " << pred << std::endl;