Skip to content

Commit

Permalink
add some file cleanup from samtools testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Fields committed May 17, 2010
1 parent 2831245 commit c86c048
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion t/Assembly/Assembly.t
Expand Up @@ -37,6 +37,8 @@ BEGIN {

}

use Bio::Root::IO;

for my $test (keys %ASSEMBLY_TESTS) {
$ASSEMBLY_TESTS{$test}->{'test_sub'}->($ASSEMBLY_TESTS{$test}->{tests});
}
Expand Down Expand Up @@ -508,7 +510,10 @@ sub sam {
is(@all_seq_ids, 369);

}

This comment has been minimized.

Copy link
@cjfields

cjfields May 18, 2010

Member

Example in-line note

for (qw(test.bam.bai test.ref.fas.fai)) {
my $file = Bio::Root::IO->catfile('t', 'data', $_);
unlink($file) if -e $file;
}
}

#####
Expand Down

1 comment on commit c86c048

@cjfields
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Example commit comment.

Please sign in to comment.