forked from CosteaPaul/qaTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoBWAQualTrimming.c
192 lines (169 loc) · 4.89 KB
/
doBWAQualTrimming.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
/*
qaTools - Just more qa tools.
Copyright (C) 2011 P. Costea(paul.igor.costea@scilifelab.se)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "pol_fastq.h"
static void usage()
{
fprintf(stderr, "\nVersion: 1.4\n");
fprintf(stderr, "Contact: Paul Costea <paul.igor.costea@scilifelab.se>\n\n");
fprintf(stderr, "Usage: ");
fprintf(stderr, "doBWAQualTrimming [Options] <in.fastq> <out.fastq>\n");
fprintf(stderr, "Options:\n");
fprintf(stderr, " -p Input is a paierd library\n");
fprintf(stderr, " Use: doBWAQualTrimming [Options] <in1.fastq> <in2.fastq> <out1.fastq> <out2.fastq>\n");
fprintf(stderr, " -v Write discarded sequences\n");
fprintf(stderr, " -n Only remove N's from sequence. -q will be ignored.\n");
fprintf(stderr, " -q [INT] Quality threshold [20]\n");
fprintf(stderr, " -l [INT] Lenght cutoff [54]\n\n");
}
int main(int argc, char* argv[])
{
char arg;
int qual = 20;
int min_length = 54;
bool onlyN = false;
bool isPairedLib = false;
bool writeDropped = false;
//Get args
while ((arg = getopt(argc, argv, "q:l:pvn")) >= 0) {
switch (arg) {
case 'q': qual = atoi(optarg); break;
case 'l': min_length = atoi(optarg); break;
case 'p': isPairedLib = true; break;
case 'n': onlyN = true; break;
case 'v': writeDropped = true; break;
default: fprintf(stderr,"Wrong parameter input: %s\n",optarg); break;
}
}
if (argc-optind != ((isPairedLib) ? 4 : 2)) {
usage();
return 1;
}
int p = optind;
FILE* fast_q1 = fopen(argv[p],"r");
if (fast_q1 == NULL) {
printf("Cannot open file %s\n", argv[p]);
return 1;
}
p++;
FILE* fast_q2 = NULL;
if (isPairedLib) {
fast_q2 = fopen(argv[p],"r");
if (fast_q2 == NULL) {
printf("Cannot open file %s\n", argv[p]);
return 1;
}
p++;
}
FILE* fast_q_out1 = fopen(argv[p],"w");
if (fast_q_out1 == NULL) {
printf("Cannot create output file %s\n", argv[p]);
return 1;
}
p++;
FILE* drop1 = NULL;
FILE* drop2 = NULL;
FILE* fast_q_out2 = NULL;
if (isPairedLib) {
fast_q_out2 = fopen(argv[p],"w");
if (fast_q_out2 == NULL) {
printf("Cannot create output file %s\n", argv[p]);
}
}
if (writeDropped) {//Open files for writing dropped reads
if (isPairedLib) {
drop1 = fopen("dropped1.out","w");
drop2 = fopen("dropped2.out","w");
} else {
drop1 = fopen("dropped.out","w");
}
}
long dropped = 0;
long count = 0;
pol_util::FastqEntry* entry1 = NULL;
pol_util::FastqEntry* entry2 = NULL;
bool keepGoing = true;
while (keepGoing) {
++count;
entry1 = pol_util::FastqEntry::readEntry(fast_q1);
keepGoing = (entry1 != NULL);
if (isPairedLib)
entry2 = pol_util::FastqEntry::readEntry(fast_q2);
if (!keepGoing)
break;
if (onlyN == true) {
bool rem1,rem2;
rem1 = entry1->removePoly('N',min_length);
if (isPairedLib){
rem2 = entry2->removePoly('N',min_length);
}
if ((!rem1) || (isPairedLib && !rem2)) {
++dropped;
if (writeDropped) {
entry1->write(drop1);
if (isPairedLib) {
entry2->write(drop2);
}
}
delete entry1;
delete entry2;
continue;
}
}else {
bool trim1,trim2;
trim1 = entry1->trim(qual,min_length);
if (isPairedLib)
trim2 = entry2->trim(qual,min_length);
if (!trim1 || ( isPairedLib && !trim2 )) {
++dropped;
if (writeDropped) {
entry1->write(drop1);
if (isPairedLib) {
//Write second entry
entry2->write(drop2);
}
}
delete entry1;
delete entry2;
continue;
}
}
//Write them to the output files.
entry1->write(fast_q_out1);
if (isPairedLib) {
//Write second entry
entry2->write(fast_q_out2);
}
delete entry1;
delete entry2;
}
fclose(fast_q1);
fclose(fast_q_out1);
if (isPairedLib) {
fclose(fast_q2);
fclose(fast_q_out2);
}
if (writeDropped) {
fclose(drop1);
if (isPairedLib)
fclose(drop2);
}
printf("\n");
printf("%ld reads have been dropped!\n",dropped);
printf("You just lost about %3.2f procent of your data!\n",(double(dropped)/count)*100);
}