X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bp_bin%2Fanalyze_bed;h=ea16d8ac4d7f782ce9ef655734aaddcf38e1f9f4;hb=2f0fd91b461033529a4a72e161bd133252a22eb6;hp=16c53d53e38a0c14a49e87f3f9aa469ac7addc3f;hpb=5aed4676ad1bf35abbade6215ac90ee591e6d8fe;p=biopieces.git diff --git a/bp_bin/analyze_bed b/bp_bin/analyze_bed index 16c53d5..ea16d8a 100755 --- a/bp_bin/analyze_bed +++ b/bp_bin/analyze_bed @@ -26,9 +26,10 @@ # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< +use warnings; use strict; use Maasha::Biopieces; -use Maasha::UCSC; +use Maasha::UCSC::BED; # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @@ -43,7 +44,7 @@ $out = Maasha::Biopieces::write_stream( $options->{ "stream_out" } ); while ( $record = Maasha::Biopieces::get_record( $in ) ) { - $record = Maasha::UCSC::bed_analyze( $record ) if $record->{ "REC_TYPE" } eq "BED"; + $record = Maasha::UCSC::BED::bed_analyze( $record ) if $record->{ "REC_TYPE" } eq "BED"; Maasha::Biopieces::put_record( $record, $out ); }