1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: splitMMFFTestSuiteMolFiles.C,v 1.1.8.1 2007/03/25 21:32:22 oliver Exp $
//
// A small program for adding hydrogens to a PDB file (which usually comes
// without hydrogen information) and minimizing all hydrogens by means of a
// conjugate gradient minimizer.
#include <BALL/common.h>
#include <BALL/KERNEL/system.h>
#include <BALL/DATATYPE/string.h>
#include <BALL/SYSTEM/path.h>
#include <BALL/SYSTEM/fileSystem.h>
#include <BALL/FORMAT/lineBasedFile.h>
#include <BALL/SYSTEM/file.h>
using namespace std;
using namespace BALL;
int main(int argc, char** argv)
{
if (argc != 3)
{
Log.error() << "Usage: splitMMFFTestSuiteMolFiles <location of MMFF94_dative.mol2> <folder to write mol2 files>" << std::endl;
return 1;
}
vector<String> file_contents;
String file_name;
String dir = argv[2];
bool get_filename = false;
vector<String> file_names;
LineBasedFile infile(argv[1]);
while (infile.readLine())
{
if (infile.getLine().hasSuffix("MOLECULE"))
{
if (!file_contents.empty() && file_name != "")
{
File outfile(dir + FileSystem::PATH_SEPARATOR + file_name + ".mol2", std::ios::out);
vector<String>::iterator vit = file_contents.begin();
while (vit != file_contents.end())
{
outfile << *vit << std::endl;
vit++;
}
outfile.close();
}
file_contents.clear();
get_filename = true;
file_name = "";
file_contents.push_back(infile.getLine());
continue;
}
if (get_filename)
{
file_name = infile.getLine();
file_names.push_back(file_name);
Log.info() << "Found mol2 file for " << file_name << std::endl;
get_filename = false;
}
file_contents.push_back(infile.getLine());
}
File outfile(dir + FileSystem::PATH_SEPARATOR + "filenames.txt", std::ios::out);
vector<String>::iterator vit = file_names.begin();
while (vit != file_names.end())
{
outfile << *vit << std::endl;
vit++;
}
Log.info() << "Extracted " << file_names.size() << " files" << std::endl;
outfile.close();
return 0;
}
|