forked from PacificBiosciences/DEXTRACTOR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathundexqv.c
230 lines (188 loc) · 5.79 KB
/
undexqv.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*******************************************************************************************
*
* Uncompressor for .dexqv files
*
* Author: Gene Myers
* Date: Jan 18, 2014
*
********************************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <unistd.h>
#include "DB.h"
static char *Usage = "[-vkU] <path:dexqv> ...";
static void flip_short(void *w)
{ uint8 *v = (uint8 *) w;
uint8 x;
x = v[0];
v[0] = v[1];
v[1] = x;
}
static void flip_long(void *w)
{ uint8 *v = (uint8 *) w;
uint8 x;
x = v[0];
v[0] = v[3];
v[3] = x;
x = v[1];
v[1] = v[2];
v[2] = x;
}
int main(int argc, char* argv[])
{ int VERBOSE;
int KEEP;
int UPPER;
{ int i, j, k;
int flags[128];
ARG_INIT("undexqv")
j = 1;
for (i = 1; i < argc; i++)
if (argv[i][0] == '-')
{ ARG_FLAGS("vkU") }
else
argv[j++] = argv[i];
argc = j;
VERBOSE = flags['v'];
KEEP = flags['k'];
UPPER = flags['U'];
if (argc == 1)
{ fprintf(stderr,"Usage: %s %s\n",Prog_Name,Usage);
exit (1);
}
}
// For each .dexqv file to be decompressed
{ int i;
char *entry[5] = { NULL, NULL, NULL, NULL, NULL };
int emax = -1;
for (i = 1; i < argc; i++)
{ char *pwd, *root;
uint16 half;
int newv;
FILE *input, *output;
QVcoding *coding;
// Open it and the appropriately named .quiva file
pwd = PathTo(argv[i]);
root = Root(argv[i],".dexqv");
input = Fopen(Catenate(pwd,"/",root,".dexqv"),"r");
if (input == NULL)
exit (1);
output = Fopen(Catenate(pwd,"/",root,".quiva"),"w");
if (output == NULL)
exit (1);
if (VERBOSE)
{ fprintf(stderr,"Processing '%s' ...\n",root);
fflush(stderr);
}
// Read in compression scheme
if (fread(&half,sizeof(uint16),1,input) != 1)
SYSTEM_ERROR
if (half == 0x55aa || half == 0xaa55)
newv = 1;
else
{ newv = 0;
rewind(input);
}
coding = Read_QVcoding(input);
// For each compressed entry do
{ int well;
well = 0;
while (1)
{ int beg, end, qv, rlen;
uint16 half;
uint8 byte;
int e;
// Decode the compressed header and write it out
if (fread(&byte,1,1,input) < 1) break;
while (byte == 255)
{ well += 255;
if (fread(&byte,1,1,input) != 1)
SYSTEM_ERROR
}
well += byte;
if (newv)
if (coding->flip)
{ if (fread(&beg,sizeof(int),1,input) != 1)
SYSTEM_ERROR
flip_long(&beg);
if (fread(&end,sizeof(int),1,input) != 1)
SYSTEM_ERROR
flip_long(&end);
if (fread(&qv,sizeof(int),1,input) != 1)
SYSTEM_ERROR
flip_long(&qv);
}
else
{ if (fread(&beg,sizeof(int),1,input) != 1)
SYSTEM_ERROR
if (fread(&end,sizeof(int),1,input) != 1)
SYSTEM_ERROR
if (fread(&qv,sizeof(int),1,input) != 1)
SYSTEM_ERROR
}
else
if (coding->flip)
{ if (fread(&half,sizeof(uint16),1,input) != 1)
SYSTEM_ERROR
flip_short(&half);
beg = half;
if (fread(&half,sizeof(uint16),1,input) != 1)
SYSTEM_ERROR
flip_short(&half);
end = half;
if (fread(&half,sizeof(uint16),1,input) != 1)
SYSTEM_ERROR
flip_short(&half);
qv = half;
}
else
{ if (fread(&half,sizeof(uint16),1,input) != 1)
SYSTEM_ERROR
beg = half;
if (fread(&half,sizeof(uint16),1,input) != 1)
SYSTEM_ERROR
end = half;
if (fread(&half,sizeof(uint16),1,input) != 1)
SYSTEM_ERROR
qv = half;
}
fprintf(output,"%s/%d/%d_%d RQ=0.%d\n",coding->prefix,well,beg,end,qv);
// Decode the QV entry and write it out
rlen = end-beg;
if (rlen > emax)
{ emax = ((int) (1.2*rlen)) + 1000;
entry[0] = (char *) Realloc(entry[0],5*emax,"Reallocating QV entry buffer");
if (entry[0] == NULL)
exit (1);
for (e = 1; e < 5; e++)
entry[e] = entry[e-1] + emax;
}
Uncompress_Next_QVentry(input,entry,coding,rlen);
if (UPPER)
{ char *deltag = entry[1];
int j;
for (j = 0; j < rlen; j++)
deltag[j] -= 32;
}
for (e = 0; e < 5; e++)
fprintf(output,"%.*s\n",rlen,entry[e]);
}
}
// Clean up for the next file
Free_QVcoding(coding);
fclose(input);
fclose(output);
if (!KEEP)
unlink(Catenate(pwd,"/",root,".dexqv"));
free(root);
free(pwd);
if (VERBOSE)
{ fprintf(stderr,"Done\n");
fflush(stderr);
}
}
}
free(QVentry());
exit (0);
}