Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
core
chemical
sdf
sdf_parser.hh
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
// :noTabs=false:tabSize=4:indentSize=4:
4
//
5
// This file is part of the Rosetta software suite and is made available under license.
6
// The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
7
// (C) 199x-2009 Rosetta Commons participating institutions and developers.
8
// For more information, see http://www.rosettacommons.org/.
9
10
/// @file core/chemical/sdf/sdf_parser.hh
11
///
12
/// @brief sdf file parser header
13
/// @author Sam DeLuca
14
15
16
#ifndef INCLUDED_core_chemical_sdf_sdf_parser_HH
17
#define INCLUDED_core_chemical_sdf_sdf_parser_HH
18
19
#include <
core/chemical/sdf/sdf_parser.fwd.hh
>
20
#include <
core/chemical/ResidueType.hh
>
21
22
23
#include <map>
24
#include <string>
25
#include <utility/vector1.hh>
26
27
namespace
core {
28
namespace
chemical {
29
namespace
sdf {
30
31
class
SDFParser
{
32
public
:
33
SDFParser
(
utility::vector1<std::string>
file_vector);
34
void
SplitSDF
();
35
core::Size
GetNumberOfResidues
();
36
void
GenerateResidues
();
37
core::chemical::ResidueTypeOP
GetResidueByName
(
std::string
name);
38
utility::vector1<std::string>
GetResidueNameVector
();
39
40
private
:
41
std::map<std::string,utility::vector1<std::string> >
extended_data_map_
;
42
std::map<std::string,utility::vector1<std::string> >
mol_file_map_
;
43
utility::vector1<std::string>
file_vector_
;
44
45
std::map<std::string,core::chemical::ResidueTypeOP>
molecule_map_
;
46
utility::vector1<std::string>
molecule_name_vector_
;
47
};
48
49
}
50
}
51
}
52
53
#endif
/* SDF_PARSER_HH_ */
Generated on Sat Jun 1 2013 11:31:40 for Rosetta 3.5 by
1.8.4