Bio::Tools::Run
BEDTools
Toolbar
Summary
Bio::Tools::Run::BEDTools - Run wrapper for the BEDTools suite of programs *BETA*
Package variables
Privates (from "my" definitions)
$b = defined $self->add_bidirectional
$g = $_
($th, $tf) = $self->io->tempfile( -dir => $self->tempdir(), -suffix => '.bed' )
($outh, $outf) = $self->io->tempfile( -dir => $self->tempdir(), -suffix => $suffix )
$cmd = $self->command if $self->can('command')
%params = ( '-ann' => $ann, '-bam' => $bam, '-bed' => $bed, '-bgv' => $bgv, '-bg' => $bg, '-bgv1' => $bgv1, '-bgv2' => $bgv2, '-bedpe' => $bedpe, '-bedpe1' => $bedpe1, '-bedpe2' => $bedpe2, '-seq' => $seq, '-genome' => $genome )
$a = $_
$o = (my @o)= split(",",$self->operations)
$suffix = '.'.$format
$r = defined $self->add_to_right
$c = (my @c)= split(",",$self->columns)
$l = defined $self->add_to_left
$format = $self->_determine_format(\%params)
Included modules
Bio::SeqFeature::Collection
Bio::SeqFeature::Generic
Bio::SeqIO
Bio::Tools::GuessSeqFormat
Bio::Tools::Run::WrapperBase
Bio::Tools::Run::WrapperBase::CommandExts
File::Sort qw ( sort_file )
IPC::Run
Inherit
Bio::Tools::Run::WrapperBase
Synopsis
# use a BEDTools program
$bedtools_fac = Bio::Tools::Run::BEDTools->new( -command => 'subtract' );
$result_file = $bedtools_fac->run( -bed1 => 'genes.bed', -bed2 => 'mask.bed' );
# if IO::Uncompress::Gunzip is available...
$result_file = $bedtools_fac->run( -bed1 => 'genes.bed.gz', -bed2 => 'mask.bed.gz' );
# be more strict
$bedtools_fac->set_parameters( -strandedness => 1 );
# and even more...
$bedtools_fac->set_parameters( -minimum_overlap => 1e-6 );
# create a Bio::SeqFeature::Collection object
$features = $bedtools_fac->result( -want => 'Bio::SeqFeature::Collection' );
Description
This module provides a wrapper interface for Aaron R. Quinlan and Ira M. Hall's
utilities BEDTools that allow for (among other things):
* Intersecting two BED files in search of overlapping features.
* Merging overlapping features.
* Screening for paired-end (PE) overlaps between PE sequences and existing genomic features.
* Calculating the depth and breadth of sequence coverage across defined "windows" in a genome.
(see
http://code.google.com/p/bedtools/ for manuals and downloads).
Methods
Methods description
Title : new Usage : my $obj = new Bio::Tools::Run::BEDTools(); Function: Builds a new Bio::Tools::Run::BEDTools object Returns : an instance of Bio::Tools::Run::BEDTools Args : |
Title : run Usage : $result = $bedtools_fac->run(%params); Function: Run a BEDTools command. Returns : Command results (file, IO object or Bio object) Args : Dependent on filespec for command. See $bedtools_fac->filespec and BEDTools Manual. Also accepts -want => '(raw|format|<object_class>)' - see want(). Note : gzipped inputs are allowed if IO::Uncompress::Gunzip is available |
Title : want Usage : $bowtiefac->want( $class ) Function: make factory return $class, or 'raw' results in file or 'format' for result format All commands can return Bio::Root::IO commands returning: can return object: - BED or BEDPE - Bio::SeqFeature::Collection - sequence - Bio::SeqIO Returns : return wanted type Args : [optional] string indicating class or raw of wanted result |
Title : result Usage : $bedtoolsfac->result( [-want => $type|$format] ) Function: return result in wanted format Returns : results Args : [optional] hashref of wanted type Note : -want arg does not persist between result() call when specified in result(), for persistence, use want() |
Title : _determine_format( $has_run ) Usage : $bedtools-fac->_determine_format Function: determine the format of output for current options Returns : format of bowtie output Args : [optional] boolean to indicate result exists |
Title : _read_bed() Usage : $bedtools_fac->_read_bed Function: return a Bio::SeqFeature::Collection object from a BED file Returns : Bio::SeqFeature::Collection Args : |
Title : _read_bedpe() Usage : $bedtools_fac->_read_bedpe Function: return a Bio::SeqFeature::Collection object from a BEDPE file Returns : Bio::SeqFeature::Collection Args : |
Title : _validate_file_input Usage : $bedtools_fac->_validate_file_input( -type => $file ) Function: validate file type for file spec Returns : file type if valid type for file spec Args : hash of filespec => file_name |
Title : version Usage : $version = $bedtools_fac->version() Function: Returns the program version (if available) Returns : string representing location and version of the program |
Methods code
BEGIN { eval 'require IO::Uncompress::Gunzip; $HAVE_IO_UNCOMPRESS = 1'; } |
sub new
{ my ($class,@args) = @_;
unless (grep /command/, @args) {
push @args, '-command', $default_cmd;
}
my $self = $class->SUPER::new(@args);
foreach (keys %command_executables) {
$self->executables($_, $self->_find_executable($command_executables{$_}));
}
$self->want($self->_rearrange([qw(WANT)],@args));
$self->parameters_changed(1); return $self;} |
sub run
{ my $self = shift;
my ($ann, $bed, $bg, $bgv, $bgv1, $bgv2, $bam, $bedpe, $bedpe1, $bedpe2, $seq, $genome, $out);
if (!(@_ % 2)) {
my %args = @_;
if ((grep /^-\w+/, keys %args) == keys %args) {
($ann, $bed, $bg, $bgv, $bgv1, $bgv2, $bam, $bedpe, $bedpe1, $bedpe2, $seq, $genome, $out) =
$self->_rearrange([qw( ANN BED BG BGV BGV1 BGV2 BAM
BEDPE BEDPE1 BEDPE2
SEQ GENOME OUT )], @_);
} else {
$self->throw("Badly formed named args: ".join(' ',@_));
}
} else {
if (grep /^-\w+/, @_) {
$self->throw("Badly formed named args: ".join(' ',@_));
} else {
$self->throw("Require named args.");
}
}
$self->executable || $self->throw("No executable!");
my $cmd = $self->command if $self->can('command');
for ($cmd) {} |
sub _uncompress
{ my ($self, $file) = @_;
return if !defined $file;
return $file unless ($file =~ m/\.gz[^.]*$/);
return $file unless (-e $file && -r _);
unless ($HAVE_IO_UNCOMPRESS) {
croak( "IO::Uncompress::Gunzip not available, can't expand '$file'" );
}
my ($tfh, $tf) = $self->io->tempfile( -dir => $self->tempdir() );
my $z = IO::Uncompress::Gunzip->new($file);
while (my $block = $z->getline) { print $tfh $block }
close $tfh;
return $tf} |
sub want
{ my $self = shift;
return $self->{'_want'} = shift if @_;
return $self->{'_want'};} |
sub result
{ my ($self, @args) = @_;
my $want = $self->_rearrange([qw(WANT)],@args);
$want ||= $self->want;
my $cmd = $self->command if $self->can('command');
my $format = $self->{'_result'}->{'format'};
my $file_name = $self->{'_result'}->{'file_name'};
return $self->{'_result'}->{'format'} if (defined $want && $want eq 'format');
return $self->{'_result'}->{'file_name'} if (!$want || $want eq 'raw');
return $self->{'_result'}->{'file'} if ($want =~ m/^Bio::Root::IO/); # this will be undef if -out eq '-' for ($format) { # these are dissected more finely than seems resonable to allow easy extension m/bed/ && do { for ($want) { m/Bio::SeqFeature::Collection/ && do { unless (defined $self->{'_result'}->{'object'} && ref($self->{'_result'}->{'object'}) =~ m/^Bio::SeqFeature::Collection/) { $self->{'_result'}->{'object'} = $self->_read_bed; }
return $self->{'_result'}->{'object'};
};
$self->warn("Cannot make '$_' for $format.");
return;
}
last;
};
m/bedpe/ && do { for ($want) { m/Bio::SeqFeature::Collection/ && do { unless (defined $self->{'_result'}->{'object'} && ref($self->{'_result'}->{'object'}) =~ m/^Bio::SeqFeature::Collection/) { $self->{'_result'}->{'object'} = $self->_read_bedpe; }
return $self->{'_result'}->{'object'};
};
$self->warn("Cannot make '$_' for $format.");
return;
}
last;
};
m/bam/ && do { $self->warn("Cannot make '$_' for $format."); return;
};
m/^(?:fasta|raw)$/ && do { for ($want) { m/Bio::SeqIO/ && do { $file_name eq '-' && $self->throw("Cannot make a SeqIO object from STDOUT."); unless (defined $self->{'_result'}->{'object'} &&
ref($self->{'_result'}->{'object'}) =~ m/^Bio::SeqIO/) { $self->{'_result'}->{'object'} = Bio::SeqIO->new(-file => $file_name, -format => $format); }
return $self->{'_result'}->{'object'};
};
$self->warn("Cannot make '$_' for $format.");
return;
}
last;
};
m/tab/ && do { $self->warn("Cannot make '$_' for $format."); return;
};
m/igv/ && do { $self->warn("Cannot make '$_' for $format."); return;
};
m/html/ && do { $self->warn("Cannot make '$_' for $format."); return;
};
do {
$self->warn("Result format '$_' not recognised - have you called run() yet?");
}
}} |
sub _determine_format
{ my ($self, $params) = @_;
my $cmd = $self->command if $self->can('command');
my $format = $format_lookup{$cmd};
for ($cmd) {
m/^intersect$/ && do { return 'bed' if !defined $$params{'-bam'} || $self->write_bed; return 'bam';
};
m/^pair_to_bed$/ && do { return 'bedpe' if !defined $$params{'-bam'} || $self->write_bedpe; return 'bam';
};
m/^fasta_from_bed$/ && do { return $self->output_tab_format ? 'tab' : 'fasta'; }
}
return $format;} |
sub _read_bed
{ my ($self) = shift;
my @features;
if ($self->{'_result'}->{'file_name'} ne '-') {
my $in = $self->{'_result'}->{'file'};
while (my $feature = $in->_readline) {
chomp $feature;
push @features, _read_bed_line($feature);
}
} else {
for my $feature (split("\cJ", $self->stdout)) {
push @features, _read_bed_line($feature);
}
}
my $collection = Bio::SeqFeature::Collection->new;
$collection->add_features(\@features);
return $collection;} |
sub _read_bed_line
{ my $feature = shift;
my ($chr, $start, $end, $name, $score, $strand,
$thick_start, $thick_end, $item_RGB, $block_count, $block_size, $block_start) =
split("\cI",$feature);
$strand ||= '.';
return Bio::SeqFeature::Generic->new( -seq_id => $chr,
-primary => $name,
-start => $start,
-end => $end,
-strand => $strand_translate{$strand},
-score => $score,
-tag => { thick_start => $thick_start,
thick_end => $thick_end,
item_RGB => $item_RGB,
block_count => $block_count,
block_size => $block_size,
block_start => $block_size }
);} |
sub _read_bedpe
{ my ($self) = shift;
my @features;
if ($self->{'_result'}->{'file_name'} ne '-') {
my $in = $self->{'_result'}->{'file'};
while (my $feature = $in->_readline) {
chomp $feature;
push @features, _read_bedpe_line($feature);
}
} else {
for my $feature (split("\cJ", $self->stdout)) {
push @features, _read_bedpe_line($feature);
}
}
my $collection = Bio::SeqFeature::Collection->new;
$collection->add_features(\@features);
return $collection;} |
sub _read_bedpe_line
{ my $feature = shift;
my ($chr1, $start1, $end1, $chr2, $start2, $end2, $name, $score, $strand1, $strand2, @add) =
split("\cI",$feature);
$strand1 ||= '.';
$strand2 ||= '.';
return Bio::SeqFeature::FeaturePair->new( -primary => $name,
-seq_id => $chr1,
-start => $start1,
-end => $end1,
-strand => $strand_translate{$strand1},
-hprimary_tag => $name,
-hseqname => $chr2,
-hstart => $start2,
-hend => $end2,
-hstrand => $strand_translate{$strand2},
-score => $score
);} |
sub _validate_file_input
{ my ($self, @args) = @_;
my (%args);
if (grep (/^-/, @args) && (@args > 1)) { $self->throw("Wrong number of args - requires one named arg") if (@args > 2);
s/^-// for @args;
%args = @args;
} else {
$self->throw("Must provide named filespec");
}
for (keys %args) {
m/bam/ && do { return 'bam'; };
do {
return unless ( -e $args{$_} && -r _ );
my $guesser = Bio::Tools::GuessSeqFormat->new(-file=>$args{$_});
return $guesser->guess if grep {$guesser->guess =~ m/$_/} @{$accepted_types{$_}}; }
}
return;} |
sub version
{ my ($self) = @_;
my $cmd = $self->command if $self->can('command');
defined $cmd or $self->throw("No command defined - cannot determine program executable");
my $dummy = '-version';
$dummy = '-examples' if $cmd =~ /graph_union/;
my ($in, $out, $err);
my $dum;
$in =\$ dum;
$out =\$ self->{'stdout'};
$err =\$ self->{'stderr'};
my $exe = $self->executable;
my @ipc_args = ( $exe, $dummy );
eval {
IPC::Run::run(\@ipc_args, $in, $out, $err) or
die ("There was a problem running $exe : $!");
};
my @details = split("\n",$self->stderr);
(my $version) = grep /^Program: .*$/, @details;
$version =~ s/^Program: //;
return $version;} |
sub filespec
{ shift->available_parameters('filespec') };
1;} |
General documentation
Most executables from BEDTools v>=2.10.1 can read GFF and VCF formats
in addition to BED format. This requires the use of a new input file param,
shown in the following documentation, '-bgv', in place of '-bed' for the
executables that can do this.
This behaviour breaks existing scripts.
BEDTools is a suite of 17 commandline executable. This module attempts to
provide and options comprehensively. You can browse the choices like so:
$bedtools_fac = Bio::Tools::Run::BEDTools->new;
# all bowtie commands
@all_commands = $bedtools_fac->available_parameters('commands');
@all_commands = $bedtools_fac->available_commands; # alias
# just for default command ('bam_to_bed')
@btb_params = $bedtools_fac->available_parameters('params');
@btb_switches = $bedtools_fac->available_parameters('switches');
@btb_all_options = $bedtools_fac->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.
As a number of options are mutually exclusive, and the interpretation of
intent is based on last-pass option reaching bowtie with potentially unpredicted
results. This module will prevent inconsistent switches and parameters
from being passed.
See
http://code.google.com/p/bedtools/ for details of BEDTools options.
When a command requires filenames, these are provided to the run method, not
the constructor (new()). To see the set of files required by a command, use
available_parameters('filespec') or the alias filespec():
$bedtools_fac = Bio::Tools::Run::BEDTools->new( -command => 'pair_to_bed' );
@filespec = $bedtools_fac->filespec;
This example returns the following array:
#bedpe
#bam
bed
#out
This indicates that the bed (BEDTools BED format) file MUST be
specified, and that the out, bedpe (BEDTools BEDPE format) and bam
(SAM binary format) file MAY be specified (Note that in this case you
MUST provide ONE of bedpe OR bam, the module at this stage does not allow
this information to be queried). Use these in the run call like so:
$bedtools_fac->run( -bedpe => 'paired.bedpe',
-bgv => 'genes.bed',
-out => 'overlap' );
The object will store the programs STDERR output for you in the stderr()
attribute:
handle_bed_warning($bedtools_fac) if ($bedtools_fac->stderr =~ /Usage:/);
For the commands 'fasta_from_bed' and 'mask_fasta_from_bed' STDOUT will also
be captured in the stdout() attribute by default and all other commands
can be forced to capture program output in STDOUT by setting the -out
filespec parameter to '-'.
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 - Dan Kortschak | Top |
Email dan.kortschak adelaide.edu.au
Additional contributors names and emails here
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _