Bio::Tools::Run
BWA
Toolbar
Summary
Bio::Tools::Run::BWA - Run wrapper for the BWA short-read assembler *BETA*
Package variables
No package variables defined.
Included modules
Bio::Root::Root
Bio::Tools::GuessSeqFormat
Cwd
File::Basename qw ( fileparse )
File::Copy
IPC::Run
Inherit
Synopsis
# create an assembly
# run BWA commands separately
Description
This module provides a wrapper interface for Heng Li's
reference-directed short read assembly suite bwa (see
http://bio-bwa.sourceforge.net/bwa.shtml for manuals and
downloads).
Manipulating the alignments requires samtools
(
http://sourceforge.net/projects/samtools/) and Lincoln Stein's package
Bio-SamTools (
http://search.cpan.org/perldoc?Bio::DB::Sam).
There are two modes of action.
* Easy assembly
The first is a simple pipeline through the maq commands, taking
your read data in and squirting out an assembly object of type
Bio::Assembly::IO::maq. The pipeline is based on the one performed
by maq.pl easyrun:
Action maq commands
------ ------------
data conversion to fasta2bfa, fastq2bfq
maq binary formats
map sequence reads map
to reference seq
assemble, creating assemble
consensus
convert map & cns mapview, cns2fq
files to plaintext
(for B:A:IO:maq)
Command-line options can be directed to the map, assemble, and
cns2fq steps. See
/OPTIONS below.
* BWA command mode
The second mode is direct access to bwa commands. To run a bwa
command, construct a run factory, specifying the desired command using
the -command argument in the factory constructor, along with
options specific to that command (see
/OPTIONS):
$bwafac = Bio::Tools::Run::BWA->new( -command => 'fasta2bfa' );
To execute, use the run_bwa methods. Input and output files are
specified in the arguments of run_bwa (see
/FILES):
$bwafac->run_bwa( -fas => "myref.fas", -bfa => "myref.bfa" );
Methods
Methods description
Title : new Usage : my $obj = new Bio::Tools::Run::BWA(); Function: Builds a new Bio::Tools::Run::BWA object Returns : an instance of Bio::Tools::Run::BWA Args : |
Title : run Usage : $assembly = $bwafac->run( @args ); Function: Run the bwa assembly pipeline. Returns : Assembly results (file, IO object or Assembly object) Args : - fastq file containing single-end reads - fasta file containing the reference sequence - [optional] fastq file containing paired-end reads |
Title : run_bwa Usage : $obj->run_bwa( @file_args ) Function: Run a bwa command as specified during object contruction Returns : Args : a specification of the files to operate on: |
Title : stdout Usage : $fac->stdout() Function: store the output from STDOUT for the run, if no file specified in run_maq() Example : Returns : scalar string Args : on set, new value (a scalar or undef, optional) |
Title : stderr Usage : $fac->stderr() Function: store the output from STDERR for the run, if no file is specified in run_maq() Example : Returns : scalar string Args : on set, new value (a scalar or undef, optional) |
Convert input fastq and fasta to maq format. |
Title : _collate_subcmd_args Usage : $args_hash = $self->_collate_subcmd_args Function: collate parameters and switches into command-specific arg lists for passing to new() Returns : hash of named argument lists Args : [optional] composite cmd prefix (scalar string) [default is 'run'] |
Title : _run Usage : $factory->_run() Function: Run a bwa assembly pipeline Returns : a text-formatted sam alignment Args : - single end read file in maq bfq format - reference seq file in maq bfa format - [optional] paired end read file in maq bfq format |
Title : available_parameters Usage : @cmds = $fac->available_commands('commands'); Function: Use to browse available commands, params, or switches Returns : array of scalar strings Args : 'commands' : all bwa commands 'params' : parameters for this object's command 'switches' : boolean switches for this object's command 'filespec' : the filename spec for this object's command 4Geeks : Overrides Bio::ParameterBaseI via Bio::Tools::Run::AssemblerBase |
Methods code
BEGIN { eval "require IO::Uncompress::Gunzip;\$ HAVE_IO_UNCOMPRESS = 1";
eval "require Bio::Tools::Run::Samtools;\$ HAVE_SAMTOOLS = 1";} |
sub new
{ my ($class,@args) = @_;
my $self = $class->SUPER::new(@args);
$self->parameters_changed(1);
$self->_register_program_commands(\@ program_commands,\% command_prefixes );
unless (grep /command/, @args) {
push @args, '-command', 'run';
}
$self->_set_program_options(\@args,\@ program_params,\@ program_switches,\%
param_translation, $qual_param, $use_dash, $join);
$self->program_name($program_name) if not defined $self->program_name();
$self->parameters_changed(1); $self->_assembly_format($asm_format);
return $self;} |
sub run
{ my ($self, $rd1_file, $ref_file, $rd2_file) = @_;
$self->_check_executable();
unless ($HAVE_SAMTOOLS) {
cluck( "Bio::Tools::Run::Samtools is not available. A .sam output alignment will be created, but must be converted to binary SAM (.bam) before it can be passed to Bio::Assembly::IO, as follows:\n\t\$ samtools view -Sb out.sam > out.bam" );
}
$rd1_file or $self->throw("Fastq reads file required at arg 1");
$ref_file or $self->throw("Fasta refseq file required at arg 2");
for ($rd1_file, $ref_file, $rd2_file) {
next unless $_;
if (/\.gz[^.]*$/) {
unless ($HAVE_IO_UNCOMPRESS) {
croak( "IO::Uncompress::Gunzip not available, can't expand '$_'" );
}
my ($tfh, $tf) = $self->io->tempfile;
my $z = IO::Uncompress::Gunzip->new($_);
while (<$z>) { print $tfh $_ }
close $tfh;
$_ = $tf;
}
}
my $guesser = Bio::Tools::GuessSeqFormat->new(-file=>$rd1_file);
$guesser->guess eq 'fastq' or $self->throw("Reads file doesn't look like fastq at arg 1");
$guesser = Bio::Tools::GuessSeqFormat->new(-file=>$ref_file);
$guesser->guess eq 'fasta' or $self->throw("Refseq file doesn't look like fasta at arg 2");
if ($rd2_file) {
$guesser = Bio::Tools::GuessSeqFormat->new(-file=>$rd2_file);
$guesser->guess eq 'fastq' or $self->throw("Reads file doesn't look like fastq at arg 3");
}
my ($sam_file) = $self->_run($rd1_file, $ref_file, $rd2_file);
if ($HAVE_SAMTOOLS) {
my ($nm,$dr,$suf) = fileparse($sam_file, ".sam");
my $pwd = getcwd;
chdir($dr);
my $samt = Bio::Tools::Run::Samtools->new( -command => 'view',
-sam_input => 1,
-bam_output => 1,
-refseq => $ref_file);
my $bam_file = $nm.'.bam';
$samt->run( -bam => $nm.$suf, -out => $bam_file ) or croak( "Problem converting .sam file");
$samt = Bio::Tools::Run::Samtools->new( -command => 'sort' );
$samt->run( -bam => $bam_file, -pfx => $nm.'.srt' ) or croak( "Problem sorting .bam file");
move( $nm.'.srt.bam', $bam_file );
$samt = Bio::Tools::Run::Samtools->new( -command => 'index' );
$samt->run( -bam => $bam_file );
$bam_file = File::Spec->catfile($dr, $bam_file);
$sam_file = $bam_file;
chdir($pwd);
}
my $asm = $self->_export_results($sam_file, -refdb => $ref_file, -keep_asm => 1);
return $asm; } |
sub run_bwa
{ my ($self, @args) = @_;
my $cmd = $self->command if $self->can('command');
$self->throw("No maq command specified for the object") unless $cmd;
my $filespec = $command_files{$cmd};
$self->throw("No command-line file specification is defined for command '$cmd'; check Bio::Tools::Run::Maq::Config") unless $filespec;
$self->throw("Named args are required") unless !(@args % 2);
s/^-// for @args;
my %args = @args;
my @req = map {
my $s = $_;
$s =~ s/^[012]?[<>]//;
$s =~ s/[^a-zA-Z0-9_]//g;
$s
} grep !/[#]/, @$filespec;
!defined($args{$_}) && $self->throw("Required filearg '$_' not specified") for @req;
my ($in, $out, $err);
for (@$filespec) {
m/^1?>(.*)/ && do { defined($args{$1}) && ( open($out,">", $args{$1}) or $self->throw("Open for write error : $!")); next;
};
m/^2>#?(.*)/ && do { defined($args{$1}) && (open($err, ">", $args{$1}) or $self->throw("Open for write error : $!")); next;
};
m/^<#?(.*)/ && do { defined($args{$1}) && (open($in, "<", $args{$1}) or $self->throw("Open for read error : $!")); next;
}
}
my $dum;
$in || ($in =\$ dum);
$out || ($out =\$ self->{'stdout'});
$err || ($err =\$ self->{'stderr'});
my $exe = $self->executable;
my $options = $self->_translate_params();
my @specs = map {
my $s = $_;
$s =~ s/[^a-zA-Z0-9_]//g;
$s
} grep !/[<>]/, @$filespec;
my @files = @args{@specs};
my $l = $#files;
for (0..$l) {
splice(@files, $_, 1, @{$files[$_]}) if (ref($files[$_]) eq 'ARRAY');
}
@files = map { defined $_ ? $_ : () } @files; my @ipc_args = ( $exe, @$options, @files );
eval {
IPC::Run::run(\@ipc_args, $in, $out, $err) or
die ("There was a problem running $exe : $!");
};
if ($@) {
$self->throw("$exe call crashed: $@");
}
return @args;} |
sub stdout
{ my $self = shift;
return $self->{'stdout'} = shift if @_;
return $self->{'stdout'};} |
sub stderr
{ my $self = shift;
return $self->{'stderr'} = shift if @_;
return $self->{'stderr'};} |
sub _check_sequence_input
{ return 1; } |
sub _check_optional_quality_input
{ return 1; } |
sub _prepare_input_sequences
{ shift->throw_not_implemented; } |
sub _collate_subcmd_args
{ my $self = shift;
my $cmd = shift;
my %ret;
$cmd ||= 'run';
my @subcmds = @{$composite_commands{$cmd}};
my %subcmds;
my $cur_options = $self->{'_options'};
foreach my $subcmd (@subcmds) {
my @params = grep /^${subcmd}_/, @{$$cur_options{'_params'}};
my @switches = grep /^${subcmd}_/, @{$$cur_options{'_switches'}};
$ret{$subcmd} = [];
foreach my $opt (@params, @switches) {
my $subopt = $opt;
$subopt =~ s/^${subcmd}_//;
push(@{$ret{$subcmd}}, '-'.$subopt => $self->$opt) if defined $self->$opt;
}
}
return\% ret;} |
sub _run
{ my ($self, $rd1_file, $ref_file, $rd2_file) = @_;
my ($cmd, $filespec, @ipc_args);
my $exe = $self->executable;
my $paired = $rd1_file && $rd2_file;
my $tdir = $self->tempdir();
my ($saih, $saif) = $self->io->tempfile(-template => 'saiXXXX', -dir=>$tdir);
my ($sai2h, $sai2f) = $self->io->tempfile(-template => 'saiXXXX', -dir=>$tdir)
if $paired;
my ($samh, $samf) = $self->io->tempfile(-template => 'saiXXXX', -dir=>$tdir);
$_->close for ($saih, $samh);
$sai2h->close if $paired;
my $subcmd_args = $self->_collate_subcmd_args();
my $bwa = Bio::Tools::Run::BWA->new(
-command => 'index',
@{$subcmd_args->{idx}}
);
$bwa->run_bwa( -fas => $ref_file );
$bwa = Bio::Tools::Run::BWA->new(
-command => 'aln',
@{$subcmd_args->{aln}}
);
$bwa->run_bwa( -fas => $ref_file, -faq => $rd1_file, -sai => $saif );
$bwa->run_bwa( -fas => $ref_file, -faq => $rd2_file, -sai => $sai2f )
if $paired;
$bwa = Bio::Tools::Run::BWA->new(
-command => ($paired ? 'sampe' : 'samse'),
@{$subcmd_args->{ ($paired ? 'smp' : 'sms' ) }}
);
if ($paired) {
$bwa->run_bwa( -fas => $ref_file, -sai1 => $saif, -faq1 => $rd1_file,
-sai2 => $sai2f, -faq2 => $rd2_file, -sam => $samf );
}
else {
$bwa->run_bwa( -fas => $ref_file, -sai => $saif, -faq => $rd1_file,
-sam => $samf );
}
return $samf; } |
sub available_parameters
{ my $self = shift;
my $subset = shift;
for ($subset) { !defined && do { return $self->SUPER::available_parameters($subset);
};
m/^c/i && do { return grep !/^run$/, @program_commands; };
m/^f/i && do { # get file spec return @{$command_files{$self->command}}; };
do { return $self->SUPER::available_parameters($subset);
};
}} |
sub filespec
{ shift->available_parameters('filespec') };
1;} |
General documentation
bwa is complex, with many subprograms (commands) and command-line
options and file specs for each. This module attempts to provide
commands and options comprehensively. You can browse the choices like so:
$bwafac = Bio::Tools::Run::BWA->new( -command => 'aln' );
# all maq commands
@all_commands = $bwafac->available_parameters('commands');
@all_commands = $bwafac->available_commands; # alias
# just for aln
@aln_params = $bwafac->available_parameters('params');
@aln_switches = $bwafac->available_parameters('switches');
@aln_all_options = $bwafac->available_parameters();
Reasonably mnemonic names have been assigned to the single-letter
command line options. These are the names returned by
available_parameters, and can be used in the factory constructor
like typical BioPerl named parameters.
See
http://bio-bwa.sourceforge.net/bwa.shtml for the gory details.
When a command requires filenames, these are provided to the run_bwa method, not
the constructor (new()). To see the set of files required by a command, use
available_parameters('filespec') or the alias filespec():
$bwafac = Bio::Tools::Run::BWA->new( -command => 'aln' );
@filespec = $bwafac->filespec;
This example returns the following array:
fas
faq
>sai
This indicates that the FASTA database (faq) and the FASTQ reads (faq)
MUST be specified, and the STDOUT of this program (SA coordinates) MAY be
slurped into a file specified in the run_bwa argument list:
$bwafac->run_bwa( -fas => 'my.db.fas', -faq => 'reads.faq',
-sai => 'out.sai' );
If files are not specified per the filespec, text sent to STDOUT and
STDERR is saved and is accessible with $bwafac-stdout()> and
$bwafac-stderr()>.
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
Please direct usage questions or support issues to the mailing list:
bioperl-l@bioperl.orgrather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
| AUTHOR - Mark A. Jensen | Top |
Email maj -at- fortinbras -dot- us
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _
| Bio::Tools::Run::AssemblerBase overrides | Top |