Skip to content

Commit e3689cc

Browse files
committed
Remove some print commands
1 parent b38dd21 commit e3689cc

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/perl5/Bio/JBrowse/Cmd/IndexNames.pm

-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ use Storable ();
1818
use File::Path ();
1919
use File::Temp ();
2020
use List::Util ();
21-
use Data::Dumper;
2221
use Encode qw(decode encode);
2322

2423
use GenomeDB ();
@@ -80,7 +79,6 @@ sub run {
8079
unless( @$refSeqs ) {
8180
die "No reference sequences defined in configuration, nothing to do.\n";
8281
}
83-
print Dumper($gdb->trackList);
8482
my @tracks = grep $self->track_is_included( $_->{label} ),
8583
@{ $gdb->trackList || [] };
8684
unless( @tracks ) {
@@ -367,7 +365,6 @@ sub find_names_files {
367365
# read either names.txt or names.json files
368366
my $name_records_iterator;
369367
my $names_txt = File::Spec->catfile( $dir, 'names.txt' );
370-
print "$names_txt\n";
371368
if( -e decode('UTF-8',$names_txt) ) {
372369
push @files, $self->make_file_record( $track, $names_txt );
373370
}

0 commit comments

Comments
 (0)