-
Notifications
You must be signed in to change notification settings - Fork 24
/
xyz_sfetch.cpp
145 lines (134 loc) · 4.6 KB
/
xyz_sfetch.cpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* xyz_sfetch - index and fetch entries from multi-chain xyz file.
* The time of indexing operation scales linearly with the size of xyz
* file. Indexing is very fast (~2 s for PDB70 library with ~70000 entries).
* The time of fetching operation scales linearly with the length of
* entry list, but is almost unrelated to the size of xyz file. Therefore,
* this program is designed for fetch a small number of entries from a
* big xyz file. Fetching the whole PDB70 from PDB70 itself take ~0.5 min;
* fetching 1000 entries from PDB70 only takes 1~2 s */
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <vector>
#include <algorithm>
using namespace std;
void print_help()
{
cout <<
"Usage: xyz_sfetch ca.xyz\n"
" Index all entries in xyz file 'ca.xyz' into 'ca.xyz.index'.\n"
" Output file name inferred from input file name.\n"
"\n"
"Usage: xyz_sfetch ca.xyz list > subset.xyz\n"
" From xyz file 'ca.xyz' and respective index file 'ca.xyz.index',\n"
" fetch all entries listed by 'list'. Output them to 'subset.xyz'.\n"
<<endl;
exit(EXIT_SUCCESS);
}
int main(int argc, char *argv[])
{
if (argc < 2) print_help();
/* get argument */
string filename="";
string list_opt="";
for(int i=1; i<argc; i++)
{
if (filename.size()==0) filename=argv[i];
else list_opt=argv[i];
}
if(filename.size()==0||filename=="-h") print_help();
if ((filename.size()>=3 && filename.substr(filename.size()-3,3)==".gz")||
(filename.size()>=4 && filename.substr(filename.size()-4,4)==".bz2"))
{
cerr<<"ERROR! This program does not support .gz or .bz2 file"<<endl;
exit(EXIT_SUCCESS);
}
ifstream fin(filename.c_str());
/* list all entries in xyz file */
string line;
int L,i;
int start_pos,end_pos; // position of starting and ending character
if (list_opt.size()==0)
{
ofstream fp((filename+".index").c_str());
while (fin.good())
{
start_pos=fin.tellg();
getline(fin, line);
L=atoi(line.c_str());
getline(fin, line);
if (!fin.good()) break;
for(i=0;i<line.size();i++) if(line[i]==' '||line[i]=='\t') break;
cout<<line.substr(0,i)<<'\t'<<L<<endl;
fp<<line.substr(0,i)<<'\t'<<start_pos;
for (i=0;i<L;i++) getline(fin, line);
end_pos=fin.tellg();
fp<<'\t'<<end_pos<<endl;
}
fin.close();
fp.close();
/* clean up */
line.clear();
filename.clear();
list_opt.clear();
return 0;
}
/* read entry list */
vector<string> chain_list;
ifstream fp;
if (list_opt=="-")
{
while (cin.good())
{
getline(cin, line);
for (i=0;i<line.size();i++) if (line[i]==' '||line[i]=='\t') break;
if (line.size() && i) chain_list.push_back(line.substr(0,i));
}
}
else
{
fp.open(list_opt.c_str(),ios::in);
while (fp.good())
{
getline(fp, line);
for (i=0;i<line.size();i++) if (line[i]==' '||line[i]=='\t') break;
if (line.size() && i) chain_list.push_back(line.substr(0,i));
}
fp.close();
}
/* read xyz index */
/* In xyz file, each line has 28 chacters plus an additional '\n'. In PDB
* file, a residue number has up to 4 digits, which means a PDB chain
* usually has up to 9999 residues. 29*9999 == 289971 < 300000 */
fp.open((filename+".index").c_str());
if (!fp.is_open())
{
cerr<<"ERROR! No index file at "+filename+".index"<<endl;
cerr<<"Run the following command to create the index file:"<<endl;
cerr<<argv[0]<<" "<<filename<<endl;
exit(EXIT_SUCCESS);
}
char *buf=new char [300000];
string chain;
while (fp.good())
{
fp>>chain>>start_pos>>end_pos;
if (!fp.good()) break;
if (find(chain_list.begin(), chain_list.end(),
chain)==chain_list.end()) continue;
fin.seekg(start_pos);
fin.read(buf,end_pos-start_pos);
buf[end_pos-start_pos]=0; // ensures old text beyond this is ignored
cout<<buf;
}
fp.close();
fin.close();
/* clean up */
/* No need to flush, because any input from cin, output to cerr, or
* or program termination forces cout.flush() */
delete[]buf;
filename.clear();
list_opt.clear();
vector<string>().swap(chain_list);
return 0;
}