forked from thegenemyers/DAZZ_DB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBsplit.c
216 lines (188 loc) · 5.82 KB
/
DBsplit.c
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*******************************************************************************************
*
* Split a .db into a set of sub-database blocks for use by the Dazzler:
* Divide the database <path>.db conceptually into a series of blocks referable to on the
* command line as <path>.1.db, <path>.2.db, ... If the -x option is set then all reads
* less than the given length are ignored, and if the -a option is not set then secondary
* reads from a given well are also ignored. The remaining reads are split amongst the
* blocks so that each block is of size -s * 1Mbp except for the last which necessarily
* contains a smaller residual. The default value for -s is 400Mbp because blocks of this
* size can be compared by our "overlapper" dalign in roughly 16Gb of memory. The blocks
* are very space efficient in that their sub-index of the master .idx is computed on the
* fly when loaded, and the .bps file of base pairs is shared with the master DB. Any
* tracks associated with the DB are also computed on the fly when loading a database block.
*
* Author: Gene Myers
* Date : September 2013
* Mod : New splitting definition to support incrementality, and new stub file format
* Date : April 2014
*
********************************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "DB.h"
#ifdef HIDE_FILES
#define PATHSEP "/."
#else
#define PATHSEP "/"
#endif
static char *Usage = "[-af] [-x<int>] [-s<float(200.)>] <path:db|dam>";
int main(int argc, char *argv[])
{ HITS_DB db, dbs;
int64 dbpos;
FILE *dbfile, *ixfile;
int status;
int FORCE;
int ALL;
int CUTOFF;
int64 SIZE;
{ int i, j, k;
int flags[128];
char *eptr;
float size;
ARG_INIT("DBsplit")
CUTOFF = 0;
size = 200;
j = 1;
for (i = 1; i < argc; i++)
if (argv[i][0] == '-')
switch (argv[i][1])
{ default:
ARG_FLAGS("af")
break;
case 'x':
ARG_NON_NEGATIVE(CUTOFF,"Min read length cutoff")
break;
case 's':
ARG_REAL(size)
if (size <= 0.)
{ fprintf(stderr,"%s: Block size must be a positive number\n",Prog_Name);
exit (1);
}
break;
}
else
argv[j++] = argv[i];
argc = j;
SIZE = size*1000000ll;
ALL = flags['a'];
FORCE = flags['f'];
if (argc != 2)
{ fprintf(stderr,"Usage: %s %s\n",Prog_Name,Usage);
exit (1);
}
}
// Open db
status = Open_DB(argv[1],&db);
if (status < 0)
exit (1);
if (db.part > 0)
{ fprintf(stderr,"%s: Cannot be called on a block: %s\n",Prog_Name,argv[1]);
exit (1);
}
{ char *pwd, *root;
char buffer[2*MAX_NAME+100];
int nfiles;
int i;
pwd = PathTo(argv[1]);
if (status)
{ root = Root(argv[1],".dam");
dbfile = Fopen(Catenate(pwd,"/",root,".dam"),"r+");
}
else
{ root = Root(argv[1],".db");
dbfile = Fopen(Catenate(pwd,"/",root,".db"),"r+");
}
ixfile = Fopen(Catenate(pwd,PATHSEP,root,".idx"),"r+");
if (dbfile == NULL || ixfile == NULL)
exit (1);
free(pwd);
free(root);
if (fscanf(dbfile,DB_NFILE,&nfiles) != 1)
SYSTEM_ERROR
for (i = 0; i < nfiles; i++)
if (fgets(buffer,2*MAX_NAME+100,dbfile) == NULL)
SYSTEM_ERROR
if (fread(&dbs,sizeof(HITS_DB),1,ixfile) != 1)
SYSTEM_ERROR
if (dbs.cutoff >= 0 && !FORCE)
{ printf("You are about to overwrite the current partition settings. This\n");
printf("will invalidate any tracks, overlaps, and other derivative files.\n");
printf("Are you sure you want to proceed? [Y/N] ");
fflush(stdout);
if (fgets(buffer,100,stdin) == NULL)
SYSTEM_ERROR
if (index(buffer,'n') != NULL || index(buffer,'N') != NULL)
{ printf("Aborted\n");
fflush(stdout);
fclose(dbfile);
exit (1);
}
}
dbpos = ftello(dbfile);
fseeko(dbfile,dbpos,SEEK_SET);
fprintf(dbfile,DB_NBLOCK,0);
fprintf(dbfile,DB_PARAMS,SIZE,CUTOFF,ALL);
}
{ HITS_READ *reads = db.reads;
int nreads = db.ureads;
int64 totlen;
int nblock, ireads, treads, rlen, fno;
int i;
nblock = 0;
totlen = 0;
ireads = 0;
treads = 0;
fprintf(dbfile,DB_BDATA,0,0);
if (ALL)
for (i = 0; i < nreads; i++)
{ rlen = reads[i].rlen;
if (rlen >= CUTOFF)
{ ireads += 1;
treads += 1;
totlen += rlen;
if (totlen >= SIZE)
{ fprintf(dbfile,DB_BDATA,i+1,treads);
totlen = 0;
ireads = 0;
nblock += 1;
}
}
}
else
for (i = 0; i < nreads; i++)
{ rlen = reads[i].rlen;
if (rlen >= CUTOFF && (reads[i].flags & DB_BEST) != 0)
{ ireads += 1;
treads += 1;
totlen += rlen;
if (totlen >= SIZE)
{ fprintf(dbfile,DB_BDATA,i+1,treads);
totlen = 0;
ireads = 0;
nblock += 1;
}
}
}
if (ireads > 0)
{ fprintf(dbfile,DB_BDATA,nreads,treads);
nblock += 1;
}
fno = fileno(dbfile);
if (ftruncate(fno,ftello(dbfile)) < 0)
SYSTEM_ERROR
fseeko(dbfile,dbpos,SEEK_SET);
fprintf(dbfile,DB_NBLOCK,nblock);
dbs.cutoff = CUTOFF;
dbs.all = ALL;
dbs.treads = treads;
rewind(ixfile);
fwrite(&dbs,sizeof(HITS_DB),1,ixfile);
}
fclose(ixfile);
fclose(dbfile);
Close_DB(&db);
exit (0);
}