Skip to content

Commit

Permalink
Remove some print commands
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Mar 4, 2020
1 parent b38dd21 commit e3689cc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/perl5/Bio/JBrowse/Cmd/IndexNames.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use Storable ();
use File::Path ();
use File::Temp ();
use List::Util ();
use Data::Dumper;
use Encode qw(decode encode);

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

0 comments on commit e3689cc

Please sign in to comment.