-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSamToFastq.java
More file actions
executable file
·494 lines (429 loc) · 23.8 KB
/
SamToFastq.java
File metadata and controls
executable file
·494 lines (429 loc) · 23.8 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
/*
* The MIT License
*
* Copyright (c) 2009 The Broad Institute
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package picard.sam;
import htsjdk.samtools.SAMReadGroupRecord;
import htsjdk.samtools.SAMRecord;
import htsjdk.samtools.SAMUtils;
import htsjdk.samtools.SAMValidationError;
import htsjdk.samtools.SamReader;
import htsjdk.samtools.SamReaderFactory;
import htsjdk.samtools.fastq.FastqRecord;
import htsjdk.samtools.fastq.FastqWriter;
import htsjdk.samtools.fastq.FastqWriterFactory;
import htsjdk.samtools.util.CloserUtil;
import htsjdk.samtools.util.IOUtil;
import htsjdk.samtools.util.Lazy;
import htsjdk.samtools.util.Log;
import htsjdk.samtools.util.ProgressLogger;
import htsjdk.samtools.util.SequenceUtil;
import htsjdk.samtools.util.StringUtil;
import htsjdk.samtools.util.TrimmingUtil;
import picard.PicardException;
import picard.cmdline.CommandLineProgram;
import picard.cmdline.CommandLineProgramProperties;
import picard.cmdline.Option;
import picard.cmdline.StandardOptionDefinitions;
import picard.cmdline.programgroups.SamOrBam;
import java.io.File;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* <p/>
* Extracts read sequences and qualities from the input SAM/BAM file and writes them into
* the output file in Sanger fastq format.
* See <a href="http://maq.sourceforge.net/fastq.shtml">MAQ FastQ specification</a> for details.
* In the RC mode (default is True), if the read is aligned and the alignment is to the reverse strand on the genome,
* the read's sequence from input sam file will be reverse-complemented prior to writing it to fastq in order restore correctly
* the original read sequence as it was generated by the sequencer.
*/
@CommandLineProgramProperties(
usage = SamToFastq.USAGE_SUMMARY + SamToFastq.USAGE_DETAILS,
usageShort = SamToFastq.USAGE_SUMMARY,
programGroup = SamOrBam.class
)
public class SamToFastq extends CommandLineProgram {
static final String USAGE_SUMMARY = "Converts a SAM or BAM file to FASTQ. ";
static final String USAGE_DETAILS = "This tool extracts read sequences and base quality scores from the input SAM/BAM file and " +
"outputs them in FASTQ format. This can be used (by way of a pipe) to run BWA MEM on unmapped BAM (uBAM) files."+
"<br />" +
"<h4>Usage example:</h4>" +
"<pre>" +
"java -jar picard.jar SamToFASTQ \\<br />" +
" I=input.bam \\<br />" +
" FASTQ=output.fastq" +
"</pre>" +
"<hr />";
@Option(doc = "Input SAM/BAM file to extract reads from", shortName = StandardOptionDefinitions.INPUT_SHORT_NAME)
public File INPUT;
@Option(shortName = "F", doc = "Output FASTQ file (single-end fastq or, if paired, first end of the pair FASTQ).",
mutex = {"OUTPUT_PER_RG"})
public File FASTQ;
@Option(shortName = "F2", doc = "Output FASTQ file (if paired, second end of the pair FASTQ).", optional = true,
mutex = {"OUTPUT_PER_RG"})
public File SECOND_END_FASTQ;
@Option(shortName = "FU", doc = "Output FASTQ file for unpaired reads; may only be provided in paired-FASTQ mode", optional = true, mutex = {"OUTPUT_PER_RG"})
public File UNPAIRED_FASTQ;
@Option(shortName = "OPRG", doc = "Output a FASTQ file per read group (two FASTQ files per read group if the group is paired).",
optional = true, mutex = {"FASTQ", "SECOND_END_FASTQ", "UNPAIRED_FASTQ"})
public boolean OUTPUT_PER_RG;
@Option(shortName="RGT", doc = "The read group tag (PU or ID) to be used to output a FASTQ file per read group.")
public String RG_TAG = "PU";
@Option(shortName = "ODIR", doc = "Directory in which to output the FASTQ file(s). Used only when OUTPUT_PER_RG is true.",
optional = true)
public File OUTPUT_DIR;
@Option(shortName = "RC", doc = "Re-reverse bases and qualities of reads with negative strand flag set before writing them to FASTQ",
optional = true)
public boolean RE_REVERSE = true;
@Option(shortName = "INTER", doc = "Will generate an interleaved fastq if paired, each line will have /1 or /2 to describe which end it came from")
public boolean INTERLEAVE = false;
@Option(shortName = "NON_PF", doc = "Include non-PF reads from the SAM file into the output " +
"FASTQ files. PF means 'passes filtering'. Reads whose 'not passing quality controls' " +
"flag is set are non-PF reads. See GATK Dictionary for more info.")
public boolean INCLUDE_NON_PF_READS = false;
@Option(shortName = "CLIP_ATTR", doc = "The attribute that stores the position at which " +
"the SAM record should be clipped", optional = true)
public String CLIPPING_ATTRIBUTE;
@Option(shortName = "CLIP_ACT", doc = "The action that should be taken with clipped reads: " +
"'X' means the reads and qualities should be trimmed at the clipped position; " +
"'N' means the bases should be changed to Ns in the clipped region; and any " +
"integer means that the base qualities should be set to that value in the " +
"clipped region.", optional = true)
public String CLIPPING_ACTION;
@Option(shortName = "CLIP_MIN", doc = "When performing clipping with the CLIPPING_ATTRIBUTE and CLIPPING_ACTION " +
"parameters, ensure that the resulting reads after clipping are at least CLIPPING_MIN_LENGTH bases long. " +
"If the original read is shorter than CLIPPING_MIN_LENGTH then the original read length will be maintained.")
public int CLIPPING_MIN_LENGTH = 0;
@Option(shortName = "R1_TRIM", doc = "The number of bases to trim from the beginning of read 1.")
public int READ1_TRIM = 0;
@Option(shortName = "R1_MAX_BASES", doc = "The maximum number of bases to write from read 1 after trimming. " +
"If there are fewer than this many bases left after trimming, all will be written. If this " +
"value is null then all bases left after trimming will be written.", optional = true)
public Integer READ1_MAX_BASES_TO_WRITE;
@Option(shortName = "R2_TRIM", doc = "The number of bases to trim from the beginning of read 2.")
public int READ2_TRIM = 0;
@Option(shortName = "R2_MAX_BASES", doc = "The maximum number of bases to write from read 2 after trimming. " +
"If there are fewer than this many bases left after trimming, all will be written. If this " +
"value is null then all bases left after trimming will be written.", optional = true)
public Integer READ2_MAX_BASES_TO_WRITE;
@Option(shortName="Q", doc="End-trim reads using the phred/bwa quality trimming algorithm and this quality.", optional=true)
public Integer QUALITY;
@Option(doc = "If true, include non-primary alignments in the output. Support of non-primary alignments in SamToFastq " +
"is not comprehensive, so there may be exceptions if this is set to true and there are paired reads with non-primary alignments.")
public boolean INCLUDE_NON_PRIMARY_ALIGNMENTS = false;
private final Log log = Log.getInstance(SamToFastq.class);
public static void main(final String[] argv) {
System.exit(new SamToFastq().instanceMain(argv));
}
protected int doWork() {
IOUtil.assertFileIsReadable(INPUT);
final SamReader reader = SamReaderFactory.makeDefault().referenceSequence(REFERENCE_SEQUENCE).open(INPUT);
final Map<String, SAMRecord> firstSeenMates = new HashMap<String, SAMRecord>();
final FastqWriterFactory factory = new FastqWriterFactory();
factory.setCreateMd5(CREATE_MD5_FILE);
final Map<SAMReadGroupRecord, FastqWriters> writers = generateWriters(reader.getFileHeader().getReadGroups(), factory);
final ProgressLogger progress = new ProgressLogger(log);
for (final SAMRecord currentRecord : reader) {
if (currentRecord.isSecondaryOrSupplementary() && !INCLUDE_NON_PRIMARY_ALIGNMENTS)
continue;
// Skip non-PF reads as necessary
if (currentRecord.getReadFailsVendorQualityCheckFlag() && !INCLUDE_NON_PF_READS)
continue;
final FastqWriters fq = writers.get(currentRecord.getReadGroup());
if (currentRecord.getReadPairedFlag()) {
final String currentReadName = currentRecord.getReadName();
final SAMRecord firstRecord = firstSeenMates.remove(currentReadName);
if (firstRecord == null) {
firstSeenMates.put(currentReadName, currentRecord);
} else {
assertPairedMates(firstRecord, currentRecord);
final SAMRecord read1 =
currentRecord.getFirstOfPairFlag() ? currentRecord : firstRecord;
final SAMRecord read2 =
currentRecord.getFirstOfPairFlag() ? firstRecord : currentRecord;
writeRecord(read1, 1, fq.getFirstOfPair(), READ1_TRIM, READ1_MAX_BASES_TO_WRITE);
final FastqWriter secondOfPairWriter = fq.getSecondOfPair();
if (secondOfPairWriter == null) {
throw new PicardException("Input contains paired reads but no SECOND_END_FASTQ specified.");
}
writeRecord(read2, 2, secondOfPairWriter, READ2_TRIM, READ2_MAX_BASES_TO_WRITE);
}
} else {
writeRecord(currentRecord, null, fq.getUnpaired(), READ1_TRIM, READ1_MAX_BASES_TO_WRITE);
}
progress.record(currentRecord);
}
CloserUtil.close(reader);
// Close all the fastq writers being careful to close each one only once!
for (final FastqWriters writerMapping : new HashSet<FastqWriters>(writers.values())) {
writerMapping.closeAll();
}
if (!firstSeenMates.isEmpty()) {
SAMUtils.processValidationError(new SAMValidationError(SAMValidationError.Type.MATE_NOT_FOUND,
"Found " + firstSeenMates.size() + " unpaired mates", null), VALIDATION_STRINGENCY);
}
return 0;
}
/**
* Generates the writers for the given read groups or, if we are not emitting per-read-group, just returns the single set of writers.
*/
private Map<SAMReadGroupRecord, FastqWriters> generateWriters(final List<SAMReadGroupRecord> samReadGroupRecords,
final FastqWriterFactory factory) {
final Map<SAMReadGroupRecord, FastqWriters> writerMap = new HashMap<SAMReadGroupRecord, FastqWriters>();
final FastqWriters fastqWriters;
if (!OUTPUT_PER_RG) {
IOUtil.assertFileIsWritable(FASTQ);
final FastqWriter firstOfPairWriter = factory.newWriter(FASTQ);
final FastqWriter secondOfPairWriter;
if (INTERLEAVE) {
secondOfPairWriter = firstOfPairWriter;
} else if (SECOND_END_FASTQ != null) {
IOUtil.assertFileIsWritable(SECOND_END_FASTQ);
secondOfPairWriter = factory.newWriter(SECOND_END_FASTQ);
} else {
secondOfPairWriter = null;
}
/** Prepare the writer that will accept unpaired reads. If we're emitting a single fastq - and assuming single-ended reads -
* then this is simply that one fastq writer. Otherwise, if we're doing paired-end, we emit to a third new writer, since
* the other two fastqs are accepting only paired end reads. */
final FastqWriter unpairedWriter = UNPAIRED_FASTQ == null ? firstOfPairWriter : factory.newWriter(UNPAIRED_FASTQ);
fastqWriters = new FastqWriters(firstOfPairWriter, secondOfPairWriter, unpairedWriter);
// For all read groups we may find in the bam, register this single set of writers for them.
writerMap.put(null, fastqWriters);
for (final SAMReadGroupRecord rg : samReadGroupRecords) {
writerMap.put(rg, fastqWriters);
}
} else {
// When we're creating a fastq-group per readgroup, by convention we do not emit a special fastq for unpaired reads.
for (final SAMReadGroupRecord rg : samReadGroupRecords) {
final FastqWriter firstOfPairWriter = factory.newWriter(makeReadGroupFile(rg, "_1"));
// Create this writer on-the-fly; if we find no second-of-pair reads, don't bother making a writer (or delegating,
// if we're interleaving).
final Lazy<FastqWriter> lazySecondOfPairWriter = new Lazy<FastqWriter>(new Lazy.LazyInitializer<FastqWriter>() {
@Override
public FastqWriter make() {
return INTERLEAVE ? firstOfPairWriter : factory.newWriter(makeReadGroupFile(rg, "_2"));
}
});
writerMap.put(rg, new FastqWriters(firstOfPairWriter, lazySecondOfPairWriter, firstOfPairWriter));
}
}
return writerMap;
}
private File makeReadGroupFile(final SAMReadGroupRecord readGroup, final String preExtSuffix) {
String fileName = null;
if (RG_TAG.equalsIgnoreCase("PU")){
fileName = readGroup.getPlatformUnit();
} else if (RG_TAG.equalsIgnoreCase("ID")){
fileName = readGroup.getReadGroupId();
}
if (fileName == null) {
throw new PicardException("The selected RG_TAG: "+RG_TAG+" is not present in the bam header.");
}
fileName = IOUtil.makeFileNameSafe(fileName);
if (preExtSuffix != null) fileName += preExtSuffix;
fileName += ".fastq";
final File result = (OUTPUT_DIR != null)
? new File(OUTPUT_DIR, fileName)
: new File(fileName);
IOUtil.assertFileIsWritable(result);
return result;
}
void writeRecord(final SAMRecord read, final Integer mateNumber, final FastqWriter writer,
final int basesToTrim, final Integer maxBasesToWrite) {
final String seqHeader = mateNumber == null ? read.getReadName() : read.getReadName() + "/" + mateNumber;
String readString = read.getReadString();
String baseQualities = read.getBaseQualityString();
// If we're clipping, do the right thing to the bases or qualities
if (CLIPPING_ATTRIBUTE != null) {
Integer clipPoint = (Integer) read.getAttribute(CLIPPING_ATTRIBUTE);
if (clipPoint != null && clipPoint < CLIPPING_MIN_LENGTH) {
clipPoint = Math.min(readString.length(), CLIPPING_MIN_LENGTH);
}
if (clipPoint != null) {
if (CLIPPING_ACTION.equalsIgnoreCase("X")) {
readString = clip(readString, clipPoint, null, !read.getReadNegativeStrandFlag());
baseQualities = clip(baseQualities, clipPoint, null, !read.getReadNegativeStrandFlag());
}
else if (CLIPPING_ACTION.equalsIgnoreCase("N")) {
readString = clip(readString, clipPoint, 'N', !read.getReadNegativeStrandFlag());
}
else {
final char newQual = SAMUtils.phredToFastq(new byte[]{(byte) Integer.parseInt(CLIPPING_ACTION)}).charAt(0);
baseQualities = clip(baseQualities, clipPoint, newQual, !read.getReadNegativeStrandFlag());
}
}
}
if (RE_REVERSE && read.getReadNegativeStrandFlag()) {
readString = SequenceUtil.reverseComplement(readString);
baseQualities = StringUtil.reverseString(baseQualities);
}
if (basesToTrim > 0) {
readString = readString.substring(basesToTrim);
baseQualities = baseQualities.substring(basesToTrim);
}
// Perform quality trimming if desired, making sure to leave at least one base!
if (QUALITY != null) {
final byte[] quals = SAMUtils.fastqToPhred(baseQualities);
final int qualityTrimIndex = Math.max(1, TrimmingUtil.findQualityTrimPoint(quals, QUALITY));
if (qualityTrimIndex < quals.length) {
readString = readString.substring(0, qualityTrimIndex);
baseQualities = baseQualities.substring(0, qualityTrimIndex);
}
}
if (maxBasesToWrite != null && maxBasesToWrite < readString.length()) {
readString = readString.substring(0, maxBasesToWrite);
baseQualities = baseQualities.substring(0, maxBasesToWrite);
}
writer.write(new FastqRecord(seqHeader, readString, "", baseQualities));
}
/**
* Utility method to handle the changes required to the base/quality strings by the clipping
* parameters.
*
* @param src The string to clip
* @param point The 1-based position of the first clipped base in the read
* @param replacement If non-null, the character to replace in the clipped positions
* in the string (a quality score or 'N'). If null, just trim src
* @param posStrand Whether the read is on the positive strand
* @return String The clipped read or qualities
*/
private String clip(final String src, final int point, final Character replacement, final boolean posStrand) {
final int len = src.length();
String result = posStrand ? src.substring(0, point - 1) : src.substring(len - point + 1);
if (replacement != null) {
if (posStrand) {
for (int i = point; i <= len; i++) {
result += replacement;
}
} else {
for (int i = 0; i <= len - point; i++) {
result = replacement + result;
}
}
}
return result;
}
private void assertPairedMates(final SAMRecord record1, final SAMRecord record2) {
if (!(record1.getFirstOfPairFlag() && record2.getSecondOfPairFlag() ||
record2.getFirstOfPairFlag() && record1.getSecondOfPairFlag())) {
throw new PicardException("Illegal mate state: " + record1.getReadName());
}
}
/**
* Put any custom command-line validation in an override of this method.
* clp is initialized at this point and can be used to print usage and access argv.
* Any options set by command-line parser can be validated.
*
* @return null if command line is valid. If command line is invalid, returns an array of error
* messages to be written to the appropriate place.
*/
protected String[] customCommandLineValidation() {
if (INTERLEAVE && SECOND_END_FASTQ != null) {
return new String[]{
"Cannot set INTERLEAVE to true and pass in a SECOND_END_FASTQ"
};
}
if (UNPAIRED_FASTQ != null && SECOND_END_FASTQ == null) {
return new String[]{
"UNPAIRED_FASTQ may only be set when also emitting read1 and read2 fastqs (so SECOND_END_FASTQ must also be set)."
};
}
if ((CLIPPING_ATTRIBUTE != null && CLIPPING_ACTION == null) ||
(CLIPPING_ATTRIBUTE == null && CLIPPING_ACTION != null)) {
return new String[]{
"Both or neither of CLIPPING_ATTRIBUTE and CLIPPING_ACTION should be set."};
}
if (CLIPPING_ACTION != null) {
if (CLIPPING_ACTION.equals("N") || CLIPPING_ACTION.equals("X")) {
// Do nothing, this is fine
} else {
try {
Integer.parseInt(CLIPPING_ACTION);
} catch (NumberFormatException nfe) {
return new String[]{"CLIPPING ACTION must be one of: N, X, or an integer"};
}
}
}
if ((OUTPUT_PER_RG && OUTPUT_DIR == null) || ((!OUTPUT_PER_RG) && OUTPUT_DIR != null)) {
return new String[]{
"If OUTPUT_PER_RG is true, then OUTPUT_DIR should be set. " +
"If "};
}
if (OUTPUT_PER_RG) {
if (RG_TAG == null) {
return new String[]{"If OUTPUT_PER_RG is true, then RG_TAG should be set."};
} else if (! (RG_TAG.equalsIgnoreCase("PU") || RG_TAG.equalsIgnoreCase("ID")) ){
return new String[]{"RG_TAG must be: PU or ID"};
}
}
return null;
}
/**
* A collection of {@link htsjdk.samtools.fastq.FastqWriter}s for particular types of reads.
* <p/>
* Allows for lazy construction of the second-of-pair writer, since when we are in the "output per read group mode", we only wish to
* generate a second-of-pair fastq if we encounter a second-of-pair read.
*/
static final class FastqWriters {
private final FastqWriter firstOfPair, unpaired;
private final Lazy<FastqWriter> secondOfPair;
/** Constructor if the consumer wishes for the second-of-pair writer to be built on-the-fly. */
private FastqWriters(final FastqWriter firstOfPair, final Lazy<FastqWriter> secondOfPair, final FastqWriter unpaired) {
this.firstOfPair = firstOfPair;
this.unpaired = unpaired;
this.secondOfPair = secondOfPair;
}
/** Simple constructor; all writers are pre-initialized.. */
private FastqWriters(final FastqWriter firstOfPair, final FastqWriter secondOfPair, final FastqWriter unpaired) {
this(firstOfPair, new Lazy<FastqWriter>(new Lazy.LazyInitializer<FastqWriter>() {
@Override
public FastqWriter make() {
return secondOfPair;
}
}), unpaired);
}
public FastqWriter getFirstOfPair() {
return firstOfPair;
}
public FastqWriter getSecondOfPair() {
return secondOfPair.get();
}
public FastqWriter getUnpaired() {
return unpaired;
}
public void closeAll() {
final Set<FastqWriter> fastqWriters = new HashSet<FastqWriter>();
fastqWriters.add(firstOfPair);
fastqWriters.add(unpaired);
// Make sure this is a no-op if the second writer was never fetched.
if (secondOfPair.isInitialized()) fastqWriters.add(secondOfPair.get());
for (final FastqWriter fastqWriter : fastqWriters) {
fastqWriter.close();
}
}
}
}