Is it possible to output bwa output directly into samtools view to convert into bam format without using intermediate files? I am running low on hard disk space and I am attempting to automate my script. I would like to convert my bwa output to bam, sort it, and index it. I know the sam-bam conversion can be piped into the sort command, but is it possible for the samtools view to take its input from STDIN?
Unconfigured Ad
Collapse
X
-
figured out on linux at least, if I give it the filename /dev/stdin that will satisfy it since the OS does the work, even though samtools does not appear to be expressly programmed to switch to stdin.
It appears to be working too, which is going to save me some headaches.
--edit
apparently I could also have done this with named pipesLast edited by Kotoro; 07-18-2011, 04:06 PM.
-
bwa + samtools have been developed with pipes in mind:Originally posted by Kotoro View PostIs it possible to output bwa output directly into samtools view to convert into bam format without using intermediate files? I am running low on hard disk space and I am attempting to automate my script. I would like to convert my bwa output to bam, sort it, and index it. I know the sam-bam conversion can be piped into the sort command, but is it possible for the samtools view to take its input from STDIN?
HTHCode:$ bwa aln [OPTIONS] [DB] [FASTQ] | bwa samse [OPTIONS] [DB] - [FASTQ] | samtools view -Su - | samtools sort - [PREFIX]
d
Comment
-
-
Almost, this should work (essentially it is a double process substitution).Originally posted by gavin.oliver View PostIs the same thing somehow possible for PE reads?
Code:$ bwa sampe [OPTIONS] [DB] <(bwa aln [OPTIONS] [DB] [FASTQ1]) <(bwa aln [OPTIONS] [DB] [FASTQ2]) [FASTQ1] [FASTQ2] | samtools view -Su - | samtools sort - [PREFIX]
Comment
-
Latest Articles
Collapse
-
by SEQadmin2
The immune system’s power comes from its genetic diversity, allowing myriad threats to be neutralized through first recognizing foreign antigens. That diversity is also what makes the immune system so difficult to study. Recent advances in sequencing technology and computational biology, however, are giving researchers new tools to understand immune responses and immune-related diseases in greater detail.
This convergence of genetics, immunology, and computation...-
Channel: Articles
09-01-2026, 05:41 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, Yesterday, 11:37 AM
|
0 responses
11 views
0 reactions
|
Last Post
by SEQadmin2
Yesterday, 11:37 AM
|
||
|
Started by SEQadmin2, 09-16-2026, 10:23 AM
|
0 responses
18 views
0 reactions
|
Last Post
by SEQadmin2
09-16-2026, 10:23 AM
|
||
|
Started by SEQadmin2, 09-09-2026, 12:14 PM
|
0 responses
37 views
0 reactions
|
Last Post
by SEQadmin2
09-09-2026, 12:14 PM
|
||
|
Started by SEQadmin2, 09-09-2026, 11:33 AM
|
0 responses
33 views
0 reactions
|
Last Post
by SEQadmin2
09-09-2026, 11:33 AM
|
Comment