-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdexar.c
229 lines (186 loc) · 6.24 KB
/
dexar.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
/*******************************************************************************************
*
* Compresses an .arrow file into a 2-bit per base .dexar file
*
* Author: Gene Myers
* Date : October 12, 2016
*
********************************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include <sys/stat.h>
#include "DB.h"
static char *Usage = "[-vk] ( -i | <path:arrow> ... )";
#define MAX_BUFFER 100000
// Compress read into 2-bits per base (from [0-3] per byte representation
int main(int argc, char *argv[])
{ int VERBOSE;
int KEEP;
int PIPE;
{ int i, j, k;
int flags[128];
ARG_INIT("dexar")
j = 1;
for (i = 1; i < argc; i++)
if (argv[i][0] == '-')
{ ARG_FLAGS("vki") }
else
argv[j++] = argv[i];
argc = j;
VERBOSE = flags['v'];
KEEP = flags['k'];
PIPE = flags['i'];
if ((PIPE && argc > 1) || (!PIPE && argc <= 1))
{ fprintf(stderr,"Usage: %s %s\n",Prog_Name,Usage);
fprintf(stderr,"\n");
fprintf(stderr," -i: source is on standard input.\n");
fprintf(stderr," -k: do *not* remove the .arrow file on completion.\n");
exit (1);
}
if (PIPE)
{ KEEP = 1;
argc = 2;
}
}
// For each arrow file do:
{ char *read;
int rmax;
int i;
rmax = MAX_BUFFER + 30000;
read = (char *) Malloc(rmax+1,"Allocating read buffer");
if (read == NULL)
exit (1);
for (i = 1; i < argc; i++)
{ char *pwd, *root;
FILE *input, *output;
int eof;
// Open fasta file
if (PIPE)
{ input = stdin;
output = stdout;
pwd = NULL;
root = Strdup("Standard Input","Allocaing string");
}
else
{ pwd = PathTo(argv[i]);
root = Root(argv[i],".arrow");
input = Fopen(Catenate(pwd,"/",root,".arrow"),"r");
if (input == NULL)
exit (1);
output = Fopen(Catenate(pwd,"/",root,".dexar"),"w");
if (output == NULL)
exit (1);
}
if (VERBOSE)
{ fprintf(stderr,"Processing '%s' ...\n",root);
fflush(stderr);
}
// Read the first header and output the endian key and short name
{ char *slash;
uint16 half;
int x;
eof = (fgets(read,MAX_BUFFER,input) == NULL);
if (read[strlen(read)-1] != '\n')
{ fprintf(stderr,"Line 1: Arrow line is too long (> %d chars)\n",MAX_BUFFER-2);
exit (1);
}
if (!eof && read[0] != '>')
{ fprintf(stderr,"Line 1: First header in arrow file is missing\n");
exit (1);
}
slash = index(read,'/');
if (slash == NULL)
{ fprintf(stderr,"%s: Header line incorrectly formatted ?\n",Prog_Name);
exit (1);
}
half = 0x55aa;
fwrite(&half,sizeof(uint16),1,output);
x = slash-read;
fwrite(&x,sizeof(int),1,output);
fwrite(read,1,slash-read,output);
}
// For each read do
{ int nline, rlen, lwell;
nline = 1;
rlen = 0;
lwell = 0;
while (!eof)
{ int well, beg, end, x;
float snr[4];
uint16 cnr[4];
char *slash;
uint8 byte;
// Next header is always at read+(rlen+1). Interpret its fields
slash = index(read+(rlen+1),'/');
if (slash == NULL)
{ fprintf(stderr,"%s: Header line incorrectly formatted ?\n",Prog_Name);
exit (1);
}
x = sscanf(slash+1,"%d/%d_%d SN=%f,%f,%f,%f\n",&well,&beg,&end,
snr,snr+1,snr+2,snr+3);
if (x != 7)
{ fprintf(stderr,"%s: Header line incorrectly formatted ?\n",Prog_Name);
exit (1);
}
for (x = 0; x < 4; x++)
if (snr[x] > 99.99)
cnr[x] = 9999;
else
cnr[x] = (uint32) (snr[x]*100.);
// Read fasta sequence (@read) and stop at eof or after having read next header
rlen = 0;
while (1)
{ int x;
eof = (fgets(read+rlen,MAX_BUFFER,input) == NULL);
nline += 1;
x = strlen(read+rlen)-1;
if (read[rlen+x] != '\n')
{ fprintf(stderr,"Line %d: Fasta line is too long (> %d chars)\n",
nline,MAX_BUFFER-2);
exit (1);
}
if (eof || read[rlen] == '>')
break;
rlen += x;
if (rlen + MAX_BUFFER > rmax)
{ rmax = ((int) (1.2 * rlen)) + 1000 + MAX_BUFFER;
read = (char *) Realloc(read,rmax+1,"Reallocaing read buffer");
if (read == NULL)
exit (1);
}
}
read[rlen] = '\0';
// Compress the header fields and output (except for short name, only output once)
while (well - lwell >= 255)
{ byte = 0xff;
fwrite(&byte,1,1,output);
lwell += 255;
}
byte = (uint8) (well-lwell);
fwrite(&byte,1,1,output);
lwell = well;
fwrite(&beg,sizeof(int),1,output);
fwrite(&end,sizeof(int),1,output);
fwrite(cnr,sizeof(uint16),4,output);
// Compress read and output
Number_Arrow(read);
Compress_Read(rlen,read);
fwrite(read,1,COMPRESSED_LEN(rlen),output);
}
}
if (!KEEP)
unlink(Catenate(pwd,"/",root,".arrow"));
free(root);
free(pwd);
if (VERBOSE)
{ fprintf(stderr,"Done\n");
fflush(stderr);
}
}
free(read);
}
exit (0);
}